-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgithub_members.yml
1407 lines (1407 loc) · 67.3 KB
/
github_members.yml
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
---
- login: afilini
id: 3058409
node_id: MDQ6VXNlcjMwNTg0MDk=
avatar_url: https://avatars.githubusercontent.com/u/3058409?v=4
gravatar_id: ''
url: https://api.github.com/users/afilini
html_url: https://github.com/afilini
followers_url: https://api.github.com/users/afilini/followers
following_url: https://api.github.com/users/afilini/following{/other_user}
gists_url: https://api.github.com/users/afilini/gists{/gist_id}
starred_url: https://api.github.com/users/afilini/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/afilini/subscriptions
organizations_url: https://api.github.com/users/afilini/orgs
repos_url: https://api.github.com/users/afilini/repos
events_url: https://api.github.com/users/afilini/events{/privacy}
received_events_url: https://api.github.com/users/afilini/received_events
type: User
user_view_type: public
site_admin: false
- login: aletundo
id: 15201375
node_id: MDQ6VXNlcjE1MjAxMzc1
avatar_url: https://avatars.githubusercontent.com/u/15201375?v=4
gravatar_id: ''
url: https://api.github.com/users/aletundo
html_url: https://github.com/aletundo
followers_url: https://api.github.com/users/aletundo/followers
following_url: https://api.github.com/users/aletundo/following{/other_user}
gists_url: https://api.github.com/users/aletundo/gists{/gist_id}
starred_url: https://api.github.com/users/aletundo/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/aletundo/subscriptions
organizations_url: https://api.github.com/users/aletundo/orgs
repos_url: https://api.github.com/users/aletundo/repos
events_url: https://api.github.com/users/aletundo/events{/privacy}
received_events_url: https://api.github.com/users/aletundo/received_events
type: User
user_view_type: public
site_admin: false
- login: alexghirelli
id: 5411012
node_id: MDQ6VXNlcjU0MTEwMTI=
avatar_url: https://avatars.githubusercontent.com/u/5411012?v=4
gravatar_id: ''
url: https://api.github.com/users/alexghirelli
html_url: https://github.com/alexghirelli
followers_url: https://api.github.com/users/alexghirelli/followers
following_url: https://api.github.com/users/alexghirelli/following{/other_user}
gists_url: https://api.github.com/users/alexghirelli/gists{/gist_id}
starred_url: https://api.github.com/users/alexghirelli/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/alexghirelli/subscriptions
organizations_url: https://api.github.com/users/alexghirelli/orgs
repos_url: https://api.github.com/users/alexghirelli/repos
events_url: https://api.github.com/users/alexghirelli/events{/privacy}
received_events_url: https://api.github.com/users/alexghirelli/received_events
type: User
user_view_type: public
site_admin: false
- login: alranel
id: 594957
node_id: MDQ6VXNlcjU5NDk1Nw==
avatar_url: https://avatars.githubusercontent.com/u/594957?v=4
gravatar_id: ''
url: https://api.github.com/users/alranel
html_url: https://github.com/alranel
followers_url: https://api.github.com/users/alranel/followers
following_url: https://api.github.com/users/alranel/following{/other_user}
gists_url: https://api.github.com/users/alranel/gists{/gist_id}
starred_url: https://api.github.com/users/alranel/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/alranel/subscriptions
organizations_url: https://api.github.com/users/alranel/orgs
repos_url: https://api.github.com/users/alranel/repos
events_url: https://api.github.com/users/alranel/events{/privacy}
received_events_url: https://api.github.com/users/alranel/received_events
type: User
user_view_type: public
site_admin: false
- login: alterat
id: 19559470
node_id: MDQ6VXNlcjE5NTU5NDcw
avatar_url: https://avatars.githubusercontent.com/u/19559470?v=4
gravatar_id: ''
url: https://api.github.com/users/alterat
html_url: https://github.com/alterat
followers_url: https://api.github.com/users/alterat/followers
following_url: https://api.github.com/users/alterat/following{/other_user}
gists_url: https://api.github.com/users/alterat/gists{/gist_id}
starred_url: https://api.github.com/users/alterat/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/alterat/subscriptions
organizations_url: https://api.github.com/users/alterat/orgs
repos_url: https://api.github.com/users/alterat/repos
events_url: https://api.github.com/users/alterat/events{/privacy}
received_events_url: https://api.github.com/users/alterat/received_events
type: User
user_view_type: public
site_admin: false
- login: amusarra
id: 708110
node_id: MDQ6VXNlcjcwODExMA==
avatar_url: https://avatars.githubusercontent.com/u/708110?v=4
gravatar_id: ''
url: https://api.github.com/users/amusarra
html_url: https://github.com/amusarra
followers_url: https://api.github.com/users/amusarra/followers
following_url: https://api.github.com/users/amusarra/following{/other_user}
gists_url: https://api.github.com/users/amusarra/gists{/gist_id}
starred_url: https://api.github.com/users/amusarra/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/amusarra/subscriptions
organizations_url: https://api.github.com/users/amusarra/orgs
repos_url: https://api.github.com/users/amusarra/repos
events_url: https://api.github.com/users/amusarra/events{/privacy}
received_events_url: https://api.github.com/users/amusarra/received_events
type: User
user_view_type: public
site_admin: false
- login: astagi
id: 537363
node_id: MDQ6VXNlcjUzNzM2Mw==
avatar_url: https://avatars.githubusercontent.com/u/537363?v=4
gravatar_id: ''
url: https://api.github.com/users/astagi
html_url: https://github.com/astagi
followers_url: https://api.github.com/users/astagi/followers
following_url: https://api.github.com/users/astagi/following{/other_user}
gists_url: https://api.github.com/users/astagi/gists{/gist_id}
starred_url: https://api.github.com/users/astagi/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/astagi/subscriptions
organizations_url: https://api.github.com/users/astagi/orgs
repos_url: https://api.github.com/users/astagi/repos
events_url: https://api.github.com/users/astagi/events{/privacy}
received_events_url: https://api.github.com/users/astagi/received_events
type: User
user_view_type: public
site_admin: false
- login: aymen94
id: 13963132
node_id: MDQ6VXNlcjEzOTYzMTMy
avatar_url: https://avatars.githubusercontent.com/u/13963132?v=4
gravatar_id: ''
url: https://api.github.com/users/aymen94
html_url: https://github.com/aymen94
followers_url: https://api.github.com/users/aymen94/followers
following_url: https://api.github.com/users/aymen94/following{/other_user}
gists_url: https://api.github.com/users/aymen94/gists{/gist_id}
starred_url: https://api.github.com/users/aymen94/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/aymen94/subscriptions
organizations_url: https://api.github.com/users/aymen94/orgs
repos_url: https://api.github.com/users/aymen94/repos
events_url: https://api.github.com/users/aymen94/events{/privacy}
received_events_url: https://api.github.com/users/aymen94/received_events
type: User
user_view_type: public
site_admin: false
- login: bfabio
id: 788293
node_id: MDQ6VXNlcjc4ODI5Mw==
avatar_url: https://avatars.githubusercontent.com/u/788293?v=4
gravatar_id: ''
url: https://api.github.com/users/bfabio
html_url: https://github.com/bfabio
followers_url: https://api.github.com/users/bfabio/followers
following_url: https://api.github.com/users/bfabio/following{/other_user}
gists_url: https://api.github.com/users/bfabio/gists{/gist_id}
starred_url: https://api.github.com/users/bfabio/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/bfabio/subscriptions
organizations_url: https://api.github.com/users/bfabio/orgs
repos_url: https://api.github.com/users/bfabio/repos
events_url: https://api.github.com/users/bfabio/events{/privacy}
received_events_url: https://api.github.com/users/bfabio/received_events
type: User
user_view_type: public
site_admin: false
- login: biancini
id: 1561585
node_id: MDQ6VXNlcjE1NjE1ODU=
avatar_url: https://avatars.githubusercontent.com/u/1561585?v=4
gravatar_id: ''
url: https://api.github.com/users/biancini
html_url: https://github.com/biancini
followers_url: https://api.github.com/users/biancini/followers
following_url: https://api.github.com/users/biancini/following{/other_user}
gists_url: https://api.github.com/users/biancini/gists{/gist_id}
starred_url: https://api.github.com/users/biancini/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/biancini/subscriptions
organizations_url: https://api.github.com/users/biancini/orgs
repos_url: https://api.github.com/users/biancini/repos
events_url: https://api.github.com/users/biancini/events{/privacy}
received_events_url: https://api.github.com/users/biancini/received_events
type: User
user_view_type: public
site_admin: false
- login: cicciodifranco
id: 9107536
node_id: MDQ6VXNlcjkxMDc1MzY=
avatar_url: https://avatars.githubusercontent.com/u/9107536?v=4
gravatar_id: ''
url: https://api.github.com/users/cicciodifranco
html_url: https://github.com/cicciodifranco
followers_url: https://api.github.com/users/cicciodifranco/followers
following_url: https://api.github.com/users/cicciodifranco/following{/other_user}
gists_url: https://api.github.com/users/cicciodifranco/gists{/gist_id}
starred_url: https://api.github.com/users/cicciodifranco/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/cicciodifranco/subscriptions
organizations_url: https://api.github.com/users/cicciodifranco/orgs
repos_url: https://api.github.com/users/cicciodifranco/repos
events_url: https://api.github.com/users/cicciodifranco/events{/privacy}
received_events_url: https://api.github.com/users/cicciodifranco/received_events
type: User
user_view_type: public
site_admin: false
- login: Clou-dia
id: 98462345
node_id: U_kgDOBd5qiQ
avatar_url: https://avatars.githubusercontent.com/u/98462345?v=4
gravatar_id: ''
url: https://api.github.com/users/Clou-dia
html_url: https://github.com/Clou-dia
followers_url: https://api.github.com/users/Clou-dia/followers
following_url: https://api.github.com/users/Clou-dia/following{/other_user}
gists_url: https://api.github.com/users/Clou-dia/gists{/gist_id}
starred_url: https://api.github.com/users/Clou-dia/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/Clou-dia/subscriptions
organizations_url: https://api.github.com/users/Clou-dia/orgs
repos_url: https://api.github.com/users/Clou-dia/repos
events_url: https://api.github.com/users/Clou-dia/events{/privacy}
received_events_url: https://api.github.com/users/Clou-dia/received_events
type: User
user_view_type: public
site_admin: false
- login: cloudify
id: 48206
node_id: MDQ6VXNlcjQ4MjA2
avatar_url: https://avatars.githubusercontent.com/u/48206?v=4
gravatar_id: ''
url: https://api.github.com/users/cloudify
html_url: https://github.com/cloudify
followers_url: https://api.github.com/users/cloudify/followers
following_url: https://api.github.com/users/cloudify/following{/other_user}
gists_url: https://api.github.com/users/cloudify/gists{/gist_id}
starred_url: https://api.github.com/users/cloudify/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/cloudify/subscriptions
organizations_url: https://api.github.com/users/cloudify/orgs
repos_url: https://api.github.com/users/cloudify/repos
events_url: https://api.github.com/users/cloudify/events{/privacy}
received_events_url: https://api.github.com/users/cloudify/received_events
type: User
user_view_type: public
site_admin: false
- login: congiuluc
id: 9011632
node_id: MDQ6VXNlcjkwMTE2MzI=
avatar_url: https://avatars.githubusercontent.com/u/9011632?v=4
gravatar_id: ''
url: https://api.github.com/users/congiuluc
html_url: https://github.com/congiuluc
followers_url: https://api.github.com/users/congiuluc/followers
following_url: https://api.github.com/users/congiuluc/following{/other_user}
gists_url: https://api.github.com/users/congiuluc/gists{/gist_id}
starred_url: https://api.github.com/users/congiuluc/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/congiuluc/subscriptions
organizations_url: https://api.github.com/users/congiuluc/orgs
repos_url: https://api.github.com/users/congiuluc/repos
events_url: https://api.github.com/users/congiuluc/events{/privacy}
received_events_url: https://api.github.com/users/congiuluc/received_events
type: User
user_view_type: public
site_admin: false
- login: damikael
id: 31276401
node_id: MDQ6VXNlcjMxMjc2NDAx
avatar_url: https://avatars.githubusercontent.com/u/31276401?v=4
gravatar_id: ''
url: https://api.github.com/users/damikael
html_url: https://github.com/damikael
followers_url: https://api.github.com/users/damikael/followers
following_url: https://api.github.com/users/damikael/following{/other_user}
gists_url: https://api.github.com/users/damikael/gists{/gist_id}
starred_url: https://api.github.com/users/damikael/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/damikael/subscriptions
organizations_url: https://api.github.com/users/damikael/orgs
repos_url: https://api.github.com/users/damikael/repos
events_url: https://api.github.com/users/damikael/events{/privacy}
received_events_url: https://api.github.com/users/damikael/received_events
type: User
user_view_type: public
site_admin: false
- login: damjack
id: 3234955
node_id: MDQ6VXNlcjMyMzQ5NTU=
avatar_url: https://avatars.githubusercontent.com/u/3234955?v=4
gravatar_id: ''
url: https://api.github.com/users/damjack
html_url: https://github.com/damjack
followers_url: https://api.github.com/users/damjack/followers
following_url: https://api.github.com/users/damjack/following{/other_user}
gists_url: https://api.github.com/users/damjack/gists{/gist_id}
starred_url: https://api.github.com/users/damjack/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/damjack/subscriptions
organizations_url: https://api.github.com/users/damjack/orgs
repos_url: https://api.github.com/users/damjack/repos
events_url: https://api.github.com/users/damjack/events{/privacy}
received_events_url: https://api.github.com/users/damjack/received_events
type: User
user_view_type: public
site_admin: false
- login: danielenole
id: 102873965
node_id: U_kgDOBiG7bQ
avatar_url: https://avatars.githubusercontent.com/u/102873965?v=4
gravatar_id: ''
url: https://api.github.com/users/danielenole
html_url: https://github.com/danielenole
followers_url: https://api.github.com/users/danielenole/followers
following_url: https://api.github.com/users/danielenole/following{/other_user}
gists_url: https://api.github.com/users/danielenole/gists{/gist_id}
starred_url: https://api.github.com/users/danielenole/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/danielenole/subscriptions
organizations_url: https://api.github.com/users/danielenole/orgs
repos_url: https://api.github.com/users/danielenole/repos
events_url: https://api.github.com/users/danielenole/events{/privacy}
received_events_url: https://api.github.com/users/danielenole/received_events
type: User
user_view_type: public
site_admin: false
- login: danse
id: 885935
node_id: MDQ6VXNlcjg4NTkzNQ==
avatar_url: https://avatars.githubusercontent.com/u/885935?v=4
gravatar_id: ''
url: https://api.github.com/users/danse
html_url: https://github.com/danse
followers_url: https://api.github.com/users/danse/followers
following_url: https://api.github.com/users/danse/following{/other_user}
gists_url: https://api.github.com/users/danse/gists{/gist_id}
starred_url: https://api.github.com/users/danse/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/danse/subscriptions
organizations_url: https://api.github.com/users/danse/orgs
repos_url: https://api.github.com/users/danse/repos
events_url: https://api.github.com/users/danse/events{/privacy}
received_events_url: https://api.github.com/users/danse/received_events
type: User
user_view_type: public
site_admin: false
- login: DavidePastore
id: 1949364
node_id: MDQ6VXNlcjE5NDkzNjQ=
avatar_url: https://avatars.githubusercontent.com/u/1949364?v=4
gravatar_id: ''
url: https://api.github.com/users/DavidePastore
html_url: https://github.com/DavidePastore
followers_url: https://api.github.com/users/DavidePastore/followers
following_url: https://api.github.com/users/DavidePastore/following{/other_user}
gists_url: https://api.github.com/users/DavidePastore/gists{/gist_id}
starred_url: https://api.github.com/users/DavidePastore/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/DavidePastore/subscriptions
organizations_url: https://api.github.com/users/DavidePastore/orgs
repos_url: https://api.github.com/users/DavidePastore/repos
events_url: https://api.github.com/users/DavidePastore/events{/privacy}
received_events_url: https://api.github.com/users/DavidePastore/received_events
type: User
user_view_type: public
site_admin: false
- login: davidlibrera
id: 400256
node_id: MDQ6VXNlcjQwMDI1Ng==
avatar_url: https://avatars.githubusercontent.com/u/400256?v=4
gravatar_id: ''
url: https://api.github.com/users/davidlibrera
html_url: https://github.com/davidlibrera
followers_url: https://api.github.com/users/davidlibrera/followers
following_url: https://api.github.com/users/davidlibrera/following{/other_user}
gists_url: https://api.github.com/users/davidlibrera/gists{/gist_id}
starred_url: https://api.github.com/users/davidlibrera/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/davidlibrera/subscriptions
organizations_url: https://api.github.com/users/davidlibrera/orgs
repos_url: https://api.github.com/users/davidlibrera/repos
events_url: https://api.github.com/users/davidlibrera/events{/privacy}
received_events_url: https://api.github.com/users/davidlibrera/received_events
type: User
user_view_type: public
site_admin: false
- login: dej611
id: 924948
node_id: MDQ6VXNlcjkyNDk0OA==
avatar_url: https://avatars.githubusercontent.com/u/924948?v=4
gravatar_id: ''
url: https://api.github.com/users/dej611
html_url: https://github.com/dej611
followers_url: https://api.github.com/users/dej611/followers
following_url: https://api.github.com/users/dej611/following{/other_user}
gists_url: https://api.github.com/users/dej611/gists{/gist_id}
starred_url: https://api.github.com/users/dej611/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/dej611/subscriptions
organizations_url: https://api.github.com/users/dej611/orgs
repos_url: https://api.github.com/users/dej611/repos
events_url: https://api.github.com/users/dej611/events{/privacy}
received_events_url: https://api.github.com/users/dej611/received_events
type: User
user_view_type: public
site_admin: false
- login: descovi
id: 104249
node_id: MDQ6VXNlcjEwNDI0OQ==
avatar_url: https://avatars.githubusercontent.com/u/104249?v=4
gravatar_id: ''
url: https://api.github.com/users/descovi
html_url: https://github.com/descovi
followers_url: https://api.github.com/users/descovi/followers
following_url: https://api.github.com/users/descovi/following{/other_user}
gists_url: https://api.github.com/users/descovi/gists{/gist_id}
starred_url: https://api.github.com/users/descovi/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/descovi/subscriptions
organizations_url: https://api.github.com/users/descovi/orgs
repos_url: https://api.github.com/users/descovi/repos
events_url: https://api.github.com/users/descovi/events{/privacy}
received_events_url: https://api.github.com/users/descovi/received_events
type: User
user_view_type: public
site_admin: false
- login: dgbattisti
id: 40858931
node_id: MDQ6VXNlcjQwODU4OTMx
avatar_url: https://avatars.githubusercontent.com/u/40858931?v=4
gravatar_id: ''
url: https://api.github.com/users/dgbattisti
html_url: https://github.com/dgbattisti
followers_url: https://api.github.com/users/dgbattisti/followers
following_url: https://api.github.com/users/dgbattisti/following{/other_user}
gists_url: https://api.github.com/users/dgbattisti/gists{/gist_id}
starred_url: https://api.github.com/users/dgbattisti/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/dgbattisti/subscriptions
organizations_url: https://api.github.com/users/dgbattisti/orgs
repos_url: https://api.github.com/users/dgbattisti/repos
events_url: https://api.github.com/users/dgbattisti/events{/privacy}
received_events_url: https://api.github.com/users/dgbattisti/received_events
type: User
user_view_type: public
site_admin: false
- login: dptdgi
id: 98891499
node_id: U_kgDOBeT26w
avatar_url: https://avatars.githubusercontent.com/u/98891499?v=4
gravatar_id: ''
url: https://api.github.com/users/dptdgi
html_url: https://github.com/dptdgi
followers_url: https://api.github.com/users/dptdgi/followers
following_url: https://api.github.com/users/dptdgi/following{/other_user}
gists_url: https://api.github.com/users/dptdgi/gists{/gist_id}
starred_url: https://api.github.com/users/dptdgi/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/dptdgi/subscriptions
organizations_url: https://api.github.com/users/dptdgi/orgs
repos_url: https://api.github.com/users/dptdgi/repos
events_url: https://api.github.com/users/dptdgi/events{/privacy}
received_events_url: https://api.github.com/users/dptdgi/received_events
type: User
user_view_type: public
site_admin: false
- login: engineering87
id: 11808127
node_id: MDQ6VXNlcjExODA4MTI3
avatar_url: https://avatars.githubusercontent.com/u/11808127?v=4
gravatar_id: ''
url: https://api.github.com/users/engineering87
html_url: https://github.com/engineering87
followers_url: https://api.github.com/users/engineering87/followers
following_url: https://api.github.com/users/engineering87/following{/other_user}
gists_url: https://api.github.com/users/engineering87/gists{/gist_id}
starred_url: https://api.github.com/users/engineering87/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/engineering87/subscriptions
organizations_url: https://api.github.com/users/engineering87/orgs
repos_url: https://api.github.com/users/engineering87/repos
events_url: https://api.github.com/users/engineering87/events{/privacy}
received_events_url: https://api.github.com/users/engineering87/received_events
type: User
user_view_type: public
site_admin: false
- login: ennioVisco
id: 740025
node_id: MDQ6VXNlcjc0MDAyNQ==
avatar_url: https://avatars.githubusercontent.com/u/740025?v=4
gravatar_id: ''
url: https://api.github.com/users/ennioVisco
html_url: https://github.com/ennioVisco
followers_url: https://api.github.com/users/ennioVisco/followers
following_url: https://api.github.com/users/ennioVisco/following{/other_user}
gists_url: https://api.github.com/users/ennioVisco/gists{/gist_id}
starred_url: https://api.github.com/users/ennioVisco/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/ennioVisco/subscriptions
organizations_url: https://api.github.com/users/ennioVisco/orgs
repos_url: https://api.github.com/users/ennioVisco/repos
events_url: https://api.github.com/users/ennioVisco/events{/privacy}
received_events_url: https://api.github.com/users/ennioVisco/received_events
type: User
user_view_type: public
site_admin: false
- login: federicadelia
id: 1468940
node_id: MDQ6VXNlcjE0Njg5NDA=
avatar_url: https://avatars.githubusercontent.com/u/1468940?v=4
gravatar_id: ''
url: https://api.github.com/users/federicadelia
html_url: https://github.com/federicadelia
followers_url: https://api.github.com/users/federicadelia/followers
following_url: https://api.github.com/users/federicadelia/following{/other_user}
gists_url: https://api.github.com/users/federicadelia/gists{/gist_id}
starred_url: https://api.github.com/users/federicadelia/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/federicadelia/subscriptions
organizations_url: https://api.github.com/users/federicadelia/orgs
repos_url: https://api.github.com/users/federicadelia/repos
events_url: https://api.github.com/users/federicadelia/events{/privacy}
received_events_url: https://api.github.com/users/federicadelia/received_events
type: User
user_view_type: public
site_admin: false
- login: fmarco
id: 7735024
node_id: MDQ6VXNlcjc3MzUwMjQ=
avatar_url: https://avatars.githubusercontent.com/u/7735024?v=4
gravatar_id: ''
url: https://api.github.com/users/fmarco
html_url: https://github.com/fmarco
followers_url: https://api.github.com/users/fmarco/followers
following_url: https://api.github.com/users/fmarco/following{/other_user}
gists_url: https://api.github.com/users/fmarco/gists{/gist_id}
starred_url: https://api.github.com/users/fmarco/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/fmarco/subscriptions
organizations_url: https://api.github.com/users/fmarco/orgs
repos_url: https://api.github.com/users/fmarco/repos
events_url: https://api.github.com/users/fmarco/events{/privacy}
received_events_url: https://api.github.com/users/fmarco/received_events
type: User
user_view_type: public
site_admin: false
- login: francesco-filicetti
id: 28479069
node_id: MDQ6VXNlcjI4NDc5MDY5
avatar_url: https://avatars.githubusercontent.com/u/28479069?v=4
gravatar_id: ''
url: https://api.github.com/users/francesco-filicetti
html_url: https://github.com/francesco-filicetti
followers_url: https://api.github.com/users/francesco-filicetti/followers
following_url: https://api.github.com/users/francesco-filicetti/following{/other_user}
gists_url: https://api.github.com/users/francesco-filicetti/gists{/gist_id}
starred_url: https://api.github.com/users/francesco-filicetti/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/francesco-filicetti/subscriptions
organizations_url: https://api.github.com/users/francesco-filicetti/orgs
repos_url: https://api.github.com/users/francesco-filicetti/repos
events_url: https://api.github.com/users/francesco-filicetti/events{/privacy}
received_events_url: https://api.github.com/users/francesco-filicetti/received_events
type: User
user_view_type: public
site_admin: false
- login: francescozaia
id: 481084
node_id: MDQ6VXNlcjQ4MTA4NA==
avatar_url: https://avatars.githubusercontent.com/u/481084?v=4
gravatar_id: ''
url: https://api.github.com/users/francescozaia
html_url: https://github.com/francescozaia
followers_url: https://api.github.com/users/francescozaia/followers
following_url: https://api.github.com/users/francescozaia/following{/other_user}
gists_url: https://api.github.com/users/francescozaia/gists{/gist_id}
starred_url: https://api.github.com/users/francescozaia/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/francescozaia/subscriptions
organizations_url: https://api.github.com/users/francescozaia/orgs
repos_url: https://api.github.com/users/francescozaia/repos
events_url: https://api.github.com/users/francescozaia/events{/privacy}
received_events_url: https://api.github.com/users/francescozaia/received_events
type: User
user_view_type: public
site_admin: false
- login: GiandonatoGreco
id: 102388751
node_id: U_kgDOBhpUDw
avatar_url: https://avatars.githubusercontent.com/u/102388751?v=4
gravatar_id: ''
url: https://api.github.com/users/GiandonatoGreco
html_url: https://github.com/GiandonatoGreco
followers_url: https://api.github.com/users/GiandonatoGreco/followers
following_url: https://api.github.com/users/GiandonatoGreco/following{/other_user}
gists_url: https://api.github.com/users/GiandonatoGreco/gists{/gist_id}
starred_url: https://api.github.com/users/GiandonatoGreco/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/GiandonatoGreco/subscriptions
organizations_url: https://api.github.com/users/GiandonatoGreco/orgs
repos_url: https://api.github.com/users/GiandonatoGreco/repos
events_url: https://api.github.com/users/GiandonatoGreco/events{/privacy}
received_events_url: https://api.github.com/users/GiandonatoGreco/received_events
type: User
user_view_type: public
site_admin: false
- login: giux78
id: 2806256
node_id: MDQ6VXNlcjI4MDYyNTY=
avatar_url: https://avatars.githubusercontent.com/u/2806256?v=4
gravatar_id: ''
url: https://api.github.com/users/giux78
html_url: https://github.com/giux78
followers_url: https://api.github.com/users/giux78/followers
following_url: https://api.github.com/users/giux78/following{/other_user}
gists_url: https://api.github.com/users/giux78/gists{/gist_id}
starred_url: https://api.github.com/users/giux78/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/giux78/subscriptions
organizations_url: https://api.github.com/users/giux78/orgs
repos_url: https://api.github.com/users/giux78/repos
events_url: https://api.github.com/users/giux78/events{/privacy}
received_events_url: https://api.github.com/users/giux78/received_events
type: User
user_view_type: public
site_admin: false
- login: gruggiero
id: 667101
node_id: MDQ6VXNlcjY2NzEwMQ==
avatar_url: https://avatars.githubusercontent.com/u/667101?v=4
gravatar_id: ''
url: https://api.github.com/users/gruggiero
html_url: https://github.com/gruggiero
followers_url: https://api.github.com/users/gruggiero/followers
following_url: https://api.github.com/users/gruggiero/following{/other_user}
gists_url: https://api.github.com/users/gruggiero/gists{/gist_id}
starred_url: https://api.github.com/users/gruggiero/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/gruggiero/subscriptions
organizations_url: https://api.github.com/users/gruggiero/orgs
repos_url: https://api.github.com/users/gruggiero/repos
events_url: https://api.github.com/users/gruggiero/events{/privacy}
received_events_url: https://api.github.com/users/gruggiero/received_events
type: User
user_view_type: public
site_admin: false
- login: gunzip
id: 148224
node_id: MDQ6VXNlcjE0ODIyNA==
avatar_url: https://avatars.githubusercontent.com/u/148224?v=4
gravatar_id: ''
url: https://api.github.com/users/gunzip
html_url: https://github.com/gunzip
followers_url: https://api.github.com/users/gunzip/followers
following_url: https://api.github.com/users/gunzip/following{/other_user}
gists_url: https://api.github.com/users/gunzip/gists{/gist_id}
starred_url: https://api.github.com/users/gunzip/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/gunzip/subscriptions
organizations_url: https://api.github.com/users/gunzip/orgs
repos_url: https://api.github.com/users/gunzip/repos
events_url: https://api.github.com/users/gunzip/events{/privacy}
received_events_url: https://api.github.com/users/gunzip/received_events
type: User
user_view_type: public
site_admin: false
- login: HoochDeveloper
id: 9978186
node_id: MDQ6VXNlcjk5NzgxODY=
avatar_url: https://avatars.githubusercontent.com/u/9978186?v=4
gravatar_id: ''
url: https://api.github.com/users/HoochDeveloper
html_url: https://github.com/HoochDeveloper
followers_url: https://api.github.com/users/HoochDeveloper/followers
following_url: https://api.github.com/users/HoochDeveloper/following{/other_user}
gists_url: https://api.github.com/users/HoochDeveloper/gists{/gist_id}
starred_url: https://api.github.com/users/HoochDeveloper/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/HoochDeveloper/subscriptions
organizations_url: https://api.github.com/users/HoochDeveloper/orgs
repos_url: https://api.github.com/users/HoochDeveloper/repos
events_url: https://api.github.com/users/HoochDeveloper/events{/privacy}
received_events_url: https://api.github.com/users/HoochDeveloper/received_events
type: User
user_view_type: public
site_admin: false
- login: Jecko-o
id: 22814742
node_id: MDQ6VXNlcjIyODE0NzQy
avatar_url: https://avatars.githubusercontent.com/u/22814742?v=4
gravatar_id: ''
url: https://api.github.com/users/Jecko-o
html_url: https://github.com/Jecko-o
followers_url: https://api.github.com/users/Jecko-o/followers
following_url: https://api.github.com/users/Jecko-o/following{/other_user}
gists_url: https://api.github.com/users/Jecko-o/gists{/gist_id}
starred_url: https://api.github.com/users/Jecko-o/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/Jecko-o/subscriptions
organizations_url: https://api.github.com/users/Jecko-o/orgs
repos_url: https://api.github.com/users/Jecko-o/repos
events_url: https://api.github.com/users/Jecko-o/events{/privacy}
received_events_url: https://api.github.com/users/Jecko-o/received_events
type: User
user_view_type: public
site_admin: false
- login: jenkin
id: 426495
node_id: MDQ6VXNlcjQyNjQ5NQ==
avatar_url: https://avatars.githubusercontent.com/u/426495?v=4
gravatar_id: ''
url: https://api.github.com/users/jenkin
html_url: https://github.com/jenkin
followers_url: https://api.github.com/users/jenkin/followers
following_url: https://api.github.com/users/jenkin/following{/other_user}
gists_url: https://api.github.com/users/jenkin/gists{/gist_id}
starred_url: https://api.github.com/users/jenkin/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/jenkin/subscriptions
organizations_url: https://api.github.com/users/jenkin/orgs
repos_url: https://api.github.com/users/jenkin/repos
events_url: https://api.github.com/users/jenkin/events{/privacy}
received_events_url: https://api.github.com/users/jenkin/received_events
type: User
user_view_type: public
site_admin: false
- login: joeyates
id: 137838
node_id: MDQ6VXNlcjEzNzgzOA==
avatar_url: https://avatars.githubusercontent.com/u/137838?v=4
gravatar_id: ''
url: https://api.github.com/users/joeyates
html_url: https://github.com/joeyates
followers_url: https://api.github.com/users/joeyates/followers
following_url: https://api.github.com/users/joeyates/following{/other_user}
gists_url: https://api.github.com/users/joeyates/gists{/gist_id}
starred_url: https://api.github.com/users/joeyates/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/joeyates/subscriptions
organizations_url: https://api.github.com/users/joeyates/orgs
repos_url: https://api.github.com/users/joeyates/repos
events_url: https://api.github.com/users/joeyates/events{/privacy}
received_events_url: https://api.github.com/users/joeyates/received_events
type: User
user_view_type: public
site_admin: false
- login: leptoquark
id: 5127294
node_id: MDQ6VXNlcjUxMjcyOTQ=
avatar_url: https://avatars.githubusercontent.com/u/5127294?v=4
gravatar_id: ''
url: https://api.github.com/users/leptoquark
html_url: https://github.com/leptoquark
followers_url: https://api.github.com/users/leptoquark/followers
following_url: https://api.github.com/users/leptoquark/following{/other_user}
gists_url: https://api.github.com/users/leptoquark/gists{/gist_id}
starred_url: https://api.github.com/users/leptoquark/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/leptoquark/subscriptions
organizations_url: https://api.github.com/users/leptoquark/orgs
repos_url: https://api.github.com/users/leptoquark/repos
events_url: https://api.github.com/users/leptoquark/events{/privacy}
received_events_url: https://api.github.com/users/leptoquark/received_events
type: User
user_view_type: public
site_admin: false
- login: libremente
id: 25111463
node_id: MDQ6VXNlcjI1MTExNDYz
avatar_url: https://avatars.githubusercontent.com/u/25111463?v=4
gravatar_id: ''
url: https://api.github.com/users/libremente
html_url: https://github.com/libremente
followers_url: https://api.github.com/users/libremente/followers
following_url: https://api.github.com/users/libremente/following{/other_user}
gists_url: https://api.github.com/users/libremente/gists{/gist_id}
starred_url: https://api.github.com/users/libremente/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/libremente/subscriptions
organizations_url: https://api.github.com/users/libremente/orgs
repos_url: https://api.github.com/users/libremente/repos
events_url: https://api.github.com/users/libremente/events{/privacy}
received_events_url: https://api.github.com/users/libremente/received_events
type: User
user_view_type: public
site_admin: false
- login: lilloraffa
id: 7894625
node_id: MDQ6VXNlcjc4OTQ2MjU=
avatar_url: https://avatars.githubusercontent.com/u/7894625?v=4
gravatar_id: ''
url: https://api.github.com/users/lilloraffa
html_url: https://github.com/lilloraffa
followers_url: https://api.github.com/users/lilloraffa/followers
following_url: https://api.github.com/users/lilloraffa/following{/other_user}
gists_url: https://api.github.com/users/lilloraffa/gists{/gist_id}
starred_url: https://api.github.com/users/lilloraffa/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/lilloraffa/subscriptions
organizations_url: https://api.github.com/users/lilloraffa/orgs
repos_url: https://api.github.com/users/lilloraffa/repos
events_url: https://api.github.com/users/lilloraffa/events{/privacy}
received_events_url: https://api.github.com/users/lilloraffa/received_events
type: User
user_view_type: public
site_admin: false
- login: lorenzoba
id: 18281360
node_id: MDQ6VXNlcjE4MjgxMzYw
avatar_url: https://avatars.githubusercontent.com/u/18281360?v=4
gravatar_id: ''
url: https://api.github.com/users/lorenzoba
html_url: https://github.com/lorenzoba
followers_url: https://api.github.com/users/lorenzoba/followers
following_url: https://api.github.com/users/lorenzoba/following{/other_user}
gists_url: https://api.github.com/users/lorenzoba/gists{/gist_id}
starred_url: https://api.github.com/users/lorenzoba/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/lorenzoba/subscriptions
organizations_url: https://api.github.com/users/lorenzoba/orgs
repos_url: https://api.github.com/users/lorenzoba/repos
events_url: https://api.github.com/users/lorenzoba/events{/privacy}
received_events_url: https://api.github.com/users/lorenzoba/received_events
type: User
user_view_type: public
site_admin: false
- login: Lorezz
id: 1153066
node_id: MDQ6VXNlcjExNTMwNjY=
avatar_url: https://avatars.githubusercontent.com/u/1153066?v=4
gravatar_id: ''
url: https://api.github.com/users/Lorezz
html_url: https://github.com/Lorezz
followers_url: https://api.github.com/users/Lorezz/followers
following_url: https://api.github.com/users/Lorezz/following{/other_user}
gists_url: https://api.github.com/users/Lorezz/gists{/gist_id}
starred_url: https://api.github.com/users/Lorezz/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/Lorezz/subscriptions
organizations_url: https://api.github.com/users/Lorezz/orgs
repos_url: https://api.github.com/users/Lorezz/repos
events_url: https://api.github.com/users/Lorezz/events{/privacy}
received_events_url: https://api.github.com/users/Lorezz/received_events
type: User
user_view_type: public
site_admin: false
- login: luciopileggi
id: 265532
node_id: MDQ6VXNlcjI2NTUzMg==
avatar_url: https://avatars.githubusercontent.com/u/265532?v=4
gravatar_id: ''
url: https://api.github.com/users/luciopileggi
html_url: https://github.com/luciopileggi
followers_url: https://api.github.com/users/luciopileggi/followers
following_url: https://api.github.com/users/luciopileggi/following{/other_user}
gists_url: https://api.github.com/users/luciopileggi/gists{/gist_id}
starred_url: https://api.github.com/users/luciopileggi/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/luciopileggi/subscriptions
organizations_url: https://api.github.com/users/luciopileggi/orgs
repos_url: https://api.github.com/users/luciopileggi/repos
events_url: https://api.github.com/users/luciopileggi/events{/privacy}
received_events_url: https://api.github.com/users/luciopileggi/received_events
type: User
user_view_type: public
site_admin: false
- login: lussoluca
id: 436670
node_id: MDQ6VXNlcjQzNjY3MA==
avatar_url: https://avatars.githubusercontent.com/u/436670?v=4
gravatar_id: ''
url: https://api.github.com/users/lussoluca
html_url: https://github.com/lussoluca
followers_url: https://api.github.com/users/lussoluca/followers
following_url: https://api.github.com/users/lussoluca/following{/other_user}
gists_url: https://api.github.com/users/lussoluca/gists{/gist_id}
starred_url: https://api.github.com/users/lussoluca/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/lussoluca/subscriptions
organizations_url: https://api.github.com/users/lussoluca/orgs
repos_url: https://api.github.com/users/lussoluca/repos
events_url: https://api.github.com/users/lussoluca/events{/privacy}
received_events_url: https://api.github.com/users/lussoluca/received_events
type: User
user_view_type: public
site_admin: false
- login: ma82
id: 25948
node_id: MDQ6VXNlcjI1OTQ4
avatar_url: https://avatars.githubusercontent.com/u/25948?v=4
gravatar_id: ''
url: https://api.github.com/users/ma82
html_url: https://github.com/ma82
followers_url: https://api.github.com/users/ma82/followers
following_url: https://api.github.com/users/ma82/following{/other_user}
gists_url: https://api.github.com/users/ma82/gists{/gist_id}
starred_url: https://api.github.com/users/ma82/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/ma82/subscriptions
organizations_url: https://api.github.com/users/ma82/orgs
repos_url: https://api.github.com/users/ma82/repos
events_url: https://api.github.com/users/ma82/events{/privacy}
received_events_url: https://api.github.com/users/ma82/received_events
type: User
user_view_type: public
site_admin: false
- login: marcoalbarelli
id: 789508
node_id: MDQ6VXNlcjc4OTUwOA==
avatar_url: https://avatars.githubusercontent.com/u/789508?v=4
gravatar_id: ''
url: https://api.github.com/users/marcoalbarelli
html_url: https://github.com/marcoalbarelli
followers_url: https://api.github.com/users/marcoalbarelli/followers
following_url: https://api.github.com/users/marcoalbarelli/following{/other_user}
gists_url: https://api.github.com/users/marcoalbarelli/gists{/gist_id}
starred_url: https://api.github.com/users/marcoalbarelli/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/marcoalbarelli/subscriptions
organizations_url: https://api.github.com/users/marcoalbarelli/orgs
repos_url: https://api.github.com/users/marcoalbarelli/repos
events_url: https://api.github.com/users/marcoalbarelli/events{/privacy}
received_events_url: https://api.github.com/users/marcoalbarelli/received_events
type: User
user_view_type: public
site_admin: false
- login: MarcoGargano
id: 3099816
node_id: MDQ6VXNlcjMwOTk4MTY=
avatar_url: https://avatars.githubusercontent.com/u/3099816?v=4
gravatar_id: ''
url: https://api.github.com/users/MarcoGargano
html_url: https://github.com/MarcoGargano
followers_url: https://api.github.com/users/MarcoGargano/followers
following_url: https://api.github.com/users/MarcoGargano/following{/other_user}
gists_url: https://api.github.com/users/MarcoGargano/gists{/gist_id}
starred_url: https://api.github.com/users/MarcoGargano/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/MarcoGargano/subscriptions
organizations_url: https://api.github.com/users/MarcoGargano/orgs
repos_url: https://api.github.com/users/MarcoGargano/repos
events_url: https://api.github.com/users/MarcoGargano/events{/privacy}
received_events_url: https://api.github.com/users/MarcoGargano/received_events
type: User
user_view_type: public
site_admin: false
- login: MatteCarra
id: 11074527
node_id: MDQ6VXNlcjExMDc0NTI3
avatar_url: https://avatars.githubusercontent.com/u/11074527?v=4
gravatar_id: ''
url: https://api.github.com/users/MatteCarra
html_url: https://github.com/MatteCarra
followers_url: https://api.github.com/users/MatteCarra/followers
following_url: https://api.github.com/users/MatteCarra/following{/other_user}
gists_url: https://api.github.com/users/MatteCarra/gists{/gist_id}
starred_url: https://api.github.com/users/MatteCarra/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/MatteCarra/subscriptions
organizations_url: https://api.github.com/users/MatteCarra/orgs
repos_url: https://api.github.com/users/MatteCarra/repos
events_url: https://api.github.com/users/MatteCarra/events{/privacy}
received_events_url: https://api.github.com/users/MatteCarra/received_events
type: User
user_view_type: public
site_admin: false
- login: matteodesanti
id: 8171284
node_id: MDQ6VXNlcjgxNzEyODQ=
avatar_url: https://avatars.githubusercontent.com/u/8171284?v=4
gravatar_id: ''
url: https://api.github.com/users/matteodesanti
html_url: https://github.com/matteodesanti
followers_url: https://api.github.com/users/matteodesanti/followers
following_url: https://api.github.com/users/matteodesanti/following{/other_user}
gists_url: https://api.github.com/users/matteodesanti/gists{/gist_id}
starred_url: https://api.github.com/users/matteodesanti/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/matteodesanti/subscriptions
organizations_url: https://api.github.com/users/matteodesanti/orgs
repos_url: https://api.github.com/users/matteodesanti/repos
events_url: https://api.github.com/users/matteodesanti/events{/privacy}
received_events_url: https://api.github.com/users/matteodesanti/received_events
type: User
user_view_type: public
site_admin: false
- login: maurovitale
id: 4927957
node_id: MDQ6VXNlcjQ5Mjc5NTc=
avatar_url: https://avatars.githubusercontent.com/u/4927957?v=4
gravatar_id: ''
url: https://api.github.com/users/maurovitale
html_url: https://github.com/maurovitale
followers_url: https://api.github.com/users/maurovitale/followers
following_url: https://api.github.com/users/maurovitale/following{/other_user}
gists_url: https://api.github.com/users/maurovitale/gists{/gist_id}
starred_url: https://api.github.com/users/maurovitale/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/maurovitale/subscriptions
organizations_url: https://api.github.com/users/maurovitale/orgs
repos_url: https://api.github.com/users/maurovitale/repos
events_url: https://api.github.com/users/maurovitale/events{/privacy}
received_events_url: https://api.github.com/users/maurovitale/received_events
type: User
user_view_type: public
site_admin: false
- login: nzambello
id: 21101435
node_id: MDQ6VXNlcjIxMTAxNDM1
avatar_url: https://avatars.githubusercontent.com/u/21101435?v=4
gravatar_id: ''
url: https://api.github.com/users/nzambello
html_url: https://github.com/nzambello
followers_url: https://api.github.com/users/nzambello/followers
following_url: https://api.github.com/users/nzambello/following{/other_user}
gists_url: https://api.github.com/users/nzambello/gists{/gist_id}
starred_url: https://api.github.com/users/nzambello/starred{/owner}{/repo}
subscriptions_url: https://api.github.com/users/nzambello/subscriptions
organizations_url: https://api.github.com/users/nzambello/orgs
repos_url: https://api.github.com/users/nzambello/repos
events_url: https://api.github.com/users/nzambello/events{/privacy}
received_events_url: https://api.github.com/users/nzambello/received_events
type: User
user_view_type: public
site_admin: false
- login: paolo-de-rosa
id: 569002
node_id: MDQ6VXNlcjU2OTAwMg==
avatar_url: https://avatars.githubusercontent.com/u/569002?v=4
gravatar_id: ''
url: https://api.github.com/users/paolo-de-rosa
html_url: https://github.com/paolo-de-rosa
followers_url: https://api.github.com/users/paolo-de-rosa/followers
following_url: https://api.github.com/users/paolo-de-rosa/following{/other_user}
gists_url: https://api.github.com/users/paolo-de-rosa/gists{/gist_id}
starred_url: https://api.github.com/users/paolo-de-rosa/starred{/owner}{/repo}