-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
1125 lines (1119 loc) · 43 KB
/
index.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 lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8" />
<title>Aaron Lu</title>
<meta
name="description"
content="Aaron Lu is an aerospace engineer turned blockchain developer. This site is a professional site detailing previous experience and interesting projects."
/>
<meta name="author" content="" />
<link rel="icon" href="images/favicon.png" />
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link
href="https://fonts.googleapis.com/css?family=Raleway:400,300,600"
rel="stylesheet"
type="text/css"
/>
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="css/normalize.css" />
<link rel="stylesheet" href="css/skeleton.css" />
<link rel="stylesheet" href="css/custom.css" />
<!-- external things
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<section class="header">
<span class="print-flex-center">
<h1 style="margin: 0" id="name">Aaron Lu</h1>
<div class="contact">
<a href="https://aalu1418.github.io"
>Portfolio: aalu1418.github.io</a
>
<a href="https://www.linkedin.com/in/aalu1418"
>LinkedIn: @aalu1418</a
>
<a href="https://github.com/aalu1418/">GitHub: @aalu1418</a>
</div>
</span>
<div class="no-print" style="padding-top: 30vh" id="continue">
<a href="#continue">
<img
class="small-logo"
src="images/arrow.svg"
alt="continue-arrow"
/>
</a>
</div>
</section>
<section class="header-icons">
<div class="main-icons-header row">
<div class="four columns print-flex-center">
<img class="logo" src="images/paper-plane.svg" alt="airplane" />
<p class="logo-text">
From flight dynamics + control to distributed systems software
</p>
</div>
<div class="four columns print-flex-center">
<img class="logo" src="images/web-programming.svg" alt="code" />
<p class="logo-text">
Fascinated with learning and developing complex systems
</p>
</div>
<div class="four columns print-flex-center">
<img class="logo" src="images/create.svg" alt="create" />
<p class="logo-text">
Always learning and tinkering with projects to make life better
</p>
</div>
</div>
</section>
<div class="fade navbar no-print" id="stickyNav">
<div class="navbar_container">
<ul class="navbar-list">
<li class="navbar-item">
<a class="navbar-link" href="#about">About Me</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="#experience">Experience</a>
</li>
<li class="navbar-item navbar-edu">
<a class="navbar-link" href="#skills">Skills</a>
</li>
<li class="navbar-item">
<a class="navbar-link" id="more-dropdown">More</a>
<ul class="dropdown">
<li class="navbar-item more-edu">
<a class="navbar-link" href="#skills">Skills</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="#education">Education</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="#projects">Projects</a>
</li>
</ul>
</li>
<li class="navbar-item navbar-long">
<a class="navbar-link" href="#education">Education</a>
</li>
<li class="navbar-item navbar-long">
<a class="navbar-link" href="#projects">Projects</a>
</li>
</ul>
</div>
</div>
<div class="fade spaced nav_extra" id="about">
<h4>About Me</h4>
<!-- <h4 class="only-print">Objective</h4> -->
<div class="row content">
<div>
<p class="no-print">
Hello! My name is Aaron Lu and I am an aerospace engineer and
software developer with experience in control theory and
blockchain development.
</p>
<p class="no-print">
My fascination is with complex systems - understanding them,
developing them, and ultimately, improving them. Through my
studies and work experience, I realized that the foundation of
many complex systems is code - from control systems to websites,
everything involves code!
</p>
<p class="no-print">
In my spare time, I love being outdoors and working with my hands.
It can look like anything from hiking to ultimate frisbee to
cooking to random projects!
</p>
<!-- <p class="only-print">
Hi! My name is Aaron Lu and I am an aerospace engineer turned programmer/web developer (and blockchain developer!).
My fascination is with complex systems - from control systems to blockchain. My goal is to understand, develop, and, ultimately, improve them.
</p> -->
<p class="only-print">
From aerospace control systems to blockchain protocol
integrations, complex systems has always been a fascination of
mine. There is nothing quite like the adventure of exploring new
areas and learning how it works.
</p>
</div>
<div
class="five columns vert-align no-print"
style="width: 300px"
id="interests"
>
<img
src="images/headshot.jpg"
alt="headshot-photo"
class="image-headshot round"
/>
<div class="row" id="interest-icons">
<div>
<img
class="small-logo"
src="images/michigan.svg"
alt="michigan"
/>
</div>
<div>
<img
class="small-logo"
src="images/mountains.svg"
alt="hiking"
/>
</div>
<div>
<img
class="small-logo"
src="images/big-frisbee.svg"
alt="frisbee"
/>
</div>
<div>
<img
class="small-logo"
src="images/cooking.svg"
alt="cooking"
/>
</div>
<div>
<img class="small-logo" src="images/idea.svg" alt="ideas" />
</div>
</div>
<p id="michigan">
<b>Michigan:</b> Just a Michigander exploring the world.
</p>
<p id="hiking">
<b>Hiking:</b> There's something so peaceful and satisfying to sit
at the peak of a trail.
</p>
<p id="frisbee">
<b>Ultimate Frisbee:</b> My favorite urban activity - I'm always
up for tossing a frisbee around.
</p>
<p id="cooking">
<b>Cooking: </b> It's like a really tasty experiment!
</p>
<p id="ideas"><b>Projects: </b> Because learning never stops!</p>
</div>
</div>
</div>
<!-- <div class="fade spaced only-print" id="qualifications">
<h4>Qualifications</h4>
<ul>
<li>Experienced in various programming languages through coursework and industry experiences</li>
<li>Quick to learn new technology, codebases, and complex topics without being intimidated</li>
<li>Worked in diverse areas that required creative problem solving while delivering detailed and effective results</li>
<li>Developed effective teamwork and project management skills through teaching and project teams</li>
</ul>
</div> -->
<div class="fade spaced" id="experience">
<h4>Experience</h4>
<div class="organization-header">
<div>
<h5>Stealth Startup</h5>
</div>
<img src="images/stealth.jpeg" alt="stealth" class="image mobile" />
</div>
<div class="row content">
<div class="nine columns details">
<ul>
<li class="print-flex">
<div class="print-flex-header">
<b>Software Engineer</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Remote</i><i>March 2021 - Current</i>
</li>
<li>
Analyzed, integrated, and deployed distributed nodes to new
blockchain families.
</li>
<li>
Quickly learned new topics (cryptography, new languages,
etc) to facilitate integrations.
</li>
<li>
Co-authored proposals for scaling integrations and
increasing developer velocity.
</li>
<!-- <li>Develop best practices and documentation to scale integrations</li> -->
</ul>
</li>
</ul>
</div>
<div class="three columns no-print">
<img src="images/stealth.jpeg" alt="stealth" class="image main" />
</div>
</div>
<div class="organization-header">
<div>
<h5>Conflux Network</h5>
</div>
<img
src="images/conflux_white.svg"
alt="conflux"
class="image mobile"
id="conflux-logo-mobile"
/>
</div>
<div class="row content">
<div class="nine columns details">
<ul>
<li class="print-flex">
<div class="print-flex-header">
<b>Research Engineer</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Toronto, ON</i><i>April 2020 - January 2021</i>
</li>
<li>
Scoped and created various technical demonstrations of
decentralized technology.
</li>
<li>
Grew the developer community through hackathons, workshops,
etc.
</li>
</ul>
</li>
</ul>
</div>
<div class="three columns no-print">
<img
src="images/conflux_white.svg"
alt="conflux"
id="conflux-logo"
class="image main"
/>
</div>
</div>
<div class="organization-header">
<h5>University of Michigan College of Engineering</h5>
<img src="images/umich.jpg" alt="umich" class="image mobile" />
</div>
<div class="row content">
<div class="nine columns details">
<ul>
<li class="print-flex">
<div class="print-flex-header">
<b>Programmer</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Remote</i><i>April 2019 - April 2020</i>
</li>
<li>
Data visualization of optimization concepts for a textbook
<a
href="https://www.linkedin.com/posts/jrramartins_over-the-last-several-years-quim-martins-activity-6758144422019420160-NeuV"
>(link)</a
>
using LaTeX and python.
</li>
</ul>
</li>
<li class="print-flex">
<div class="print-flex-header">
<b>Graduate Student Instructor</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Ann Arbor, MI</i
><i
>Sep 2017 - April 2018, September 2018 - December 2018</i
>
</li>
<li>
Assisted in teaching 2nd-year and 4th-year students
engineering design concepts through lab work.
</li>
</ul>
</li>
<li class="print-flex no-print">
<div class="print-flex-header">
<b>Undergraduate Research Assistant</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Ann Arbor, MI</i><i>May 2016 - August 2016</i>
</li>
<li>
Assisted in preparation of
<a
href="https://a2srl.engin.umich.edu/research/flexible/xhale/"
>X-HALE aircraft</a
>
for flight & structural testing.
</li>
</ul>
</li>
</ul>
</div>
<div class="three columns no-print">
<img src="images/umich.jpg" alt="umich" class="image main" />
</div>
</div>
<div class="organization-header">
<div>
<h5>Lockheed Martin Aeronautics</h5>
</div>
<img src="images/lmco.png" alt="lmco" class="image mobile" />
</div>
<div class="row content">
<div class="nine columns details">
<ul>
<li class="print-flex">
<div class="print-flex-header">
<b>Flight Controls Intern</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Palmdale, CA</i><i>May 2018 - August 2018</i>
</li>
<li>
Developed program for uncertainty quantification &
robustness testing during multi-input multi-output (MIMO)
control system design.
</li>
<li class="no-print">
Based on the deGasaton-Safonov algorithm described
<a href="https://arc.aiaa.org/doi/abs/10.2514/3.20918"
>here</a
>.
</li>
</ul>
</li>
<li class="print-flex no-print">
<div class="print-flex-header">
<b>Flight Test Intern</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Edwards AFB, CA</i><i>June 2017 - August 2017</i>
</li>
<li>
Supported flight sciences on the F-35 drag-chute testing
program.
</li>
</ul>
</li>
</ul>
</div>
<div class="three columns no-print">
<img src="images/lmco.png" alt="lmco" class="image main" />
</div>
</div>
</div>
<div class="fade spaced" id="skills">
<h4>Skills</h4>
<div class="row">
<img
class="small-logo no-click no-print"
src="images/data.svg"
alt="programming"
/>
<p>
<b>Programming: </b> Go, Rust, nix, Python, Javascript/Typescript,
React, Solidity, AWS
</p>
</div>
<div class="row no-print">
<img
class="small-logo no-click no-print"
src="images/graphic-design.svg"
alt="cad"
/>
<p>
<b>Engineering: </b>optimization algorithms, data visualization,
SolidWorks, CATIA V5, AutoCAD, Simulink, LabView
</p>
</div>
<!-- <div class="row">
<img class="small-logo no-click"src="images/analysis.svg" alt="analysis">
<p><b>Analysis: </b></p>
</div> -->
<div class="row no-print">
<img
class="small-logo no-click no-print"
src="images/tools.svg"
alt="manufacturing"
/>
<p>
<b>Manufacturing: </b>composites, metal/wood working, milling, 3D
printing, soldering, microcontrollers
</p>
</div>
<div class="row no-print">
<img
class="small-logo no-click no-print"
src="images/blockchain.svg"
alt="software"
/>
<p>
<b>Web + Blockchain: </b> React, html/JS/CSS, node.js, Conflux
Network, Hyperledger Fabric, Ethereum, APIs
</p>
</div>
<div class="row no-print">
<img
class="small-logo no-click no-print"
src="images/software-dev.svg"
alt="software"
/>
<p>
<b>Software Development: </b> git, linux/windows, agile development,
docker, CI/CD
</p>
</div>
<div class="row no-print">
<img
class="small-logo no-click no-print"
src="images/translation.svg"
alt="languages"
/>
<p><b>Languages: </b>English, Chinese (beginner)</p>
</div>
</div>
<div class="fade spaced" id="education">
<h4>Education</h4>
<div class="organization-header">
<h5>George Brown College</h5>
<img src="images/gbc.svg" alt="gbc" class="image mobile" />
</div>
<div class="row content">
<div class="nine columns details">
<ul>
<li class="print-flex">
<div class="print-flex-header">
<b>Blockchain Development Program</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Toronto, ON</i><i>September 2019 - August 2020</i>
</li>
<li class="only-print">
Full-stack and blockchain development using Ethereum and
Hyperledger Fabric.
</li>
<li class="no-print">
Course work in full-stack web development, blockchain
development using
</li>
<li class="no-print">
Ethereum/Solidity and Hyperledger Fabric, and software
development skills and software.
</li>
</ul>
</li>
</ul>
</div>
<div class="three columns">
<img src="images/gbc.svg" alt="gbc" class="image main no-print" />
</div>
</div>
<div class="organization-header">
<h5>University of Michigan</h5>
<img src="images/umich.jpg" alt="umich" class="image mobile" />
</div>
<div class="row content">
<div class="nine columns details">
<ul>
<li class="print-flex">
<div class="print-flex-header">
<b>Masters in Aerospace Engineering</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Ann Arbor, MI</i><i>January 2018 - December 2018</i>
</li>
<li>Specialization in flight dynamics and control.</li>
<li>
Course work completed in numerical optimization and
non-linear control.
</li>
</ul>
</li>
<li class="print-flex">
<div class="print-flex-header">
<b>Bachelor in Aerospace Engineering</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul class="print-flex-details">
<li class="location-date">
<i>Ann Arbor, MI</i><i>September 2014 - December 2017</i>
</li>
<li>
Focused on aircraft structural design and dynamics +
control.
</li>
<li>Minor in electrical engineering (control systems)</li>
</ul>
</li>
</ul>
</div>
<div class="three columns">
<img
src="images/umich.jpg"
alt="umich"
class="image main no-print"
/>
</div>
</div>
</div>
<div class="fade spaced no-print" id="projects">
<h4>Projects</h4>
<p>
See all the various projects I'm tinkering with on
<a href="https://github.com/aalu1418">Github</a> and
<a href="https://gitlab.com/aalu1418">Gitlab</a>!
</p>
<h5 style="margin: 0">Highlights</h5>
<div class="row content">
<div class="twelve columns">
<p style="margin-bottom: 10px">
Useful projects that I use on a daily basis.
</p>
<div class="details">
<ul>
<li>
<div>
<b>Raspberry Pi Hub</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<li>
Using a Raspberry Pi as a home automation tool, and hub
for weather.
</li>
<li>
Incorporates a IR receiver/emitter, webserver, and a 10
year old Nook Simple Touch e-reader.
</li>
<li>
See the Go code and a picture
<a href="https://github.com/aalu1418/rpi-terminal-hub"
>here</a
>.
</li>
</ul>
</li>
<li>
<div>
<b>Weather Chrome Extension</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<li>
Inspired by the Currently Chrome Extension for a new tab.
</li>
<li>Dead simple chrome extension powered by NOAA.</li>
<li>
Check it out at the
<a
href="https://github.com/aalu1418/chromeExtension-newTab"
>Github repo</a
>.
</li>
</ul>
</li>
<li>
<div>
<b>RSS Aggregator</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<li>
Super simple RSS aggregator that pulls multiple RSS feeds
into single file using GHA.
</li>
<li>
Check it out at the
<a href="https://github.com/aalu1418/rss">Github repo</a>.
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<h5 style="margin: 0">Additional Projects</h5>
<div class="row content">
<div class="twelve columns">
<p style="margin-bottom: 10px">
Lots of random tinkering and experimentation!
</p>
<div class="details">
<ul>
<li>
<div>
<b>Automation + Scripting</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<b>Advent of Code</b>
<li><i>July 2021 - Ongoing</i></li>
<li>
Coding and logic puzzles used to learn and experiment with
the basics of new languages.
</li>
<li>
Check it out at the
<a href="https://github.com/aalu1418/advent-of-code"
>repository</a
>.
</li>
<br />
<b>Toronto Skating Reservations</b>
<li><i>January 2021</i></li>
<li>
Script to reserve skating slots of the Toronto eFun
platform using Selenium and cron jobs for automation.
</li>
<li>
Check it out at the
<a href="https://github.com/aalu1418/skating_reservation"
>repository</a
>.
</li>
<br />
<b>Differential Games</b>
<li><i>April 2020</i></li>
<li>
Python implementation of control system differential
games.
</li>
<li>
The goal is to implement various types of systems starting
from basic 2 body pursuit/evade games to more advanced
topics.
</li>
<li>
Check it out at the
<a href="https://github.com/aalu1418/differential-games"
>Github repo</a
>.
</li>
<br />
<b>Chipotle #Freeting</b>
<li><i>June 2019</i></li>
<li>
During the 2019 NBA finals, Chipotle offered free burritos
to customers.
</li>
<li>
Everytime an announcer said "free", a code would be posted
on Twitter for the first 20 or so people to claim via SMS
messaging.
</li>
<li>
It took 5 games to debug and get it working, but free food
is a strong motivator.
</li>
<li>
See the collaborative project code here:
<a href="https://gitlab.com/aalu1418/chipotle_freeting/"
>here</a
>.
</li>
<br />
<b>Stock Trading Bot</b>
<li><i>February 2019</i></li>
<li>
An incomplete project that began with trying to automate
trades with Robinhood.
</li>
<li>
Then transformed into a thought experiment involving NLP,
AI/machine learning, data based modeling to predict stock
performances.
</li>
<li>
Check out the paused project
<a href="https://gitlab.com/aalu1418/chipotle_freeting/"
>here</a
>.
</li>
</ul>
</li>
<li>
<div>
<b>Microcontrollers</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<b>LED clock</b>
<li><i>January 2020</i></li>
<li>
A simple clock colloboratively built using an arduino,
LEDs, acrylic, and some nuts and bolts.
</li>
<li>
See the code and a picture
<a href="https://gitlab.com/aalu1418/LED_clock">here</a>.
</li>
</ul>
</li>
<li>
<div>
<b>Blockchain & Web</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<b>Interest Bearing CFX</b>
<li><i>December 2020</i></li>
<li>
An interest-bearing ERC-20 token based on native CFX token
and network staking interest of 4%.
</li>
<li>
Compound interest is calculated on-chain using
pre-calculated values and a search algorithm to reduce
computational costs and fees.
</li>
<li>
Check it out at the
<a href="https://github.com/aalu1418/tokenized-stake"
>repository</a
>.
</li>
<br />
<b>Conflux Staking</b>
<li><i>October 2020</i></li>
<li>
Simple staking interface for Conflux Network + Conflux
Portal.
</li>
<li>
Conflux Network is a PoW blockchain but has a staking
mechanism that provides ~4% interest annually
</li>
<li>
Check it out at the
<a href="https://aalu1418.github.io/cfx-staking/"
>website</a
>
and the
<a href="https://github.com/aalu1418/cfx-staking"
>repository</a
>.
</li>
<br />
<b>CFX <=> ETH Stealth Startupge</b>
<li><i>October 2020</i></li>
<li>
Using Stealth Startuples to act as a bridge between
Conflux Oceanus and Ethereum Ropsten
</li>
<li>
Check it out at on
<a
href="https://github.com/aalu1418/cfx-eth-Stealth Startupge"
>github</a
>.
</li>
<br />
<b>Musings</b>
<li><i>March 2020</i></li>
<li>
A simple blog site to write down various lesson and
thoughts.
</li>
<li>
Built using Ruby + the Jekyll Gem, and for experimenting
with various JS/CSS effects.
</li>
<li>
Check it out
<a href="https://aalu1418.github.io/musings">here</a> or
at the
<a href="https://github.com/aalu1418/musings"
>Github repo</a
>.
</li>
</ul>
</li>
<li>
<div>
<b>Blockchain Coursework</b>
<i class="material-icons no-print">expand_more</i>
</div>
<ul>
<b>Hyperledger Fabric + Airline MRO</b>
<li><i>April 2020</i></li>
<li>
The program capstone project built using Hyperledger
Fabric, ExpressJS, and React
</li>
<li>
Applied to parts provenance and aircraft maintenance
tracking for the airline MRO industry
</li>
<li>
Check it out
<a
href="https://gb-blockchain-1920.github.io/dApp2_project/#/"
>here</a
>
or at the
<a
href="https://github.com/gb-blockchain-1920/dApp2_project"
>Github repo</a
>.
</li>
<br />
<b>String Operations in Solidity</b>
<li><i>March 2020</i></li>
<li>
A course project built on Solidity implementing more
advanced solidity concepts
</li>
<li>
Two contracts that implement string operations that are
possible in Javascript but not in Solidity
</li>
<li>
Check out the Github repo
<a
href="https://github.com/gb-blockchain-1920/adv-smart-contracts-project"
>here</a
>.
</li>
<br />
<b>Electronic Know Your Client (dApp)</b>
<li><i>March 2020</i></li>
<li>
A course project built on Hyperledger Fabric with a
ExpressJS API and React front-end
</li>
<li>
Basic concept: a system were users can login and input
information and share it with specific companies.
</li>
<li>
Check out the Github repo
<a
href="https://github.com/gb-blockchain-1920/dApp1_project"
>here</a
>.
</li>
<br />
<b>Timeshare Distributed Application (dApp)</b>
<li><i>February 2020</i></li>
<li>
A course project using React, web3, and Solidity deployed
on a a local Ethereum network (ganache)
</li>
<li>
Basic concept: a bidding system for renting weeks of a
house using purchaseable tokenized shares.
</li>
<li>
Check out the Github repo
<a
href="https://github.com/gb-blockchain-1920/designPatterns_project"
>here</a
>.
</li>
<br />
<b>Simple Messenger</b>
<li><i>November 2019</i></li>
<li>
A simple chat platform using various Firebase modules
(functions, database, etc).
</li>
<li>
Also, integrates with Metamask to send ethereum to users
with public keys.
</li>
<li>
Check it out
<a href="https://gb-fullstackii-project.web.app/">here</a>
or at the
<a
href="https://github.com/gb-blockchain-1920/FS2_Final_Project"
>Github repo</a
>.
</li>
<br />
<b>CryptoView</b>
<li><i>September 2019</i></li>
<li>
A website that displays cryptocurrency information in an
updating chart.
</li>
<li>
And incorporates a user's metamask plug-in for showing
ether balance on Ethereum.
</li>
<li>
Check it out
<a
href="https://gb-blockchain-1920.github.io/fullstackI_project/"
>here</a
>.
</li>
</ul>
</li>
</ul>
</div>
</div>
</div>
<h5 style="margin: 0">M-Fly SAE Aerospace Design Team</h5>
<div class="row content">
<div class="twelve columns">
<p style="margin-bottom: 10px">
Some of busiest and most stressful times of my life but I wouldn't
trade it for anything.
</p>
<div class="details">
<ul>