-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
1087 lines (1061 loc) · 39 KB
/
Copy pathabout.html
File metadata and controls
1087 lines (1061 loc) · 39 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>RocketPy Team - About Us</title>
<meta
name="description"
content="The story and the people behind RocketPy - the open-source community of aerospace engineers, students and developers who built the world's leading rocket trajectory simulator."
/>
<meta property="og:title" content="RocketPy Team - About Us" />
<meta
property="og:description"
content="The story and the people behind the RocketPy rocket trajectory simulator."
/>
<meta property="og:type" content="website" />
<meta property="og:url" content="https://rocketpy.org/about.html" />
<meta
property="og:image"
content="https://rocketpy.org/images/og-social-preview.png"
/>
<meta property="og:image:width" content="1200" />
<meta property="og:image:height" content="630" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="RocketPy Team - About Us" />
<meta
name="twitter:description"
content="The story and the people behind the RocketPy rocket trajectory simulator."
/>
<meta
name="twitter:image"
content="https://rocketpy.org/images/og-social-preview.png"
/>
<link rel="icon" href="./images/favicon.ico" type="image/x-icon" />
<link rel="manifest" href="./manifest.json" />
<meta name="theme-color" content="#030b28" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="dns-prefetch" href="https://docs.rocketpy.org" />
<link rel="dns-prefetch" href="https://github.com" />
<link
href="https://fonts.googleapis.com/css2?family=Ruda:wght@400;700&family=Rubik:wght@400;500;700&family=Open+Sans:wght@300;400;500;700&display=swap"
rel="stylesheet"
/>
<link href="./css/main.css" rel="stylesheet" />
<link href="./css/nav.css" rel="stylesheet" />
<link href="./css/footer.css" rel="stylesheet" />
<link href="./css/about.css" rel="stylesheet" />
<link href="./css/font-awesome/css/fontawesome.min.css" rel="stylesheet" />
<link href="./css/font-awesome/css/solid.min.css" rel="stylesheet" />
<link href="./css/font-awesome/css/brands.min.css" rel="stylesheet" />
</head>
<body>
<a href="#main" class="skip-link">Skip to content</a>
<div class="page-wrapper">
<header class="site-header" id="top">
<a class="brand-link" href="./index.html" aria-label="RocketPy home">
<span class="brand-logo"></span>
</a>
<nav class="nav-links" id="navLinks" aria-label="Primary">
<a class="nav-link" href="./index.html#features">Features</a>
<a class="nav-link" href="./index.html#showcase">Showcase</a>
<a class="nav-link" href="./index.html#ecosystem">Ecosystem</a>
<a
class="nav-link"
href="https://docs.rocketpy.org/en/latest/index.html"
>Docs</a
>
<a class="nav-link" href="./index.html#community">Community</a>
<a class="nav-link" href="./about.html" aria-current="page">About</a>
</nav>
<div class="nav-actions">
<a
class="star-badge"
href="https://github.com/RocketPy-Team/RocketPy"
aria-label="Star RocketPy on GitHub"
>
<i class="fa-brands fa-github" aria-hidden="true"></i>
<i class="fa-solid fa-star" aria-hidden="true"></i>
<span data-stat="stars">1,021</span>
</a>
<a
href="https://app.rocketpy.org/"
class="simulate-button nav-cta"
role="button"
>
<span class="simulate-icon"></span>
<span>Simulate</span>
</a>
<button
class="nav-toggle"
type="button"
aria-label="Toggle menu"
aria-expanded="false"
aria-controls="navLinks"
>
<i class="fa-solid fa-bars" aria-hidden="true"></i>
</button>
</div>
</header>
<main class="main-content" id="main">
<!-- ============================ HERO ============================ -->
<section class="about-hero panel-bg">
<p class="about-eyebrow">Since 2018 · Open Source</p>
<h1 class="about-title">The People Behind RocketPy</h1>
<p class="about-subtitle">
RocketPy was born inside a student rocketry team and grew into the
world's leading open-source rocket trajectory simulator. This page
is a permanent tribute to everyone who has helped build it —
the founders who started it and the global community of contributors
who keep it flying.
</p>
<div class="stat-row" id="statRow">
<div class="stat-item">
<span class="stat-num" id="statPeople">—</span>
<span class="stat-label">Contributors</span>
</div>
<div class="stat-item">
<span class="stat-num">2018</span>
<span class="stat-label">First commit</span>
</div>
<div class="stat-item">
<span class="stat-num">6-DOF</span>
<span class="stat-label">Flight simulation</span>
</div>
<div class="stat-item">
<span class="stat-num">v1.11+</span>
<span class="stat-label">Released & active</span>
</div>
</div>
</section>
<!-- ============================ STORY ============================ -->
<section class="about-section" id="story">
<h2 class="section-title">Our Story</h2>
<p class="section-lede">
More than six years of open development, condensed into a few
milestones.
</p>
<div class="story-prose">
<p>
RocketPy started as an internal tool at
<a
href="https://github.com/Projeto-Jupiter"
target="_blank"
rel="noopener"
>Projeto Jupiter</a
>, the student rocket design team at the University of São Paulo
(USP), created by <strong>Giovani Ceotto</strong> to simulate the
flight of the team's rockets with high fidelity. What began as a
way to answer “how high will it fly?” became a full
six-degrees-of-freedom trajectory simulator.
</p>
<p>
In 2021, the project was formalized in a peer-reviewed paper in
the <em>Journal of Aerospace Engineering</em>, and RocketPy
stepped out of a single team and into the global rocketry
community. Its results have been validated against real flight
data from teams such as the EPFL Rocket Team and the Notre Dame
Rocket Team.
</p>
<p>
Since then, dozens of students, engineers and open-source
contributors from around the world have shaped RocketPy —
through the milestone <strong>1.0</strong> release in 2023 and a
steady cadence of versions ever since. Everyone listed below is
part of that history, marked here for good.
</p>
</div>
<ol class="timeline" aria-label="RocketPy milestones">
<li class="tl-item">
<span class="tl-year">2018</span>
<div class="tl-body">
<h3>Moved to GitHub</h3>
<p>
Giovani Ceotto brings the simulator into version control at
Projeto Jupiter — the first public commit.
</p>
</div>
</li>
<li class="tl-item">
<span class="tl-year">2020</span>
<div class="tl-body">
<h3>First public release</h3>
<p>
RocketPy is packaged and released to the community (v0.9.5),
open for anyone to install and use.
</p>
</div>
</li>
<li class="tl-item">
<span class="tl-year">2021</span>
<div class="tl-body">
<h3>Published research</h3>
<p>
“RocketPy: Six Degree-of-Freedom Rocket Trajectory
Simulator” is published in the Journal of Aerospace
Engineering.
</p>
</div>
</li>
<li class="tl-item">
<span class="tl-year">2023</span>
<div class="tl-body">
<h3>Version 1.0</h3>
<p>
A matured, stable API and a fast-growing worldwide community
of contributors.
</p>
</div>
</li>
<li class="tl-item">
<span class="tl-year">Today</span>
<div class="tl-body">
<h3>Still climbing</h3>
<p>
Actively developed and maintained, powering student teams,
researchers and companies across the globe.
</p>
</div>
</li>
</ol>
</section>
<!-- ========================= FOUNDERS ========================= -->
<section class="about-section" id="founders">
<h2 class="section-title">Founders & Origins</h2>
<p class="section-lede">
The people who created RocketPy and set it on its path.
</p>
<div class="featured-grid" id="foundersGrid">
<!-- populated by JS -->
</div>
</section>
<!-- ======================= CORE TEAM ======================= -->
<section class="about-section" id="core-team">
<h2 class="section-title">Core Team</h2>
<p class="section-lede">
The people who led the squads and stewarded RocketPy over the years
— from the library, tests and APIs to the front-end,
competitions and community around the world.
</p>
<div class="featured-grid" id="coreGrid">
<!-- populated by JS -->
</div>
</section>
<!-- ====================== GLOBAL / INSTITUTIONS ====================== -->
<section class="about-section" id="global">
<h2 class="section-title">A Global Project</h2>
<p class="section-lede">
RocketPy grew far beyond its home team. Its contributors have
written code from universities and institutions across the world.
</p>
<div class="inst-countries">
<span class="inst-country-stat"><strong>7+</strong> countries</span>
<span class="inst-dot">·</span>
<span class="inst-country-stat"><strong>3</strong> continents</span>
<span class="inst-dot">·</span>
<span class="inst-country-stat">one open-source community</span>
</div>
<ul class="inst-grid">
<li class="inst-card">
<span class="inst-name">University of São Paulo</span>
<span class="inst-place"
>Brazil · home of Projeto Jupiter</span
>
</li>
<li class="inst-card">
<span class="inst-name">Instituto Superior Técnico</span>
<span class="inst-place"
>University of Lisbon · Portugal</span
>
</li>
<li class="inst-card">
<span class="inst-name">UC Berkeley</span>
<span class="inst-place">United States</span>
</li>
<li class="inst-card">
<span class="inst-name">Georgia Tech</span>
<span class="inst-place">United States</span>
</li>
<li class="inst-card">
<span class="inst-name">Colorado School of Mines</span>
<span class="inst-place">United States</span>
</li>
<li class="inst-card">
<span class="inst-name">IMT Atlantique</span>
<span class="inst-place">France</span>
</li>
<li class="inst-card">
<span class="inst-name">University of the Basque Country</span>
<span class="inst-place">Spain</span>
</li>
<li class="inst-card">
<span class="inst-name">National Tsing Hua University</span>
<span class="inst-place">Taiwan</span>
</li>
<li class="inst-card">
<span class="inst-name">Victoria University of Wellington</span>
<span class="inst-place">New Zealand</span>
</li>
</ul>
<p class="contrib-note">
Institutions identified from the e-mail domains in RocketPy's public
commit history — a partial, ever-growing snapshot of a truly
global community.
</p>
</section>
<!-- ======================= CONTRIBUTORS ======================= -->
<section class="about-section" id="contributors">
<h2 class="section-title">Hall of Contributors</h2>
<p class="section-lede">
Every hand that has shaped RocketPy, drawn from the project's full
commit history. Thank you, all of you.
</p>
<div class="contrib-grid" id="contribGrid">
<!-- populated by JS -->
</div>
<p class="contrib-note">
This list is generated from RocketPy's public Git history. Missing
or want to fix your name?
<a
href="https://github.com/RocketPy-Team/RocketPy"
target="_blank"
rel="noopener"
>Open a PR</a
>
— contributions of every size are counted here forever.
</p>
</section>
<!-- ==================== INSTITUTIONAL / CTA ==================== -->
<section class="about-section about-cta panel-bg" id="join">
<h2 class="section-title">Built by a community</h2>
<p class="section-lede">
RocketPy is free and open source, born at
<a
href="https://github.com/Projeto-Jupiter"
target="_blank"
rel="noopener"
>Projeto Jupiter</a
>
(USP) and sustained by contributors worldwide. There is a place for
you in the next chapter of this story.
</p>
<div class="cta-buttons">
<a
class="cta-btn cta-primary"
href="https://github.com/RocketPy-Team/RocketPy"
target="_blank"
rel="noopener"
><i class="fa-brands fa-github"></i> Contribute on GitHub</a
>
<a
class="cta-btn cta-secondary"
href="https://discord.gg/b6xYnNh"
target="_blank"
rel="noopener"
><i class="fa-brands fa-discord"></i> Join our Discord</a
>
</div>
</section>
</main>
</div>
<footer class="footer-distributed" id="footer">
<div class="footer-left">
<div class="footer-logo"></div>
<p class="footer-company-name">RocketPy Team © 2026</p>
</div>
<div class="footer-center">
<div>
<i class="fa fa-map-marker icon-max-width"></i>
<p>
<a href="https://maps.app.goo.gl/qFAGgBq1LqceRkjj6" target="_blank"
>São Paulo, Brazil</a
>
</p>
</div>
<div>
<i class="fa-brands fa-discord icon-max-width"></i>
<p>
<a href="https://discord.com/invite/b6xYnNh">
Join us on discord!
</a>
</p>
</div>
</div>
<div class="footer-right">
<p class="footer-company-about">
<span>About us</span>
RocketPy Team is responsible for maintaining and developing the
RocketPy project, an open-source rocket trajectory simulator.
</p>
<div class="footer-icons">
<a href="https://www.instagram.com/rocketpyteam"
><i class="fa-brands fa-instagram"></i></a
><a href="https://www.linkedin.com/company/rocketpy"
><i class="fa-brands fa-linkedin"></i
></a>
<a href="https://github.com/RocketPy-Team/RocketPy"
><i class="fa-brands fa-github"></i
></a>
<a href="https://www.youtube.com/@rocketpyteam5828"
><i class="fa-brands fa-youtube"></i>
</a>
</div>
</div>
</footer>
<script>
const TEAM = {
featured: [
{
tier: "founder",
role: "Creator",
bio: "Started RocketPy at Projeto Jupiter and designed its 6-DOF simulation core. Lead author of the founding paper in the Journal of Aerospace Engineering.",
linkedin: "",
commits: 646,
name: "Giovani Hidalgo Ceotto",
handle: "giovaniceotto",
avatar: "https://github.com/giovaniceotto.png?size=160",
},
{
tier: "founder",
role: "Founding Contributor",
bio: "One of the very first contributors to RocketPy and co-author of the founding paper.",
linkedin: "",
commits: 3,
name: "Rodrigo Schmitt",
handle: "rodrigo-schmitt",
avatar: "https://github.com/rodrigo-schmitt.png?size=160",
},
{
tier: "founder",
role: "Maintainer & Coordinator",
bio: "Joined to lead the project's expansion and long-term sustainability. Co-author of the founding paper and the project's most active contributor.",
linkedin: "",
commits: 1722,
name: "Guilherme Fernandes Alves",
handle: "Gui-FernandesBR",
avatar: "https://github.com/Gui-FernandesBR.png?size=160",
},
{
tier: "founder",
role: "Founding Contributor",
bio: "Joined early to help expand RocketPy and ensure its sustainability. Co-author of the founding paper.",
linkedin: "",
commits: 72,
name: "Lucas Azevedo Pezente",
handle: "lucasfourier",
avatar: "https://github.com/lucasfourier.png?size=160",
},
{
tier: "founder",
role: "Academic Advisor",
bio: "Professor at the University of São Paulo (USP) and academic advisor; co-author of the founding paper.",
linkedin: "",
commits: 0,
name: "Bruno S. Carmo",
handle: "",
avatar: "",
},
{
tier: "core",
role: "Core Maintainer · Library",
bio: "Generation zero — with the project almost since the very beginning, and one of its most active contributors across the library's core, tests and simulation modules.",
linkedin: "mateus-stano-junqueira-41462119a",
commits: 1251,
name: "Mateus Stano Junqueira",
handle: "MateusStano",
avatar: "https://github.com/MateusStano.png?size=160",
},
{
tier: "core",
role: "Core Maintainer · Library",
bio: "Joined in 2022 and has been a driving force ever since, stewarding the library's architecture, numerics and code quality.",
linkedin: "pedro-bressan-03681124a",
commits: 463,
name: "Pedro Henrique Marinho Bressan",
handle: "phmbressan",
avatar: "https://github.com/phmbressan.png?size=160",
},
{
tier: "core",
role: "General Management Lead · Generation Zero",
bio: "Generation zero and an ever-present partner. He spent two years supporting the coordination and then led the general management team for two more, helping with nearly everything along the way.",
linkedin: "adriano-augusto-antongiovanni",
commits: 8,
name: "Adriano Augusto Antongiovanni",
handle: "adrianoantongiovanni",
avatar: "https://github.com/adrianoantongiovanni.png?size=160",
},
{
tier: "core",
role: "EuRoC 2022 · Creator of RocketSerializer",
bio: "Went to RocketPy's first EuRoC in 2022 and created RocketSerializer. A seasoned programmer whose experience helped the team enormously.",
linkedin: "patricksampaioperfil",
commits: 81,
name: "Patrick Sampaio",
handle: "PatrickSampaioUSP",
avatar: "https://github.com/PatrickSampaioUSP.png?size=160",
},
{
tier: "core",
role: "Creator of the Infinity API",
bio: "Joined in 2023 and built the Infinity API — RocketPy's REST API — almost single-handedly. Also strengthened the library by documenting and optimizing its test suite.",
linkedin: "gabriel-barberini-728778b9",
commits: 18,
name: "Gabriel Barberini",
handle: "GabrielBarberini",
avatar: "https://github.com/GabrielBarberini.png?size=160",
},
{
tier: "core",
role: "Library Developer",
bio: "Joined the team in 2024, bringing valuable additions to the core library.",
linkedin: "lucas-de-oliveira-prates-ab3ab7192",
commits: 79,
name: "Lucas de Oliveira Prates",
handle: "Lucas-Prates",
avatar: "https://github.com/Lucas-Prates.png?size=160",
},
{
tier: "core",
role: "LASC 2025 · Aerospace Engineer",
bio: "Contributed to RocketSerializer and brought new motor ideas, and took RocketPy to LASC in 2025 with a group of teammates. The team's aerospace engineer.",
linkedin: "juliomachad0",
commits: 12,
name: "Julio Machado",
handle: "juliomachad0",
avatar: "https://github.com/juliomachad0.png?size=160",
},
{
tier: "core",
role: "Front-End Lead · Generation Zero",
bio: "Generation zero. The first front-end manager after Rodrigo, he stayed with the team for years and was a constant source of support.",
linkedin: "luizmota1999",
commits: 0,
name: "Luiz Mota",
handle: "",
avatar: "",
},
{
tier: "core",
role: "Front-End Lead",
bio: "Took on the challenge of building RocketPy's graphical interface. Joined through our hackathon and went on to lead the front-end (web development) squad.",
linkedin: "aasitvora",
commits: 0,
name: "Aasit Vora",
handle: "aasitvora99",
avatar: "https://github.com/aasitvora99.png?size=160",
},
{
tier: "core",
role: "Outreach · Generation Zero",
bio: "Part of RocketPy's generation zero, coming from Projeto Jupiter. Drove outreach in the project's first year and supported the front-end team with early ideas.",
linkedin: "brenolr",
commits: 0,
name: "Breno Rocha",
handle: "",
avatar: "",
},
{
tier: "core",
role: "Public Relations & Outreach",
bio: "Was there for RocketPy's very first presentation at Python Brasil, and did great work on the public relations and outreach team.",
linkedin: "rafael-kneip",
commits: 0,
name: "Rafael Kneip",
handle: "",
avatar: "",
},
{
tier: "core",
role: "Social Media & Brand",
bio: "Joined in late 2023 and launched RocketPy's Instagram, supercharging our selection processes and spreading RocketPy's image around the world.",
linkedin: "samuelnascimentodemelosantos",
commits: 0,
name: "Samuel Nascimento",
handle: "",
avatar: "",
},
{
tier: "core",
role: "EuRoC 2023 · Operations",
bio: "Took RocketPy to EuRoC in 2023 and helped structure the competition's operations — a powerhouse of the team.",
linkedin: "brunosorban",
commits: 15,
name: "Bruno Sorban",
handle: "brunosorban",
avatar: "https://github.com/brunosorban.png?size=160",
},
{
tier: "core",
role: "RocketPy Europe Lead",
bio: "Joined in 2024 and became RocketPy's representative in Europe, leading the team at EuRoC for two consecutive years.",
linkedin: "lucasvigon",
commits: 13,
name: "Lucas Gonçalves",
handle: "LUCKIN13",
avatar: "https://github.com/LUCKIN13.png?size=160",
},
{
tier: "core",
role: "Hackathon 2023 Winner",
bio: "Winner of our 2023 hackathon; she went on to represent RocketPy at EuRoC 2024 and LASC 2025.",
linkedin: "lauradoprado",
commits: 0,
name: "Laura do Prado",
handle: "",
avatar: "",
},
],
gallery: [
{
name: "Franz Masatoshi Yuri",
handle: "FranzYuri",
avatar: "https://github.com/FranzYuri.png?size=160",
commits: 91,
},
{
name: "Arthur Wang",
handle: "ArthurJWH",
avatar: "https://github.com/ArthurJWH.png?size=160",
commits: 54,
},
{
name: "Gautam Sai",
handle: "gautamsaiy",
avatar: "https://github.com/gautamsaiy.png?size=160",
commits: 26,
},
{
name: "Oscar M. Prada",
handle: "ompro07",
avatar: "https://github.com/ompro07.png?size=160",
commits: 23,
},
{
name: "Leonardo Rosa",
handle: "leogrosa",
avatar: "https://github.com/leogrosa.png?size=160",
commits: 18,
},
{
name: "João Gribel",
handle: "MrGribel",
avatar: "https://github.com/MrGribel.png?size=160",
commits: 18,
},
{
name: "Ishan Dubey",
handle: "aZira371",
avatar: "https://github.com/aZira371.png?size=160",
commits: 16,
},
{
name: "Sofia Suesdek",
handle: "Sofia-ME",
avatar: "https://github.com/Sofia-ME.png?size=160",
commits: 15,
},
{
name: "Lucas Kierulff Balabram",
handle: "Lucas-KB",
avatar: "https://github.com/Lucas-KB.png?size=160",
commits: 15,
},
{
name: "Mohammed S. Al-Mahrouqi",
handle: "Malmahrouqi3",
avatar: "https://github.com/Malmahrouqi3.png?size=160",
commits: 15,
},
{
name: "Curtis Hu",
handle: "curtisjhu",
avatar: "https://github.com/curtisjhu.png?size=160",
commits: 12,
},
{
name: "Kamel Lounis",
handle: "kalounis",
avatar: "https://github.com/kalounis.png?size=160",
commits: 10,
},
{
name: "Patrick Bales",
handle: "",
avatar: "",
commits: 8,
},
{
name: "William Armstrong",
handle: "",
avatar: "",
commits: 6,
},
{
name: "Diego Grünberger",
handle: "thediego21",
avatar: "https://github.com/thediego21.png?size=160",
commits: 6,
},
{
name: "Kevin Alcañiz",
handle: "",
avatar: "",
commits: 5,
},
{
name: "Robert",
handle: "",
avatar: "",
commits: 5,
},
{
name: "Bruno Sorban",
handle: "",
avatar: "",
commits: 4,
},
{
name: "Montadhar Ettaieb",
handle: "Monta120",
avatar: "https://github.com/Monta120.png?size=160",
commits: 4,
},
{
name: "Calebe Teles",
handle: "CabGT",
avatar: "https://github.com/CabGT.png?size=160",
commits: 4,
},
{
name: "Andre Geldenhuis",
handle: "",
avatar: "",
commits: 3,
},
{
name: "Kaleb Ramos W Santos",
handle: "",
avatar: "",
commits: 3,
},
{
name: "Matanski",
handle: "Matanski",
avatar: "https://github.com/Matanski.png?size=160",
commits: 3,
},
{
name: "ZuoRen Chen",
handle: "zuorenchen",
avatar: "https://github.com/zuorenchen.png?size=160",
commits: 3,
},
{
name: "Andre Geldenhuis",
handle: "andre-geldenhuis",
avatar: "https://github.com/andre-geldenhuis.png?size=160",
commits: 2,
},
{
name: "Bizo883",
handle: "",
avatar: "",
commits: 2,
},
{
name: "Caio Souza",
handle: "caioessouza",
avatar: "https://github.com/caioessouza.png?size=160",
commits: 2,
},
{
name: "Khushal Kottaru",
handle: "",
avatar: "",
commits: 2,
},
{
name: "Marchma0",
handle: "marchma0",
avatar: "https://github.com/marchma0.png?size=160",
commits: 2,
},
{
name: "Vinicius Carvalho Monnerat Bandeira",
handle: "viniciuscmb",
avatar: "https://github.com/viniciuscmb.png?size=160",
commits: 2,
},
{
name: "Yuri de Castro",
handle: "yuricastrodev",
avatar: "https://github.com/yuricastrodev.png?size=160",
commits: 2,
},
{
name: "clementm",
handle: "clementm",
avatar: "https://github.com/clementm.png?size=160",
commits: 2,
},
{
name: "dipesh2212",
handle: "",
avatar: "",
commits: 2,
},
{
name: "matheus-doretto",
handle: "matheus-doretto",
avatar: "https://github.com/matheus-doretto.png?size=160",
commits: 2,
},
{
name: "Niklas Freund",
handle: "nalquas",
avatar: "https://github.com/nalquas.png?size=160",
commits: 2,
},
{
name: "Advait Chandorkar",
handle: "advaitchandorkar07",
avatar: "https://github.com/advaitchandorkar07.png?size=160",
commits: 1,
},
{
name: "AsierLehu",
handle: "",
avatar: "",
commits: 1,
},
{
name: "Cameron Brooks",
handle: "",
avatar: "",
commits: 1,
},
{
name: "Eriel Cabrera",
handle: "erielc",
avatar: "https://github.com/erielc.png?size=160",
commits: 1,
},
{
name: "EvanM",
handle: "",
avatar: "",
commits: 1,
},
{
name: "Guilherme Lazzarini",
handle: "guilhermeasura",
avatar: "https://github.com/guilhermeasura.png?size=160",
commits: 1,
},
{
name: "Justin Smart",
handle: "",
avatar: "",
commits: 1,
},
{
name: "KrWanderley",
handle: "krwanderley",
avatar: "https://github.com/krwanderley.png?size=160",
commits: 1,
},
{
name: "Leonard",
handle: "l30-stack",
avatar: "https://github.com/l30-stack.png?size=160",
commits: 1,
},
{
name: "Morgan Thomas",
handle: "",
avatar: "",
commits: 1,
},
{
name: "RahulKrishna",
handle: "rahulkrishna145",
avatar: "https://github.com/rahulkrishna145.png?size=160",
commits: 1,
},
{
name: "Richik Sinha",
handle: "rickisterr",
avatar: "https://github.com/rickisterr.png?size=160",
commits: 1,
},
{
name: "Styris",
handle: "",
avatar: "",
commits: 1,
},
{
name: "Tiberiu Sabău",
handle: "tibisabau",
avatar: "https://github.com/tibisabau.png?size=160",
commits: 1,
},
{
name: "Xiaoyu TANG",
handle: "c8h10o2",
avatar: "https://github.com/c8h10o2.png?size=160",
commits: 1,
},
{
name: "Yogiraj Gutte",
handle: "yogirajgutte",
avatar: "https://github.com/yogirajgutte.png?size=160",
commits: 1,
},
{
name: "alessio26gas",
handle: "",
avatar: "",
commits: 1,
},
{
name: "ayoubdsp",
handle: "",
avatar: "",
commits: 1,
},
{
name: "cazzopardi",
handle: "",
avatar: "",
commits: 1,
},
{
name: "chasgior214",
handle: "chasgior214",
avatar: "https://github.com/chasgior214.png?size=160",
commits: 1,
},
{
name: "dyu056",
handle: "",
avatar: "",
commits: 1,
},
{
name: "hogatata",
handle: "hogatata",
avatar: "https://github.com/hogatata.png?size=160",
commits: 1,
},
{
name: "styris00",
handle: "styris00",
avatar: "https://github.com/styris00.png?size=160",
commits: 1,
},
{
name: "tbhakhri",
handle: "",
avatar: "",
commits: 1,
},
{
name: "秀吉",
handle: "thc1006",
avatar: "https://github.com/thc1006.png?size=160",
commits: 1,
},
],
};
function initials(name) {
return name
.split(/\s+/)
.filter(Boolean)
.map((n) => n[0])
.slice(0, 2)
.join("")
.toUpperCase();
}