-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_research_repos.csv
More file actions
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
1549 lines (1549 loc) · 225 KB
/
Copy pathall_research_repos.csv
File metadata and controls
1549 lines (1549 loc) · 225 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
html_url;howfairis_repository;howfairis_license;howfairis_registry;howfairis_citation;howfairis_checklist;fairscore;organisation;dlr_soft_class;project;installation_instruction;project_information;usage_guide;test_folder;requirements_explicit;continuous_integration;ci_tool;add_lint_rule;add_test_rule;language;type;research_group;comment_percentage;comment_at_start
https://github.com/Open-Systems-Pharmacology/Suite;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Rich Text Format;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/PK-Sim;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;TRUE;TRUE;TRUE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/MoBi;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;2;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Rich Text Format;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.BDDHelper;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.Utility;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.Serializer;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.DataBinding.DevExpress;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.TeXReporting;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES.282;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/build-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Ruby;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.Core;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/InstallationValidator;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;TRUE;TRUE;FALSE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Glucose-Insulin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Reporting-Engine;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Matlab-Toolbox-Core;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Pregnancy-Models;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Exemplary-Protein-Models;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clarithromycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Alfentanil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Midazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clarithromycin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clarithromycin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Hormonal-Contraceptive-Agents-Datasets;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSPSuite.SimModel.Solver.CVODES;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/QualificationRunner;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Theophylline-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Theophylline-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Theophylline-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Triazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Alprazolam-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/IFN-alpha;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/markdown-joiner;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Qualification-text-modules;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Skin-permeation-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP3A4;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Repaglinide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Pioglitazone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Itraconazole-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clarithromycin-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Amikacin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Vancomycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Pregabalin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Sufentanil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Montelukast-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Paclitaxel-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_GFR_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP3A4_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Pediatric_Qualification_Package_CYP2C8_Ontogeny;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Dapagliflozin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Raltegravir-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Atazanavir-Raltegravir-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Atazanavir-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Mefenamic_acid-Dapagliflozin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Oxycodone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/rClr;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;1;;TRUE;TRUE;TRUE;TRUE;;;;;;C#;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Qualification-DDI-UGT;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Mefenamic-acid-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Idarucizumab-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Dabigatran-Reversal-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clarithromycin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Nicotine-Cotinine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Efavirenz-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Efavirenz-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Efavirenz-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSP-Qualification-Reports;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/OSP-PBPK-Model-Library;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Verapamil-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Verapamil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Metformin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Metformin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Buprenorphine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Amoxicillin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fentanyl-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Lung-absorption-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Trimethoprim-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Trimethoprim-Metformin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Trimethoprim-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Trimethoprim-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Trimethoprim-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Levonorgestrel;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Verapamil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Furosemide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Probenecid-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Probenecid-Furosemide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Probenecid-Rifampicin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Verapamil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Mexiletine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Moclobemide-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Omeprazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/S-Mephenytoin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Tizanidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Metoprolol-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Mexiletine-Caffeine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Mexiletine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ethinylestradiol-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Mexiletine-Tizanidine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Omeprazole-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Moclobemide-Omeprazole-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-S-mephenytoin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP1A2;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Qualification-DDI-CYP2C19;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Quetiapine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Aripiprazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Bupropion-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluvoxamine-Voriconazole-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Carbamazepine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Carbamazepine-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Carbamazepine-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Carbamazepine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Carbamazepine-Efavirenz-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cabozantinib-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Finerenone-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Alfentanil-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Amikacin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Raltegravir-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Montelukast-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Sufentanil-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Vancomycin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluconazole-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Fluconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Propofol-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Gemfibrozil-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Probenecid-Rosuvastatin-DDI;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rosuvastatin-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Olanzapine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Lactation-PBPK-model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Dextromethorphan-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Cimetidine-Carbamazepine-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;1;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Carbamazepine-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clopidogrel-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clopidogrel-Bupropion-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clopidogrel-Montelukast-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clopidogrel-Pioglitazone-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Clopidogrel-Repaglinide-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Omeprazole-Clopidogrel-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Clopidogrel-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Creatinine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Creatinine-drug-biomaker-interactions;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/N1-Methylnicotinamide-NMN-drug-biomaker-interactions;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Sildenafil-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Felodipine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Voriconazole-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Birds-PBK-Model;TRUE;TRUE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Erythromycin-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Digoxin-Pediatrics;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Warfarin-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ketoconazole-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ketoconazole-Midazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alfentanil-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ketoconazole-Digoxin-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ketoconazole-Alprazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Ketoconazole-Triazolam-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Quinidine-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Quinidine-DDGI-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Tacrolimus-Model;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Itraconazole-Tacrolimus-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Voriconazole-Tacrolimus-DDGI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/Open-Systems-Pharmacology/Rifampicin-Tacrolimus-DDI;TRUE;FALSE;FALSE;FALSE;FALSE;;startup;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;open_systems_pharmacology;;
https://github.com/aeye-lab/etra-fairness;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;aeya;;
https://github.com/aeye-lab/sp-eyegan;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;aeya;;
https://github.com/potassco/clingo-rs;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Rust;org;potassco;;
https://github.com/potassco/anthem;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Rust;org;potassco;;
https://github.com/potassco/clingo-vs-telingo-planning;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;org;potassco;;
https://github.com/potassco/clingo-cmake-example;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;potassco;;
https://github.com/potassco/flatzinc;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;
https://github.com/potassco/foliage;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;
https://github.com/potassco/fzn2lp;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;
https://github.com/potassco/clingo-sys;TRUE;TRUE;TRUE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;
https://github.com/potassco/clingo-server;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;org;potassco;;
https://github.com/krr-up/notebook;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;krr;;
https://github.com/krr-up/action_juggling_robot;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;krr;;
https://github.com/discourse-lab/dimlex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XSLT;org;discourse-lab;;
https://github.com/discourse-lab/GraPat;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;discourse-lab;;
https://github.com/discourse-lab/DisCoDict;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;
https://github.com/discourse-lab/Connective-Lex.info;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;discourse-lab;;
https://github.com/discourse-lab/en_dimlex;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;
https://github.com/discourse-lab/arg-microtexts-part2;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;
https://github.com/discourse-lab/turkish_connective_lexicon;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;
https://github.com/discourse-lab/naijalex;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;discourse-lab;;
https://github.com/cslm-lab/cognitive_skills;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;org;cslm-lab;;
https://github.com/cslm-lab/reliability_project;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;cslm-lab;;
https://github.com/UP-RS-ESP/DEM-KZP;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;org;rs-esp;;
https://github.com/UP-RS-ESP/DEM_fourier_noise;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;org;rs-esp;;
https://github.com/UP-RS-ESP/mfdrouting;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;TRUE;FALSE;;;;;;C;org;rs-esp;;
https://github.com/UP-RS-ESP/FacetFlowNetwork;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;rs-esp;;
https://github.com/UP-RS-ESP/LidarPC-KDTree;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;rs-esp;;
https://github.com/UP-RS-ESP/MoraineAge_GaussianMixture;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;rs-esp;;
https://github.com/UP-RS-ESP/msc-rsiv;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Ruby;org;rs-esp;;
https://github.com/UP-RS-ESP/ICESat-2_SVDA;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;rs-esp;;
https://github.com/UP-RS-ESP/Ames-Stereo-Pipeline-SPOT;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;;;;FALSE;;;;;;Shell;org;rs-esp;;
https://github.com/hpi-sam/GNN-SpaceTimeGraphs;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/MachineLearningControl;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/dps.training_shared_files;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Dart;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/RL_4_Feedback_Control;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/robust-marl4sas;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/digital-fuesim-manv;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/Spatio-Temporal-Graphs;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/MARL-TransferLearning;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/sct-validation-framework;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;system_analysis_and_modeling_group;;
https://github.com/hpi-sam/digital-fuesim-manv-public-test-scenarios;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;system_analysis_and_modeling_group;;
https://github.com/bptlab/chimera;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/processeditor;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/JUserManagement;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/gryphon;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;2;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;org;business_process_technology;;
https://github.com/bptlab/Unicorn;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/argos-backend;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/scylla;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/scylla-ui;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;business_process_technology;;
https://github.com/bptlab/chor-js;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/chor-js-demo;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/caz;TRUE;FALSE;TRUE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/cepta;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/correlation-analysis;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/subscription-point-visualizer;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/fcm2cpn;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;business_process_technology;;
https://github.com/bptlab/blockchain-deferred-choice;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/ark_automate;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/bpmn-js-properties-panel;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;;org;business_process_technology;;
https://github.com/bptlab/fCM-query-generator;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Vue;org;business_process_technology;;
https://github.com/bptlab/rpa-dmn-operation;TRUE;TRUE;FALSE;TRUE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C#;org;business_process_technology;;
https://github.com/bptlab/fCM-design-support;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;business_process_technology;;
https://github.com/bptlab/holistic-process-platform;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Vue;org;business_process_technology;;
https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;business_process_technology;;
https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;business_process_technology;;
https://github.com/bptlab/model-driven-RPA;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;org;business_process_technology;;
https://github.com/bptlab/MdRPA_Library;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;RobotFramework;org;business_process_technology;;
https://github.com/hpi-swa-lab/Nemo;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/GazeTracker;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;org;software_architecture_group;;
https://github.com/hpi-swa-lab/home-desktop-system;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;StringTemplate;org;software_architecture_group;;
https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/tools-interactive-simulations;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/Rack;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/BP2019RH1;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;org;software_architecture_group;;
https://github.com/hpi-swa-lab/squeak-inbox-talk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/squeak-spelling-services;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/squeak-tracedebugger;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/sb-terminal;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/ts-edit-action-detector;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Kotlin;org;software_architecture_group;;
https://github.com/hpi-swa-lab/pivr;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;org;software_architecture_group;;
https://github.com/hpi-swa-lab/native-image-visualizations;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;org;software_architecture_group;;
https://github.com/hpi-swa-lab/godot-pronto;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;GDScript;org;software_architecture_group;;
https://github.com/SemanticMultimedia/JungGraphMeasures;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;semantic_multimedia_research_group;;
https://github.com/SemanticMultimedia/COAL;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;semantic_multimedia_research_group;;
https://github.com/pik-copan/pyunicorn;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;Jupyter Notebook;org;copan;;
https://github.com/pik-copan/MayaSim;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;org;copan;;
https://github.com/pik-copan/pycascades;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;copan;;
https://github.com/pik-copan/pydrf;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;copan;;
https://github.com/pik-piam/mrfable;TRUE;TRUE;TRUE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;org;pik-piam;;
https://github.com/pik-piam/modelstats;TRUE;FALSE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;FALSE;TRUE;;;;;;HTML;org;pik-piam;;
https://github.com/remindmodel/remind;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;GAMS;org;remind;;
https://github.com/pik-gane/vodle;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;pik-gane;;
https://github.com/pik-gane/pymdptoolbox-satisfia;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;pik-gane;;
https://github.com/pik-gane/avoiding-side-effects-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;;
https://github.com/pik-gane/train-procgen-pytorch-satisfia;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;pik-gane;;
https://github.com/pik-gane/RL4LMs_RLCHF;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;;
https://github.com/pik-gane/webppl-agents-satisfia;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;pik-gane;;
https://github.com/pik-gane/alpaca_eval-collective;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;pik-gane;;
https://github.com/pik-gane/Minigrid-satisfia;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;FALSE;TRUE;;;;;;;org;pik-gane;;
https://github.com/GFZ/eGSIM;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;geosciences_gfz;;
https://github.com/GFZ/grunt-css-url-rewrite;TRUE;FALSE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;geosciences_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/REM_optimized_routing;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;QML;org;center_for_early_warning_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/REM_RRVS;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;center_for_early_warning_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/REM_DEA;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;org;center_for_early_warning_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/Bottom-up-Exposure-Modelling;TRUE;FALSE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/EMCA-Exposure;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;center_for_early_warning_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/assetmaster;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;;
https://github.com/GFZ-Centre-for-Early-Warning/modelprop;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;center_for_early_warning_gfz;;
https://github.com/fastscape-lem/fastscape-demo;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;
https://github.com/fastscape-lem/fastscapelib-fortran;TRUE;TRUE;FALSE;TRUE;FALSE;;helmholz_center-gfz_potsdam;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Fortran;org;fastscape_lem;;
https://github.com/fastscape-lem/orographic-precipitation;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;
https://github.com/fastscape-lem/s2s-future-dragonstone;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;
https://github.com/fastscape-lem/workshop-gfz-2021-01;TRUE;TRUE;FALSE;FALSE;FALSE;;helmholz_center-gfz_potsdam;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;org;fastscape_lem;;
https://github.com/telota/rasmify;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;PHP;org;telota;;
https://github.com/telota/rasmify.js;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;org;telota;;
https://github.com/telota/exist;TRUE;TRUE;TRUE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Java;org;telota;;
https://github.com/telota/exist-documentation;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XQuery;org;telota;;
https://github.com/telota/bts;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;org;telota;;
https://github.com/telota/quoteSalute;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;org;telota;;
https://github.com/telota/kor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;org;telota;;
https://github.com/telota/researchspace;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;FALSE;;;;;;TypeScript;org;telota;;
https://github.com/telota/lebenswelten-lehndorff;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;
https://github.com/telota/jean_paul_briefe;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;
https://github.com/telota/CIL-ACE;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;org;telota;;
https://github.com/telota/corpus-nummorum-editor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Vue;org;telota;;
https://github.com/telota/PIR;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;FALSE;TRUE;;;;;;PHP;org;telota;;
https://github.com/telota/edition-humboldt-digital;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;
https://github.com/telota/LinkEdLeibniz-data;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;telota;;
https://github.com/zentrum-lexikographie/eval-de-lemma;TRUE;TRUE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;org;zentrum_für_digitale_lexikographie_der_deutschen_sprache;;
https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;org;zentrum_für_digitale_lexikographie_der_deutschen_sprache;;
https://github.com/aipescience/daiquiri;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;PHP;org;aip_e-science;;
https://github.com/ATB-Potsdam/IDM;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;C#;org;agricultural_engineering_and_bioeconomy;;
https://github.com/ATB-Potsdam/monica;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;;org;agricultural_engineering_and_bioeconomy;;
https://github.com/ATB-Potsdam/N_opt_economic;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;;;;FALSE;;;;;;Jupyter Notebook;org;agricultural_engineering_and_bioeconomy;;
https://github.com/EarthSystemDiagnostics/TrenchR;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;TRUE;TRUE;FALSE;TRUE;;;;;;HTML;org;earth_system_diagnostics;;
https://github.com/EarthSystemDiagnostics/Dolman14C_2021;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;org;earth_system_diagnostics;;
https://github.com/adrpar/densfield;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/aipescience/daiquiri;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;PHP;user;;;
https://github.com/aipescience/mysql_healpix;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;TRUE;;;;;;C;user;;;
https://github.com/aipescience/spider-docker;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;FALSE;FALSE;FALSE;;;;;;PLpgSQL;user;;;
https://github.com/ATB-Potsdam/IDM;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/dshoman/MKN110;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Ruby;user;;;
https://github.com/ekaterinailin/AltaiPony;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;2;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/dustycrocodile;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/ekaterinailin/flares-in-clusters-ii-draft;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/ekaterinailin/flares-in-clusters-with-k2-ii;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/flares-q-learning;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/flaring-spi;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/flaring-spi-paper;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/ekaterinailin/GaiaK2PSF;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/k2-panstarrs-sampedro;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/multiperiod-flares-draft;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/ekaterinailin/Orbital_Flare_Declustering;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/SiberianPine;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/bootstrapped_mds;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/fedenhance;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/nldr_visual_recognition;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/polymorphisms_statistic_analysis;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/sudo_rm_rf;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/unsup_speech_enh_adaptation;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/filipinascimento/bigscience;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/filipinascimento/bl-conmat2network;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;
https://github.com/filipinascimento/bl-network-template-matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/filipinascimento/CVAccessibility;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/filipinascimento/CVRandomWalks;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/filipinascimento/CVSymmetry;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/filipinascimento/cxnetwork;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/filipinascimento/cxnetworks-docker;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;
https://github.com/filipinascimento/cxrandomwalk;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;TRUE;;;;;;C;user;;;
https://github.com/filipinascimento/helios-network;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;FALSE;FALSE;TRUE;;;;;;C;user;;;
https://github.com/filipinascimento/helios-web;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;2;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;user;;;
https://github.com/filipinascimento/malleability;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/filipinascimento/metabonet;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;TRUE;FALSE;;;;;;JavaScript;user;;;
https://github.com/filipinascimento/openalexnet;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/filipinascimento/teleconnectionsgranger;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/filipinascimento/workshop-netviz;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/harmening/HArtMuT;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Julia;user;;;
https://github.com/harmening/MRIsegmentation;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;MATLAB;user;;;
https://github.com/harmening/phrase-frequency-counter;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/hosilva/physrev_mplstyle;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/jochenklar/evora;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;TRUE;TRUE;FALSE;FALSE;;;;;;FORTRAN;user;;;
https://github.com/jochenklar/rdmo-advanced;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;;
https://github.com/kristinriebe/cosmosim-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Shell;user;;;
https://github.com/kristinriebe/cosmosim-uws-notebook;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/kristinriebe/provenance-cosmosim;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;JavaScript;user;;;
https://github.com/mjziebarth/REHEATFUNQ;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/msdemlei/dig-um-fi-init;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/msdemlei/softid;TRUE;FALSE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/wbarfuss/DetRL;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Mathematica;user;;;
https://github.com/wbarfuss/MARLDynamics;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/netlogo-exploit;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;
https://github.com/wbarfuss/Paradigms;TRUE;TRUE;FALSE;TRUE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/POLD;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;FALSE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/pyCRLD;TRUE;TRUE;FALSE;FALSE;FALSE;;leibniz;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/09tangriro/WHEELS;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/aadeshnpn/OSDN;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/abdel/pathology-lab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;PHP;user;;;
https://github.com/abhimishr/dynamic_forestry_GitHub;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;;
https://github.com/abhimishr/LUMEN;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;GAMS;user;;;
https://github.com/abhimishr/magpie_forestry;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;;
https://github.com/Akhilez/DisCease;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/aklein1995/Pong_withDRL;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/AlexPasqua/DM-project;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/AlexPasqua/Sum-Product-Networks;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/amnmalik/PhdSummary;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/amnmalik/PhDThesis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/amnmalik/reducingstrandedassets;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/amy12xx/ml_notes_and_reports;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/andersthuesen/bachelor-project;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/andersthuesen/ChromaAI;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/araffin/es-with-search-path;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/araffin/graph-annotation-tool;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/araffin/rl-handson-rlvs21;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/aseembits93/VS_CNN;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/bs538/PlanetImage;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/Butanium/monte-carlo-tree-search-TSP;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;OCaml;user;;;
https://github.com/camillebelmin/achieving-universal-energy-access;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/cchrisgong/dieter-coupling-remind;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;GAMS;user;;;
https://github.com/cchrisgong/remind-coupling-dieter;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;GAMS;user;;;
https://github.com/chroetz/PaperQuadRate19;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/chroetz/PaperStrong22;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/cyprienc/binary-Huffman-algorithm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/danielhuppmann/binary_equilibrium;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Assembly;user;;;
https://github.com/danielhuppmann/climate-risks-academy-2021;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/danielhuppmann/iea-netzero2050-datawrangler;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/dbantje/internalization;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/dfilan/clusterability_in_neural_networks;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/enosair/bentkus_conf_seq;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/enosair/gdp-edgeworth;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/enosair/lightcurve-download;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Shell;user;;;
https://github.com/enosair/tensor-subspace-norm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/ernestum/clestus;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/ernestum/GeodesicSphere;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;OpenSCAD;user;;;
https://github.com/etzinis/fedenhance;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/polymorphisms_statistic_analysis;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/sudo_rm_rf;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/etzinis/unsup_speech_enh_adaptation;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/FelicitasBeier/IrrigationPotentials;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/filipinascimento/bigscience;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/filipinascimento/bl-network-template-matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/filipinascimento/cxnetworks-docker;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;
https://github.com/filipinascimento/malleability;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/filipinascimento/metabonet;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;TRUE;FALSE;;;;;;JavaScript;user;;;
https://github.com/filipinascimento/openalexnet;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/filipinascimento/teleconnectionsgranger;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/floringogianu/paper-notebooks;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/floringogianu/per-study;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/ftl-traveller/youtube-sentiment-analysis-opinion-mining;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/g-leech/masks_v_mandates;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/glmcdona/FoosRL;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;user;;;
https://github.com/glmcdona/Process-Dump;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/harmening/HArtMuT;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Julia;user;;;
https://github.com/harmening/MRIsegmentation;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;MATLAB;user;;;
https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/hkraemer/InterSpikeSpectra-Matlab;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;TRUE;;;;;;MATLAB;user;;;
https://github.com/hkraemer/MCDTS.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Julia;user;;;
https://github.com/hkraemer/PECUZAL_Julia;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;
https://github.com/hkraemer/PECUZAL_Matlab;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;
https://github.com/honglu2875/weirdonetworks;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/JacobPfau/introspective-self-consistency;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/jakobkolb/fMRI_FF;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;AGS Script;user;;;
https://github.com/jakobkolb/Master-Thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/jakobkolb/ml-covid-nowcasting;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/jakobkolb/pysave;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/jansteinhauser/masc;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;GAMS;user;;;
https://github.com/jbloomAus/ARENA_2.0-RLHF;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/JulesGM/DeepNeuro;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/JulesGM/eli5_retrieval_large_lm;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/juliusgarbe/modelling_sandbox;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/jvmncs/Contamination;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/jvmncs/DeepIDS;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/jvmncs/reinforcement-learning;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/kachayev/timely0;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Scala;user;;;
https://github.com/lcswillems/ai-mx-docs;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/lcswillems/MVA-RecVis-project;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ManifoldFR/point-process-rust;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Rust;user;;;
https://github.com/matthiasmengel/fast_ant_sid;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Fortran;user;;;
https://github.com/maximilian-gelbrecht/ChaoticNDETools.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;
https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;
https://github.com/maximilian-gelbrecht/MCBB.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/Miffyli/sym;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/Miffyli/ToriLLE;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Lua;user;;;
https://github.com/mikapfl/gin_ansible_role;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;;
https://github.com/mikapfl/read_di_unfccc;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/mikapfl/unfccc_di_data;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Makefile;user;;;
https://github.com/mikewin-climsci/BGPvBGC;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/mjziebarth/REHEATFUNQ;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/mppalves/NetLogo_Bacterial_Infection_Model;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;NetLogo;user;;;
https://github.com/mppalves/PIK-projects;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Mathematica;user;;;
https://github.com/PhilippVerpoort/green-value-chains;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/pik-copan/MayaSim;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/pik-copan/pycascades;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/pik-copan/pydrf;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/pik-gane/vodle;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;JavaScript;user;;;
https://github.com/pik-piam/modelstats;TRUE;FALSE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;
https://github.com/pik-piam/mrfable;TRUE;TRUE;TRUE;TRUE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;
https://github.com/pseudo-rnd-thoughts/Elastic-Resource-Allocation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/pvjeetze/Heterogeneity-RootWaterUptake;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/PwnerHarry/CLIA;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/PwnerHarry/Stronger_GCN;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/qxcv/asnets;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;PDDL;user;;;
https://github.com/qxcv/comp2560;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/qxcv/structuredinference;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/rajammanabrolu/Automated-Story-Generation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/rajammanabrolu/CRD3-extended;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/remindmodel/remind;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;2;;TRUE;TRUE;TRUE;TRUE;;;;;;GAMS;user;;;
https://github.com/Renato-Rodrigues/EU_2040_transformation;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/rizar/actor-critic-public;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/rmiddelanis/sandy_paper;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/rockt/ChemSpot;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;2;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;
https://github.com/rtaori/data_feedback;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/sawcordwell/MDPs.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;TRUE;;;;;;Julia;user;;;
https://github.com/ScheiklP/lap_gym;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/ScheiklP/sofa_godot;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;GDScript;user;;;
https://github.com/sgillen/fractal_mesh;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/sgillen/fractal_rl;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/sgillen/fractal_rl_scratch;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/sgillen/matlab_ars;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/simoninithomas/Baselines_icm;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;
https://github.com/simoninithomas/Policy_gradients_CartPole;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/simoninithomas/the_mayan_adventure;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;ShaderLab;user;;;
https://github.com/thejat/active-curricula-for-efficient-reinforcement-learning;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/thejat/dynamic-network-growth-models;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/thejat/facial-political-recognition;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/thejat/planout;TRUE;TRUE;TRUE;FALSE;FALSE;;pik;1;;TRUE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/thejat/profit-optimization-ride-sharing;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/thejat/supervised-learning-with-side-knowledge;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/thejat/Thompson-Sampling-for-a-Fatigue-aware-Online-Recommendation-System;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/Tiiiger/benchmark_llm_summarization;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/tobirohrer/gan-pretraining-ae;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/tobirohrer/reinforcement-learning-heat-pump;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ToBraun/RECFLOW;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ToBraun/RECLAC;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/tom-doerr/Intrinsic-Image-Popularity;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Shell;user;;;
https://github.com/tomMcGrath/feeding-behaviour;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/tomMcGrath/feeding_analysis;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/DetRL;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/intrinsic-fluctuations-cooperation;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Mathematica;user;;;
https://github.com/wbarfuss/netlogo-exploit;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;
https://github.com/wbarfuss/Paradigms;TRUE;TRUE;FALSE;TRUE;FALSE;;pik;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/POLD;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wbarfuss/pyCRLD;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/YannDubs/Neural-Process-Family;TRUE;TRUE;FALSE;FALSE;FALSE;;pik;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/YannDubs/RAW-Embedings;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/YannDubs/SSL-Risk-Decomposition;TRUE;FALSE;FALSE;FALSE;FALSE;;pik;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/adbar/coronakorpus;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/adbar/flux-toolchain;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;Perl;user;;;
https://github.com/adbar/valency-oriented-chunker;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Perl;user;;;
https://github.com/ariporad/alfred-molar-mass-calculator;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/axellelecroq/digital-edition-bestiaire;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/duncdrum/cbdb-data;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/fgeorges/ml-invoker;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;TRUE;TRUE;;;;;;XQuery;user;;;
https://github.com/FrederikeNeuber/lewald-correspondence-metadata;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/FrederikeNeuber/stgd-prototype-edition;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/FrederikeNeuber/typoo;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/gremid/idrovora;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;TRUE;;;;;;Clojure;user;;;
https://github.com/gremid/ujwa;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Clojure;user;;;
https://github.com/helmuthb/experiment-design-mediaeval;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/jadolan/zoomable_space;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/janpieterk/gemeentekaart-core;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;PHP;user;;;
https://github.com/janpieterk/gemeentekaart-rest;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;TRUE;TRUE;TRUE;;;;;;PHP;user;;;
https://github.com/jcklie/hack-assembler;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Assembly;user;;;
https://github.com/jcklie/hanzi-website;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/jochenklar/rdmo-advanced;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;;
https://github.com/jochenklar/rdmo-basic;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;CSS;user;;;
https://github.com/lcahlander/scxml-xq;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XQuery;user;;;
https://github.com/lguariento/og-h-am;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/lpodl/Izhikevich-Neurons;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/lpodl/Stein-Variational-Gradient-Descend;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/Rein3ke/2d-game-immersive-prototype;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/Rein3ke/com.rein3ke.virtualtour.core;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/Rein3ke/VirtualMuseumTour;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/riccardodg/linguistic-tools-for-weblicht;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;0;;TRUE;FALSE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/robcast/digilib;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;
https://github.com/tboenig/ocrd_bbaw_pilotbibliothek;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/telota/archiv-editor;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/telota/bbaw-schoell;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;TRUE;FALSE;;;;;;;user;;;
https://github.com/telota/ChronoTool;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;1;;TRUE;FALSE;TRUE;FALSE;;;;;;HTML;user;;;
https://github.com/telota/CIL-ACE;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;user;;;
https://github.com/telota/corpus-nummorum-editor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Vue;user;;;
https://github.com/telota/edition-humboldt-digital;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/telota/jean_paul_briefe_ediarum;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;;
https://github.com/telota/LinkEdLeibniz-data;TRUE;FALSE;FALSE;TRUE;FALSE;;bbaw;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/telota/PIR;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;PHP;user;;;
https://github.com/telota/quoteSalute;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;CSS;user;;;
https://github.com/telota/wsp-forschungsaktivitaet;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/uiur/kanji_to_hanzi;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;Ruby;user;;;
https://github.com/ulf1/study-370b;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ulf1/ulf1;TRUE;FALSE;FALSE;FALSE;FALSE;;bbaw;0;;FALSE;FALSE;TRUE;FALSE;;;;;;;user;;;
https://github.com/ulf1/vue-fit2box;TRUE;TRUE;TRUE;TRUE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/windauer/ws21-tp7-ws;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;XQuery;user;;;
https://github.com/xlhrld/retro-dict;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;bbaw;1;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;user;;;
https://github.com/a-moi/political-argument-mining;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/Abdelwahab86/Water-polygons-photogrammetry;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/Adrian-Ziupka/ba-thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/aeye-lab/etra-fairness;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/aeye-lab/sp-eyegan;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/alecamcr/Immigration-RSE;TRUE;TRUE;FALSE;TRUE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/alisher-turubayev/dl-normalizing-flows;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/alisher-turubayev/trent-university-code;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/alisher-turubayev/uni-potsdam-code;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/alsino/vmt-network;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/arne-cl/feng-hirst-rst-parser;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Shell;user;;;
https://github.com/AvitBhowmik/Poster-on-Spatial-Statistics-2015;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/AvitBhowmik/Presentation-at-SEFS9;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/bgroenks96/generative-downscaling;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/bgroenks96/normalizing-flows;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/BodoBookhagen/ICESat-2_SVDA;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/bptlab/scylla;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;
https://github.com/braunfuss/thermalintertia;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/briemadu/codraw-icr-v1;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/briemadu/inc-eval-revisions;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/briemadu/scorekeeping;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ClemensKubach/bicycle-bell-sed-models;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ClemensKubach/vae-art-restoration;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/crpiceda/dynamictopography;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/danielrm84/DeepLearning_AnimalVocalizations;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/danielrm84/Netlogo_Map_Generator;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;
https://github.com/danielrm84/PanModel33;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;
https://github.com/danielrm84/Romero-Mujalli-et-al.-BMC-Evolutionary-Biology;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;NetLogo;user;;;
https://github.com/delwarhub/Multimodal_Task_and_Feature_Attribution;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;
https://github.com/delwarhub/Multimodal_Task_with_Prompting_Large_Language_Models;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/Diego-Dam/paper_co_creation_mobility_planning_germany;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/discourse-lab/dimlex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;XSLT;user;;;
https://github.com/discourse-lab/DisCoDict;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/ekaterinailin/AltaiPony;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/flaring-spi;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/Orbital_Flare_Declustering;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/ekaterinailin/TESS_UCD_flares;TRUE;TRUE;FALSE;FALSE;FALSE;;up;1;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/flying-bear/thesis;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/fpottbaecker/st-data-gen;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/geveh/GLOFdetection;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/geveh/GLOFsusceptibility;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/hkraemer/Border-effect-corrections-for-diagonal-line-based-recurrence-quantification-analysis-measures;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/hkraemer/PECUZAL_Julia;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;
https://github.com/hkraemer/PECUZAL_Matlab;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;TRUE;;;;;;HTML;user;;;
https://github.com/hydrogo/KALI;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/hydrogo/KALIv2;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/juliusgarbe/modelling_sandbox;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/krr-up/bibliography;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/linusha/bundesweiter-mietendeckel-visualisierung;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/maximilian-gelbrecht/GhilSellersEBM.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;Julia;user;;;
https://github.com/maximilian-gelbrecht/MCBB.jl;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;TRUE;TRUE;FALSE;TRUE;;;;;;Jupyter Notebook;user;;;
https://github.com/mcvidomi/MFI;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/peldszus/arg-microtexts-multilayer;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ActionScript;user;;;
https://github.com/peldszus/joty-rstparser-docker;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Dockerfile;user;;;
https://github.com/PFischbeck/pygirgs;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/plauth/lib842;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;C;user;;;
https://github.com/potassco/clingo-vs-telingo-planning;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;ASP;user;;;
https://github.com/potassco/pddl-instances;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Common Lisp;user;;;
https://github.com/prassepaul/mlmed_transfer_learning;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/pschonev/deepanomaly4docs;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/resfahani/GMD;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/resfahani/GVM-Player;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/RoshanRane/Deviance_explained;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/RoshanRane/ML_for_IMAGEN;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/RoshanRane/PredNet-and-Predictive-Coding-A-Critical-Review;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/RoshanRane/segmentation-moving-MNIST;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/SemanticMultimedia/JungGraphMeasures;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/TillF/directional_CRNS;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/ToBraun/RECLAC;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/TScheffler/Connectives;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/TScheffler/UK_DiMLex;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/University-of-Potsdam-MM/GRANT;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/UP-RS-ESP/DEM-KZP;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/UP-RS-ESP/LidarPC-KDTree;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/UP-RS-ESP/mfdrouting;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/vasishth/HubermanBreathing;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/vasishth/HusainEtAlJEMR2015;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Stan;user;;;
https://github.com/vasishth/manuscript_LogacevVasishth_CogSci_SMCM;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/vasishth/powerpose;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Stan;user;;;
https://github.com/warpaint97/plan-merging-project;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/wschwanghart/ncquantreg;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Matlab;user;;;
https://github.com/XiaoxiangGuanGFZ/kNN_MOF_cp;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/YanaPalacheva/avoidance_study;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/YanaPalacheva/experiments_neuralcoref;TRUE;FALSE;FALSE;FALSE;FALSE;;up;1;;TRUE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/yanweiser/Beyond-Task-Success-But-Bert;TRUE;FALSE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/zentrum-lexikographie/dwdsmor;TRUE;TRUE;FALSE;FALSE;FALSE;;up;0;;FALSE;TRUE;FALSE;TRUE;;;;;;XSLT;user;;;
https://github.com/zentrum-lexikographie/eval-de-lemma;TRUE;TRUE;FALSE;TRUE;FALSE;;up;0;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/EarthSystemDiagnostics/TrenchR;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;TRUE;;;;;;HTML;user;;;
https://github.com/GPawi/CarbStock21k;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/GPawi/LANDOnline;TRUE;TRUE;FALSE;TRUE;FALSE;;awi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;MATLAB;user;;;
https://github.com/GPawi/MAYHEM;TRUE;TRUE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/slisovski/23-143-D-INSPIRES-B;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/slisovski/BTGodwit_Alaska_SnowNDVI;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;;user;;;
https://github.com/slisovski/Inspires;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/slisovski/Lisovski-et-al.-2016-AmNat;TRUE;FALSE;FALSE;FALSE;FALSE;;awi;0;;FALSE;FALSE;FALSE;FALSE;;;;;;;user;;;
https://github.com/abstraktor/multileveldebugging-QoppaS;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;
https://github.com/aksub99/molecular-vae;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;FALSE;TRUE;TRUE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/arne-z/BachelorThesis;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;TeX;user;;;
https://github.com/bptlab/Context-Aware-Change-Pattern-Detection;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/bptlab/relationships-between-change-patterns;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/bptlab/scylla;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Java;user;;;
https://github.com/Buguemar/GRTC_GNNs;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/cenguix/Text2KGBench;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/chrisseaton/dfscala-benchmarks;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Scala;user;;;
https://github.com/chrisseaton/low-overhead-polling-ruby;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C;user;;;
https://github.com/christianwarmuth/explainable-predictive-process-monitoring-with-text;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/christianwarmuth/treatment-based-patient-discharge-classification;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/cosminbasca/ellipsedetector;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/danijar/daydreamer;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/florian-papsdorf/kip-company-acquisition;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;;user;;;
https://github.com/fmannhardt/pddp;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;C#;user;;;
https://github.com/HaidYi/admm-l1-2-logistic-regression;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;FALSE;;;;;;C;user;;;
https://github.com/hpi-swa-lab/babylonian-programming-smalltalk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;
https://github.com/hpi-swa-lab/home-desktop-system;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;
https://github.com/hpi-swa-lab/SandBlocks-BlocksToTheRescue;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;FALSE;FALSE;;;;;;StringTemplate;user;;;
https://github.com/hpi-swa-lab/squeak-inbox-talk;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;
https://github.com/hpi-swa-lab/squeak-polymorphic-identifiers;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;
https://github.com/hpi-swa-lab/squeak-tracedebugger;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;TRUE;TRUE;TRUE;FALSE;;;;;;Smalltalk;user;;;
https://github.com/JakobEdding/Collaborative-Filtering-Kafka;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/jirkamarsik/esa-wordseg;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;TRUE;TRUE;;;;;;Clojure;user;;;
https://github.com/kanihal/vatic_modified;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;1;;TRUE;TRUE;TRUE;FALSE;;;;;;HTML;user;;;
https://github.com/LeonBein/masterThesisCode;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;FALSE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/LinqLover/downstream-repository-mining;TRUE;TRUE;FALSE;TRUE;FALSE;;hpi;1;;FALSE;TRUE;FALSE;FALSE;;;;;;TypeScript;user;;;
https://github.com/linusha/twitter-saxony-anhalt-election-2021-sentiment;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;HTML;user;;;
https://github.com/luisebenkert/Potree-Extension;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/marcfreiheit/generic-functions-squeak;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Smalltalk;user;;;
https://github.com/nicolas-alder/KAFKA-EFDT;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/onsetsu/d3-bundleview;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;JavaScript;user;;;
https://github.com/ThorbenLindhauer/cosimin;TRUE;TRUE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Java;user;;;
https://github.com/timgarrels/TableRecognition21;TRUE;FALSE;FALSE;FALSE;FALSE;;hpi;0;;FALSE;TRUE;FALSE;FALSE;;;;;;Jupyter Notebook;user;;;
https://github.com/aipescience/daiquiri-admin;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/aipescience/django-daiquiri-tap;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/aipescience/lightmeter;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/aipescience/mysql_sphere;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;none
https://github.com/aipescience/provenance-applause;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/aipescience/queryparser;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;most
https://github.com/aipescience/raid-utils;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/aipescience/spider-test-data;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/aipescience/sqlite_sphere;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;C++;user;;;none
https://github.com/aipescience/uws-client;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;more
https://github.com/aipescience/verlustdernacht;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/aipescience/votable2sql;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none
https://github.com/ATB-Potsdam/jupyterhub_dockerized;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/dshoman/MgII;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/ekaterinailin/flare-locations-ensembles-science;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;TRUE;github_actions;TRUE;TRUE;Python;user;;;most
https://github.com/etzinis/biased_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/etzinis/heterogeneous_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/etzinis/nldrp;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/etzinis/optimal_condition_training;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/etzinis/speech_nlp_labs;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/etzinis/two_step_mask_learning;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/etzinis/unsupervised_spatial_dc;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/filipinascimento/bl-network-communities;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-measurements;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-nullmodel;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-preprocess;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-report;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-template;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-visualization;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-timeseries2network;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/harmening/pyhemo;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/harmening/pyreite;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none
https://github.com/hosilva/mplstyle;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jochenklar/chemotion-formats;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/jochenklar/isimip-scripts;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/jochenklar/meps;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/jochenklar/quantify;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/jochenklar/reader2;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kristinriebe/blendertools;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/kristinriebe/DensityIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/kristinriebe/FofIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/kristinriebe/GalacticusIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/kristinriebe/PmssIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/kristinriebe/SageIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/kristinriebe/SagIngest;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/kristinriebe/uws-validator;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/lenas95/Projekt_B;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none
https://github.com/lenas95/SEWS_Amazon_rainforest;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/mjziebarth/ACOSA;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most
https://github.com/mjziebarth/acplotoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/mjziebarth/FlotteKarte;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;C++;user;;;most
https://github.com/mjziebarth/InterpolateStress;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most
https://github.com/mjziebarth/pybalonor;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;TRUE;github_actions;TRUE;TRUE;C++;user;;;most
https://github.com/olebole/i386-test;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none
https://github.com/olebole/python-cpl;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;none
https://github.com/SimonPfeifer/cows;TRUE;TRUE;TRUE;FALSE;FALSE;3;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;more
https://github.com/SimonPfeifer/Ecosystem;TRUE;FALSE;FALSE;FALSE;FALSE;1;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/SimonPfeifer/PyBrego;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/SimonPfeifer/WLmap;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/wbarfuss/CognitiveLevels;TRUE;TRUE;FALSE;TRUE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/wbarfuss/cyexploit;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/wbarfuss/eca;TRUE;TRUE;FALSE;FALSE;FALSE;2;leibniz;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/wbarfuss/EcoPG;TRUE;TRUE;FALSE;TRUE;FALSE;3;leibniz;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/09tangriro/Pearl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;TRUE;TRUE;Python;user;;;none
https://github.com/09tangriro/ppg;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/0UmfHxcvx5J7JoaOhFSs5mncnisTJJ6q/moinput;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/0xsuu/mutual-information-regulariser;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/aadeshnpn/cooperative-transport;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/aadeshnpn/knn-simple;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/aadeshnpn/LTLf2BT;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/aadeshnpn/nepali-mapper;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/aadeshnpn/PyGoal;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/aadeshnpn/swarm;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;more
https://github.com/abaisero/asym-rlpo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/abaisero/gym-gridverse;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;TRUE;FALSE;Python;user;;;none
https://github.com/abaisero/gym-pomdps;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/abaisero/gym-pyro;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/abaisero/one-to-one;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/abaisero/pre-commit-hooks;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/abaisero/rl-rpsr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/abhimishr/FADNUGent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/AdamGleave/pytest-shard;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;circleci;;;Python;user;;;more
https://github.com/akifumi-wachi-4/safe_near_optimal_mdp;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/akifumi-wachi-4/spolf;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/aklein1995/exploration_sil_im;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/aklein1995/intrinsic_motivation_techniques_study;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/aklein1995/Multi-Agent-Reinforcement-MADDPG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/aklein1995/Navigation_Bananas_DRL;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/AlexPasqua/Autoencoders;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/AlexPasqua/DeepNetSlice;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/AlexPasqua/keras-caffe-converter;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/amnmalik/gcam-v6-ceew;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;R;user;;;most
https://github.com/anand-bala/deepsort_ros;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/anand-bala/perception-algorithms;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/anand-bala/symbolic-automata-monitors;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none
https://github.com/andersthuesen/reinforcement-exploration;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/AnjaKatzenberger/CMIP-6-Very-wet-monsoon-seasons-in-India;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/AnjaKatzenberger/CMIP6-Indian-Monsoon;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/aodenweller/green-h2-upscaling;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none
https://github.com/araffin/eagerx_quadruped;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;TRUE;TRUE;Python;user;;;some
https://github.com/araffin/rl-baselines-zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;Python;user;;;none
https://github.com/araffin/robotics-rl-srl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/araffin/sbx;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none
https://github.com/araffin/srl-zoo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://git+A726+B726;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;
https://github.com/atreyasha/language-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/atreyasha/mimic3-benchmarks-occlusion;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/atreyasha/mv-temporal-rgan;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/atreyasha/semantic-isometry-nmt;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/atreyasha/sentiment-argument-mining;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/atreyasha/spam-detection;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/ayeright/swafa;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/bodirsky/lucode;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;FALSE;R;user;;;most
https://github.com/BolunDai0216/DifferentiableOptimizationCBF;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/BolunDai0216/FR3Env;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/BolunDai0216/ppo_torch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/BurakDmb/DifferentiableSearchIndexAndRetrieval;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/BurakDmb/mpc_example;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/BurakDmb/quadsim;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/caviddhen/bowheads;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/caviddhen/ggcmi2agmip;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/caviddhen/MagpieNCGains;TRUE;FALSE;FALSE;TRUE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/caviddhen/MarkupsChen;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/cchrisgong/aip_rockstar;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/cchrisgong/kuramoto_no_cluster;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/christophbertram/covid-power-sector;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most
https://github.com/christopher-hesse/computer-tennis;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/chroetz/poisrrr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/chroetz/spheregr;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;R;user;;;some
https://github.com/chroetz/TdaCpdSim;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more
https://github.com/chroetz/WhenMeasureChaos;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none
https://github.com/CppMaster/SC2-AI;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/cyl628/prompt-typing;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/d3sm0/dantebot;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/d3sm0/gym-vdp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/d3sm0/svg;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;FALSE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/david-lindner/ai-safety-debate;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/david-lindner/idrl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/david-lindner/safe-grid-gym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;Python;user;;;none
https://github.com/david-lindner/single-peaked-bandits;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/deleip/empirical_analysis_of_cascading_effects;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;some
https://github.com/dengemann/meeg-preprocessing;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/dengemann/paper-multimodal-stacking-figures;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none
https://github.com/devcurmudgeon/cida;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/elliottower/abstraction;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/elliottower/ProtoQA_Macaw;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/emolinab/PlotsPaper;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more
https://github.com/emolinab/PlottingScripts;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more
https://github.com/enosair/federated-fdp;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/ernestum/data-samples-printer;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;0;research;TRUE;FALSE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;TRUE;Python;user;;;none
https://github.com/etzinis/heterogeneous_separation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/etzinis/nldrp;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/etzinis/optimal_condition_training;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/etzinis/unsupervised_spatial_dc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/FelicitasBeier/mrwater4SIMPLE-G;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most
https://github.com/FelicitasBeier/mrwaterPlots;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most
https://github.com/filipinascimento/bl-network-communities;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-measurements;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-nullmodel;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-preprocess;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-network-report;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/bl-timeseries2network;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/filipinascimento/openalex-raw;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/filipinascimento/RModularity;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/filipinascimento/WOSRaw;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/floringogianu/atari-agents;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;2;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/floringogianu/categorical-dqn;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/floringogianu/rlog;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/floringogianu/schrodinger;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/floringogianu/wintermute;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/g-leech/Py2HTK;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/gabriel-abrahao/analyze_cesm;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/glmcdona/LuxPythonEnvGym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/glmcdona/MALM;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most
https://github.com/glmcdona/sparse-tabular-ml-benchmark;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/harmening/signature_extraction;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;travis;FALSE;TRUE;Python;user;;;none
https://github.com/hkraemer/PECUZAL_python;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;more
https://github.com/JacobPfau/PENCIL;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/JacobPfau/procgenAISC;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;TRUE;travis;FALSE;FALSE;C++;user;;;more
https://github.com/JakobBruenker/HDR;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most
https://github.com/jbkjr/allennlp_sempar;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jbloomAus/toy_model_interpretability;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jhilaire/ssawosacarb;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;more
https://github.com/jjshoots/DL_FasteNet;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/jjshoots/PyFlyt;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;TRUE;TRUE;TRUE;TRUE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;most
https://github.com/jjshoots/pyflyt_dogfight;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/jjshoots/railway_drone;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/jkterry1/ASWS;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more
https://github.com/jkterry1/MCMES_cleanup_scratch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/jkterry1/parameter-sharing-paper;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none
https://github.com/jmhessel/BasicSpearmint;TRUE;FALSE;TRUE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jmhessel/caption_contest_corpus;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/jmhessel/catrank;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/jmhessel/clipscore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/jmhessel/FightingWords;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jmhessel/fmpytorch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/jmhessel/multi-retrieval;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/jnnsbrr/PhotoBioDynamics;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most
https://github.com/jondurbin/airoboros;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;TRUE;github_actions;FALSE;FALSE;Python;user;;;none
https://github.com/joonleesky/train-procgen-pytorch;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jsalvatier/async_deep_reinforce;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/jsalvatier/numexpr;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/jsalvatier/PyGame-Learning-Environment;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/JSchapke/essential-gene-detection;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/JSchapke/routing-environment;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/JulesGM/AccelerateRL4LMs;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/JulesGM/RL4LMS_fork;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/jvmncs/ParamNoise;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/jvmncs/PytorchAdversarialGym;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kachayev/car-racing-attention-agent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/kachayev/ssl-in-one-epoch;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kcobbe/gans_mnist;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kcobbe/ram_mnist;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kcobbe/slitherin;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kronion/microrts-ppo-comparison;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/kzl/aop;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/kzl/lifelong_rl;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;2;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/kzl/universal-computation;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/langosco/neural-variational-gradient-descent;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/langusta/sutton-reinforcement-learning-intro;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/lcswillems/automatic-curriculum;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/lcswillems/MVA-RL-project;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/lcswillems/MVA-TDA-article;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/lcswillems/named-entity-recognizer;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/leesharkey/deep_attractor_network;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/lxuechen/inference-suboptimality;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/lxuechen/private-transformers;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/maibrittbergh/dischanalyst;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;more
https://github.com/maibrittbergh/lfanalyse;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most
https://github.com/ManifoldFR/entropic-mfg;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;C++;user;;;more
https://github.com/marcwie/pycoment;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/marcwie/sedac-gpw-parser;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;more
https://github.com/MathisFederico/coffeematon;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/MathisFederico/LearnRL;TRUE;TRUE;TRUE;FALSE;FALSE;3;pik;2;research;FALSE;TRUE;FALSE;TRUE;TRUE;TRUE;github_actions;FALSE;TRUE;Python;user;;;more
https://github.com/matthiasmengel/pism_pik;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;FALSE;FALSE;TRUE;TRUE;FALSE;;;;C++;user;;;most
https://github.com/matthiasmengel/sealevel;TRUE;TRUE;FALSE;TRUE;FALSE;3;pik;1;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;most
https://github.com/Melanol/bacteria_evo;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;FALSE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;some
https://github.com/mgoulao/Linear-Probing-for-RL;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/Miffyli/nle-sample-factory-baseline;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/Miffyli/policy-supervectors;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/Miffyli/rl-action-space-shaping;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;more
https://github.com/Miffyli/rl-human-prior-tricks;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/miljanm/deep-learning-for-sentiment-mining;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/miljanm/Political-Twitter-Sentiment-Mining;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/minhlong94/Random-Mixup;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;TRUE;TRUE;TRUE;FALSE;TRUE;FALSE;;;;Python;user;;;none
https://github.com/mjziebarth/pybalonor;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;C++;user;;;most
https://github.com/mppalves/soilcemulator;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;most
https://github.com/neale/avoiding-side-effects;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;Python;user;;;some
https://github.com/neale/HyperGAN;TRUE;FALSE;FALSE;FALSE;FALSE;1;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/neale/neural-canvas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/neale/neural-data-format;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/neale/particle-based-vi_ood;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/PhilippVerpoort/blue-green-H2;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/PhilippVerpoort/posted;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;none
https://github.com/pik-copan/pycopanbehave;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/pik-copan/pycopancore;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;FALSE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/pik-copan/pycopandiscount;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/pik-copan/pycopanpbcc;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/pik-copan/pyregimeshifts;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/pik-copan/pytippinginteractions;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/pik-copan/pyunicorn;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;TRUE;TRUE;TRUE;TRUE;FALSE;FALSE;;;;Python;user;;;most
https://github.com/PIK-LPJmL/LandInG;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;most
https://github.com/PIK-LPJmL/lpjmlkit;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;1;research;TRUE;TRUE;TRUE;TRUE;TRUE;FALSE;;;;R;user;;;more
https://github.com/PIK-LPJmL/LPJmLmdi;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;1;research;FALSE;TRUE;FALSE;FALSE;FALSE;FALSE;;;;R;user;;;none
https://github.com/pik-piam/blackmagicc;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;more
https://github.com/pik-piam/brick;TRUE;FALSE;TRUE;TRUE;FALSE;3;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most
https://github.com/pik-piam/citation;TRUE;TRUE;TRUE;TRUE;FALSE;4;pik;0;research;TRUE;TRUE;FALSE;TRUE;TRUE;FALSE;;;;R;user;;;most
https://github.com/pik-piam/demystas;TRUE;TRUE;FALSE;FALSE;FALSE;2;pik;0;research;TRUE;TRUE;FALSE;FALSE;TRUE;FALSE;;;;R;user;;;most