-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
development-map.html
20177 lines (20124 loc) · 566 KB
/
development-map.html
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<title>SageMath - SageMath developers around the world
</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="search"
type="application/opensearchdescription+xml"
href="https://www.sagemath.org/res/sage-search.xml"
title="Search sagemath.org" />
<link href='res/sage.css' type="text/css" rel="stylesheet" />
<link rel="shortcut icon" href="pix/sageicon.png" type="image/x-icon" />
<link rel="mask-icon" href="pix/icon_only/sagemath_pinned_tab_icon.svg" color="blue" />
<script src="//code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src='res/sage.js' type="text/javascript"></script>
<link href='//fonts.googleapis.com/css?family=RobotoDraft:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en,fr,de,es' rel='stylesheet' type='text/css'>
<link href="https://mathstodon.xyz/@sagemath" rel="me" />
<meta property="og:title" content="SageMath Mathematical Software System - Sage"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://www.sagemath.org/"/>
<meta property="og:image" content="https://sagemath.org/pix/logo_sagemath+icon_oldstyle.png"/>
<meta property="og:site_name" content="SageMath Mathematical Software System"/>
<meta property="og:description" content="SageMath is a free and open-source mathematical software system."/>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB3YiQ---yL6-QfoW9heq4-VbrAQzerhhA" type="text/javascript"></script>
<script src="res/markerclusterer.js" type="text/javascript"></script>
<script src="res/devmap2.js" type="text/javascript"></script>
</head>
<body>
<div id="header" class="small">
<div id="header-logo">
<a href="index.html">
<img width="250" height="65" alt="SageMath Logo" class="round raised"
src="pix/logo_sagemath+icon_oldstyle.png" title="SageMath Mathematical Software" />
</a></div>
<div id="header-text"><form action="search.html" method="get">
<a href="https://github.com/sagemath/sage">GitHub</a>
·
<a href="https://wiki.sagemath.org/">Wiki</a>
·
<a href="https://ask.sagemath.org/">Questions?</a>
·
<a href="https://github.com/sponsors/sagemath" style="font-weight: bold;">
<span style="color:#ea4aaa">♥</span> Sponsor
</a>
·
<a href="https://opencollective.com/sage_math" style="font-weight: bold;">Donate</a>
</form>
Online:
<a href="https://cocalc.com/?utm_source=sagemath.org&utm_medium=top">CoCalc</a>
·
<a href="https://sagecell.sagemath.org/">SageCell</a>
or
<a href="https://doc.sagemath.org/html/en/installation/index.html">Install</a>,
<a href="https://github.com/sagemath/sage">Clone</a>
<br/>
<a href="https://www.facebook.com/pages/Sage-Math/26593144945">
<img alt="F" src="pix/facebook-favicon.ico" width="16" height="16" /></a>
<a href="https://twitter.com/sagemath">
<img alt="T" src="pix/twitter-favicon.ico" width="16" height="16"/></a>
<a href="https://mathstodon.xyz/@sagemath">
<img alt="T" src="pix/mastodon-favicon.ico" width="16" height="16"/></a></div>
</div>
<div id="sage-nav-buffer" style="display: none"></div>
<ul id="sage-nav"><li><a href="index.html">Home</a>
<ul>
<li><a href="search.html">Search</a></li>
<li><a href="development-ack.html">Acknowledgments</a></li>
<li><a href="https://wiki.sagemath.org/Workshops">SageMath Days</a></li>
</ul>
</li>
<li><a href="tour.html">Tour</a>
<ul>
<li><a href="tour.html">Overview</a></li>
<li><a href="library-why.html">Why Sage?</a></li>
<li class="section"><a href="tour-quickstart.html">Quickstart</a></li>
<li><a href="tour-graphics.html">Graphics</a></li>
<li><a href="tour-research.html">Research</a></li>
<li class="section"><a href="https://wiki.sagemath.org/interact/">Interactive Plots (wiki)</a></li>
<li><a href="https://doc.sagemath.org/html/en/a_tour_of_sage/">A Tour of SageMath</a></li>
</ul>
</li>
<li><a href="help.html">Help</a>
<ul>
<li><a href="https://doc.sagemath.org"><b>Online Documentation</b></a></li>
<li class="section"><a href="help.html">Support Resources</a></li>
<li><a href="help-groups.html">Mailing Lists</a></li>
<li><a href="https://ask.sagemath.org" class="ext">Ask a question</a></li>
<li><a href="https://sagemath.zulipchat.com/" class="ext">Chat on Zulip</a></li>
<li><a href="help-video.html">Videos</a></li>
<li class="section"><a href="https://doc.sagemath.org/html/en/tutorial/">Tutorial</a></li>
<li><a href="https://doc.sagemath.org/html/en/constructions/">Constructions</a></li>
<li><a href="https://doc.sagemath.org/html/en/reference/">Reference Manual</a></li>
</ul>
</li>
<li><a href="library.html">Library</a>
<ul>
<li><a href="library.html">Overview</a></li>
<li><a href="library-stories.html">Testimonials</a></li>
<li><a href="library-publications.html">Publications</a></li>
<li><a href="library-publications-combinat.html">Publications Combinat</a></li>
<li><a href="library-publications.html#books" >Books</a></li>
<li class="section"><a href="library-marketing.html">Marketing</a></li>
<li><a href="library-press.html">Press Kit</a></li>
<li class="section"><a href="calctut/index.html">Calculus Tutorial</a></li>
</ul>
</li>
<li><a href="https://doc.sagemath.org/html/en/installation/index.html">Download</a>
<ul>
<li><a href="https://doc.sagemath.org/html/en/installation/index.html">Install guide: What/how to download</a>
<li class="section"><a href="https://github.com/sagemath/sage">Clone from GitHub</a></li>
<li class="section"><a href="https://github.com/3-manifolds/Sage_macOS/releases" class="ext">macOS binaries (3-manifolds)</a></li>
<li><a href="https://doc.sagemath.org/html/en/installation/conda.html#sec-installation-conda">Linux/macOS binaries (conda-forge)</a></li>
<li><a href="https://docs.microsoft.com/en-us/windows/wsl/install">Windows: Use Windows Subsystem for Linux</a></li>
</ul>
</li>
<li><a href="development.html">Development</a>
<ul>
<li><a href="https://github.com/sagemath/sage/blob/develop/CONTRIBUTING.md" class="ext">Contributing to SageMath</a></li>
<li><a href="https://github.com/sagemath/sage" class="ext">GitHub repository</a></li>
<li><a href="development-groups.html">Mailing Lists</a></li>
<li><a href="development-map.html">Developer Map</a></li>
<li><a href="development-prize.html">Prize</a></li>
<li><a href="development-ack.html">Acknowledgment</a></li>
<li><a href="https://doc.sagemath.org/html/en/developer/" class="ext">Developer Guide</a></li>
</ul>
</li>
<li><a href="links.html">Links</a>
<ul>
<li><a href="https://github.com/sagemath/sage/wiki/Mathematical-Software-Landscape" class="ext">Math Software Landscape</a></li>
<li><a href="https://doc.sagemath.org/html/en/reference/spkg/" class="ext">SageMath Components</a></li>
<li class="section"><a href="https://sagecell.sagemath.org/" class="ext">SageMath Cell Server</a></li>
<li><a href="https://wiki.sagemath.org/">SageMath Wiki</a></li>
<li><a href="https://groups.google.com/forum/#!forum/sage-devel">Report a bug</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</li></ul>
<h1>SageMath developers around the world</h1>
<div class="narrow">
See also:
<ul>
<li><a href="changelogs/">Changelogs, listing developers' contributions</a>
<li>Developers' contributions according to GitHub: <a href="https://github.com/sagemath/sage/graphs/contributors">all time</a>
</ul>
</div>
<div class="padding center narrow">
This map shows many contributors of the SageMath project from all around the world.<br/>
</div>
<div class="mapzoom" id="mapzoom">
Map Zoom:
<a href="javascript:;" onclick="zoomTo("ALL");">Earth</a> -
<a href="javascript:;" onclick="zoomTo("USA");">USA</a>
(<a href="javascript:;" onclick="zoomTo("UW");">UW</a>,
<a href="javascript:;" onclick="zoomTo("USAW");">West</a>,
<a href="javascript:;" onclick="zoomTo("USAE");">East</a>) -
<a href="javascript:;" onclick="zoomTo("Europe");">Europe</a> -
<a href="javascript:;" onclick="zoomTo("Africa");">Africa</a> -
<a href="javascript:;" onclick="zoomTo("Asia");">Asia</a> -
<a href="javascript:;" onclick="zoomTo("SAM");">S. America</a> -
<a href="javascript:;" onclick="zoomTo("Australia");">Australia</a>
</div>
<div class="center" id="devmap">
<noscript>
<div class="center large narrow">
Sorry, here would be an interactive map, but it seems that you have disabled Java-Script. Please
enable it and reload!
</div>
</noscript>
</div>
<div id="devcloudp">
<div id="devcloud"></div>
</div>
<table class="devlist">
<colgroup>
<col width="25%"/>
<col width="25%"/>
<col width="25%"/>
<col width="25%"/>
</colgroup>
<thead>
<tr>
<th>Name</th>
<th>Work/Affiliation</th>
<th>Location</th>
<th>Description</th>
</tr>
</thead>
<tbody id="devlist">
<tr>
<td class="name">
<a href="http://web.mit.edu/tabbott/www/">Tim Abbott</a>
</td>
<td>Zulip</td>
<td>San Francisco, CA, USA</td>
<td class="description">
<span>Contributions to Sage 2.x, 3.x, 4.x</span>
<br/>
<span>Full debianization of Sage</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=timabbott" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=timabbott" class="github">commits (github: timabbott)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Guillermo Aboumrad</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 9.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">
<a href="http://wiki.sagemath.org/MichaelAbshoff">Michael Abshoff</a>
</td>
<td>Universität Dortmund</td>
<td>Dortmund, Germany</td>
<td class="description">
<span>Contributions to Sage 2.x, 3.x, 4.x, 6.x</span>
<br/>
<span>contributed to release management</span>
<br/>
<span>work on build system for Windows, OS X, and Linux</span>
<br/>
<span>OS X installer</span>
<br/>
<span>tons of general advice</span>
<br/>
<span>valgrind support</span>
<br/>
<span>Solaris and Linux PPC port</span>
<br/>
<span>2008 Spies SageMath Development Prize</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-mabshoff" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-mabshoff" class="github">commits (github: sagetrac-mabshoff)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Guy Achard</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 4.x, 5.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">David Ackerman</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 4.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/lennartack">Lennart Ackermans</a>
</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 7.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=lennartack" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=lennartack" class="github">commits (github: lennartack)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Karim Van Aelst</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 8.x, 9.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">Divya Aggarwal</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 9.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">
<a href="https://github.com/ChamanAgrawal/">Chaman Agrawal</a>
</td>
<td/>
<td>Indian Institute of Technology, Kanpur, India</td>
<td class="description">
<span>Contributions to Sage 8.x, 9.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=ChamanAgrawal" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=ChamanAgrawal" class="github">commits (github: ChamanAgrawal)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://durgeshra.github.io/">Durgesh Agrawal</a>
</td>
<td/>
<td>Indian Institute of Technology, Kanpur, India</td>
<td class="description">
<span>Contributions to Sage 8.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=durgeshra" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=durgeshra" class="github">commits (github: durgeshra)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Ashutosh Ahelleya</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 7.x, 8.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-aashu12" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-aashu12" class="github">commits (github: sagetrac-aashu12)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Chwas Ahmed</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 6.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">Akshay Ajagekar</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 7.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-ajagekar-akshay" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-ajagekar-akshay" class="github">commits (github: sagetrac-ajagekar-akshay)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Antti Ajanki</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 2.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">Mark V. Albert</td>
<td/>
<td>Loyola University Chicago</td>
<td class="description">
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-markvalbert" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-markvalbert" class="github">commits (github: sagetrac-markvalbert)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://malb.io">Martin Albrecht</a>
</td>
<td>Chair of Information Security, Information Security Group, Royal Holloway, University of London</td>
<td>London, UK</td>
<td class="description">
<span>Contributions to Sage 2.x, 3.x, 4.x, 5.x, 6.x, 7.x, 8.x, 9.x, 10.x</span>
<br/>
<span>Euclidean lattices (FPLLL, FPyLLL, discrete Gaussians), sage.crypto.mq</span>
<br/>
<span>commutative algebra (Singular interface, libSingular, PolyBoRi)</span>
<br/>
<span>low-level arithmetic</span>
<br/>
<span>dense linear algebra over finite fields</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=malb" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=malb" class="github">commits (github: malb)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Noud Aldenhoven</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 5.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-noud" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-noud" class="github">commits (github: sagetrac-noud)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/maxale">Max Alekseyev</a>
</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 10.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=maxale" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=maxale" class="github">commits (github: maxale)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/ncalexan">Nick Alexander</a>
</td>
<td>UC Irvine graduate student</td>
<td>Irvine, CA 92697, USA</td>
<td class="description">
<span>Contributions to Sage 2.x, 3.x, 4.x, 5.x, 8.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=ncalexan" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=ncalexan" class="github">commits (github: ncalexan)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/ralfarogit">Ricardo Alfaro</a>
</td>
<td/>
<td>University of Michigan-Flint, Flint, Michigan, USA</td>
<td class="description">
<span>Contributions to Sage 7.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=ralfarogit" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=ralfarogit" class="github">commits (github: ralfarogit)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Martin Allen</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 4.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">Bill Allombert</td>
<td/>
<td>Bordeaux, France</td>
<td class="description">
<span>Contributions to Sage 2.x, 9.x</span>
<br/>
<span>help with PARI and GP2C integration</span>
<br/>
</td>
</tr>
<tr>
<td class="name">
<a href="http://www.joshalman.com/">Josh Alman</a>
</td>
<td/>
<td>MIT</td>
<td class="description">
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-jalman" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-jalman" class="github">commits (github: sagetrac-jalman)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="http://personales.unican.es/taberalf/">Luis Felipe Tabera Alonso</a>
</td>
<td>Universidad de Cantabria</td>
<td>Santander, Spain</td>
<td class="description">
<span>Contributions to Sage 4.x, 5.x, 6.x, 7.x, 8.x, 9.x</span>
<br/>
<span>algebra</span>
<br/>
<span>basic arithmetic</span>
<br/>
<span>number fields</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=lftabera" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=lftabera" class="github">commits (github: lftabera)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Alejandra Alvarado</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 8.x, 9.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-aalvarado2" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-aalvarado2" class="github">commits (github: sagetrac-aalvarado2)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/Saher-Amasha">Saher Amasha</a>
</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 9.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=Saher-Amasha" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=Saher-Amasha" class="github">commits (github: Saher-Amasha)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Durand Amaury</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 9.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">Amitabh Anand</td>
<td/>
<td/>
<td class="description">
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-aanand" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-aanand" class="github">commits (github: sagetrac-aanand)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Ethan Van Andel</td>
<td>Calvin College, MI, USA</td>
<td>3201 Burton Street, Southeast Grand Rapids, MI 49546, USA</td>
<td class="description">
<span>Contributions to Sage 4.x, 5.x</span>
<br/>
<span>calculus</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-evanandel" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-evanandel" class="github">commits (github: sagetrac-evanandel)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/pcpa">Paulo César Pereira de Andrade</a>
</td>
<td>Mandriva Linux</td>
<td>Curitiba, Brazil</td>
<td class="description">
<span>Contributions to Sage 4.x, 5.x, 6.x</span>
<br/>
<span>packages</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=pcpa" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=pcpa" class="github">commits (github: pcpa)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/gvol">Ivan Andrus</a>
</td>
<td>Adobe Systems Inc.</td>
<td>Lehi, Utah, USA</td>
<td class="description">
<span>Contributions to Sage 3.x, 4.x, 5.x, 6.x, 7.x, 8.x</span>
<br/>
<span>OS X app</span>
<br/>
<span>iPhone app</span>
<br/>
<span>sage-mode for Emacs</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=gvol" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=gvol" class="github">commits (github: gvol)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Tommy Angelo</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 8.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">
<a href="http://www.uam.es/personal_pdi/ciencias/pangulo/">Pablo Angulo</a>
</td>
<td>Professor, Department of Mathematics, Universidad Autónoma de Madrid</td>
<td>Madrid, Spain</td>
<td class="description">
<span>Contributions to Sage 4.x, 5.x, 7.x</span>
<br/>
<span>calculus</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-pang" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-pang" class="github">commits (github: sagetrac-pang)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Samuele Anni</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 5.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-sanni85" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-sanni85" class="github">commits (github: sagetrac-sanni85)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/antieau">Benjamin Antieau</a>
</td>
<td/>
<td>Northwestern University</td>
<td class="description">
<span>Contributions to Sage 4.x</span>
<br/>
<span>bug fixes</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=antieau" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=antieau" class="github">commits (github: antieau)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/a-andre">André Apitzsch</a>
</td>
<td>Otto-von-Guericke-Universität Magdeburg</td>
<td>Magdeburg, Germany</td>
<td class="description">
<span>Contributions to Sage 4.x, 5.x, 6.x, 7.x, 8.x, 9.x</span>
<br/>
<span>commutative algebra</span>
<br/>
<span>documentation</span>
<br/>
<span>number theory</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=a-andre" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=a-andre" class="github">commits (github: a-andre)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/jayant91089">Jayant Apte</a>
</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 6.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=jayant91089" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=jayant91089" class="github">commits (github: jayant91089)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Luiz Aquino</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 5.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-LuizAquino" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-LuizAquino" class="github">commits (github: sagetrac-LuizAquino)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Maite Aranes</td>
<td>graduate student, Warwick Mathematics Institute, University of Warwick</td>
<td>Gibbet Hill Rd, Coventry CV4 7AL, UK</td>
<td class="description">
<span>Contributions to Sage 3.x, 4.x</span>
<br/>
<span>number field ideal utilities</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-mtaranes" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-mtaranes" class="github">commits (github: sagetrac-mtaranes)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Alejandro Argaez</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 5.x, 6.x</span>
<br/>
</td>
</tr>
<tr>
<td class="name">Oscar Gerardo Lazo Arjona</td>
<td>Student, Universidad Autónoma de Yucatán</td>
<td>Universidad Autónoma de Yucatán, Yucatán, México</td>
<td class="description">
<span>Contributions to Sage 4.x, 6.x</span>
<br/>
<span>3-D plotting</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-olazo" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-olazo" class="github">commits (github: sagetrac-olazo)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://riemann.unizar.es/~artal">Enrique Artal</a>
</td>
<td>Professor, IUMA, Universidad de Zaragoza</td>
<td>Zaragoza, Spain</td>
<td class="description">
<span>Contributions to Sage 8.x, 9.x, 10.x</span>
<br/>
<span>topology, algebraic geometry, singularities</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=enriqueartal" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=enriqueartal" class="github">commits (github: enriqueartal)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Vishal Arul</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 9.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-varul" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-varul" class="github">commits (github: sagetrac-varul)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Dario Asprone</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 8.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-Vaush" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-Vaush" class="github">commits (github: sagetrac-Vaush)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://www.github.com/assaferan">Eran Assaf</a>
</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 8.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=assaferan" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=assaferan" class="github">commits (github: assaferan)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="http://pages.saclay.inria.fr/daniel.augot/index-eng.html">Daniel Augot</a>
</td>
<td/>
<td>INRIA, Palaiseau, Ile-de-France, France</td>
<td class="description">
<span>Contributions to Sage 7.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-danielaugot" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-danielaugot" class="github">commits (github: sagetrac-danielaugot)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Shaun Ault</td>
<td/>
<td>Fordham</td>
<td class="description">
<span>Contributions to Sage 5.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-sault" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-sault" class="github">commits (github: sagetrac-sault)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="https://davidayotte.github.io">David Ayotte</a>
</td>
<td>Concordia University</td>
<td>Montreal, Canada</td>
<td class="description">
<span>Contributions to Sage 8.x, 9.x, 10.x</span>
<br/>
<span>Quasimodular forms</span>
<br/>
<span>ring of modular forms</span>
<br/>
<span>bug fixes</span>
<br/>
<span>tickets reviews</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=DavidAyotte" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=DavidAyotte" class="github">commits (github: DavidAyotte)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="http://www.math.iisc.ernet.in/~arvind">Arvind Ayyer</a>
</td>
<td/>
<td>Indian Institute of Science, Bangalore, India</td>
<td class="description">
<span>Contributions to Sage 6.x, 10.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=ayyer" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=ayyer" class="github">commits (github: ayyer)</a>
</span>
</td>
</tr>
<tr>
<td class="name">
<a href="http://azi.dev.si">Jernej Azarija</a>
</td>
<td/>
<td>University of Ljubljana</td>
<td class="description">
<span>Contributions to Sage 2.x, 5.x, 6.x, 7.x, 8.x, 9.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-azi" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-azi" class="github">commits (github: sagetrac-azi)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Angelica Babei</td>
<td/>
<td>Dartmouth College</td>
<td class="description">
<span>Contributions to Sage 8.x</span>
<br/>
<span>
<a href="https://github.com/sagemath/sage/issues?q=sagetrac-ababei" class="github">issues</a>
,
<a href="https://github.com/sagemath/sage/commits?author=sagetrac-ababei" class="github">commits (github: sagetrac-ababei)</a>
</span>
</td>
</tr>
<tr>
<td class="name">Brent Baccala</td>
<td/>
<td/>
<td class="description">
<span>Contributions to Sage 8.x, 9.x</span>
<br/>
</td>
</tr>
<tr>