-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
894 lines (891 loc) · 35.7 KB
/
index.html
File metadata and controls
894 lines (891 loc) · 35.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1 user-scalable=no"
/>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Share+Tech&display=swap" rel="stylesheet">
<script
type="text/JavaScript"
src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"
></script>
<script src="JS/gAnalytics.js"></script>
<script src="JS/menuScript.js"></script>
<script src="JS/galleryScript.js"></script>
<script src="JS/headerScript.js"></script>
<script async defer src="https://buttons.github.io/buttons.js"></script>
<script type="text/javascript" src="JS/main.js"></script>
<link rel="stylesheet" href="font-awesome-4.6.3/css/font-awesome.min.css" />
<link
rel="stylesheet"
href="CSS/main.css"
/>
<title>Malcolm's Site</title>
<link rel="shortcut icon" href="images/favicon.ico" />
</head>
<body>
<header>
<div class="w3-content w3-section">
<div class="headerSlides">
<div id="headerDiv">
<div id="headerTitle">
<img
class="img-circle"
src="images/malkam03.png"
alt="Malkam Icon"
/>
<h1>
Hi there, I'm Malcolm.
</h1>
<hr />
<h2>Developer</h2>
</div>
</div>
</div>
<div class="headerSlides">
<div id="headerDiv">
<div id="headerTitle">
<img
class="img-circle"
src="images/malkam03.png"
alt="Malkam Icon"
/>
<h1>
Hi there, I'm Malcolm.
</h1>
<hr />
<h2>Maker</h2>
</div>
</div>
</div>
<div class="headerSlides">
<div id="headerDiv">
<div id="headerTitle">
<img
class="img-circle"
src="images/malkam03.png"
alt="Malkam Icon"
/>
<h1>
Hi there, I'm Malcolm.
</h1>
<hr />
<h2>Entrepreneur</h2>
</div>
</div>
</div>
<div class="sideMenu" id="sideMenuHome">
<ul>
<li>
<a id="sideMenuMore" href="#Profile" class="scroll-down">More</a>
</li>
</ul>
</div>
</div>
</header>
<div class="wrapper">
<div class="sideMenu" id="mainMenu">
<ul>
<li>
<a href="#Profile">Profile</a>
</li>
<li>
<a href="#Experiences">Experiences</a>
</li>
<li>
<a href="#Activities">Activities</a>
</li>
<li>
<a href="#Projects">Projects</a>
</li>
<li>
<a href="#Skills">Skills</a>
</li>
<li>
<a href="#Contact">Contact</a>
</li>
</ul>
</div>
<div class="mainContent">
<div class="primaryBack" id="Profile">
<div class="dataBlock">
<div class="columns rAlign">
<div class="img-circle">
<img
src="images/profile.jpg"
id="profilePic"
alt="Profile Picture"
/>
</div>
<div>
<h1 class="headers">About Me</h1>
<p class="cite">
Computer Engineer student at Costa Rica Institute of
Technology, Hardware Hacker, Entrepreneur.
</p>
<hr class="horizontalDiv" />
<p>
Born in an entrepreneurial family, raised to be the tech guy
of the family business. So I took some courses on computer
maintenance, then I got accepted on the Costa Rica Institute
of Technology and discover my passion for prototyping projects
when I started to participate on development competitions.
Enjoy the most working on back end and optimization of the
project's software/hardware. Right now working at Intel
on both security of some products and CI/CD.
</p>
<h2 class="headers">Detailed Info</h2>
<div class="columns">
<div class="colQuarter">
<div>
<h3>Name:</h3>
Malcolm Davis Steele
<h3>Age:</h3>
27 years
</div>
<div>
<h3>Location:</h3>
<p>Cartago, Costa Rica</p>
<div>
<a
class="github-button"
href="https://github.com/malkam03"
data-size="large"
data-show-count="true"
aria-label="Follow @malkam03 on GitHub"
>Follow @malkam03</a
>
</div>
</div>
</div>
<div>
<a id="downloadResume" href="Malcolm-Davis-Resume.pdf" download target="_blank">Download Resume </a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="secondaryBack" id="Experiences">
<div class="dataBlock">
<h1 class="headers">Experiences</h1>
<p class="cite">
"The only real security that a man will have in this world is a
reserve of knowledge, experience, and ability."<br />
-Henry Ford
</p>
<hr class="horizontalDiv" />
<h3 class="header2">Education</h3>
<div class="row">
<div class="col1-4">
<a href="https://www.tec.ac.cr/"
><h4>Costa Rica Institute of Technology</h4></a
>
<p class="timeLapse">
February 2012 - Febraury 2021
</p>
</div>
<div class="col3-4">
<strong>Licentiate Degree - Computer Engineering </strong>
<p>
Coursework included, among others, Software Architecture for Emerging Systems, Software Design and
Specification, Image Signal Analysis, Computational Molecular
Biology, Algorithms, Data Structures, Compilers, Operating Systems, Databases,
Circuit Analysis in AC and DC, Computer Architecture, a wide
range of maths and sciences courses and Entrepreneurship.
</p>
<a
href="https://www.google.co.cr/maps/place/Tecnol%C3%B3gico+de+Costa+Rica+(TEC)/@9.8572523,-83.9145017,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0dff29640d73b:0xc11e19b85da8947f!8m2!3d9.857247!4d-83.912313?hl=en"
><div class="place">
<img src="images/icons/location.png" />Cartago, Costa Rica
</div></a
>
</div>
</div>
<hr />
<h3 class="header2">Career</h3>
<div class="row">
<div class="col1-4">
<a href="http://www.cenat.ac.cr/en/"
><h4>Intel Costa Rica</h4></a
>
<p class="timeLapse">May 2018 - Present</p>
</div>
<div class="col3-4">
<strong> System Software Development Engineer </strong>
<p>
Lead the automation of CI/CD processes for some of Intel simulators and helped improve the performance
of them by developing tools that enable the usage of the resources of an internal cluster in our solutions.
Implemented containerized development environments for developing, building and deploying the
libraries and binaries that are part of the aforementioned simulators.
</p>
<p>
Designed and developed tools to assure the security and quality of the simulators and web apps using
industry standards for testing, code scanning and linting C/C++, Java, Python, Rust and Go code.
Speed up the process of generating an input file for one of Intel’s simulators from hours/days to
seconds/minutes by automating the process using industry standards for CI/CD.
</p>
<a href="https://goo.gl/maps/4m3c8yLuemsYWuHy7"
><div class="place">
<img src="images/icons/location.png" />Belen, Costa Rica
</div></a
>
</div>
</div>
<div class="row">
<div class="col1-4">
<a href="http://www.cenat.ac.cr/en/"
><h4>Costa Rica's National Center for High Technology</h4></a
>
<p class="timeLapse">Jan 2018 - May 2018</p>
</div>
<div class="col3-4">
<strong> Research Assistant </strong>
<p>
Researched a cluster benchmark and started the porting of the
same benchmark from an message passing parallelism approach to
an object oriented parallelism.
</p>
<a
href="https://www.google.co.cr/maps/place/National+Center+for+High+Technology/@9.950617,-84.1267677,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0fb687f6d81db:0x46fd58168ef4c5bb!8m2!3d9.950617!4d-84.124579?hl=en"
><div class="place">
<img src="images/icons/location.png" />Pavas, Costa Rica
</div></a
>
</div>
</div>
<div class="row">
<div class="col1-4">
<a href="https://www.facebook.com/ieeetec/"
><h4>IEEE TEC Costa Rica Branch</h4></a
>
<p class="timeLapse">Jan 2018 - Jun 2018</p>
</div>
<div class="col3-4">
<strong> Branch's Chair </strong>
<p>
Organized the structure developing tools that helped in the
process of managing the student branch.
</p>
<a
href="https://www.google.co.cr/maps/place/Tecnol%C3%B3gico+de+Costa+Rica+(TEC)/@9.8572523,-83.9145017,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0dff29640d73b:0xc11e19b85da8947f!8m2!3d9.857247!4d-83.912313?hl=en"
><div class="place">
<img src="images/icons/location.png" />Cartago, Costa Rica
</div></a
>
</div>
</div>
<div class="row">
<div class="col1-4">
<a href="https://www.facebook.com/TEComputerIEEE/"
><h4>IEEE TEC Costa Rica Branch</h4></a
>
<p class="timeLapse">Aug 2017 - Jun 2018</p>
</div>
<div class="col3-4">
<strong>Vice Chair Computer Society </strong>
<p>
Estabished, with the help of my team, the Computer Society of
the IEEE, TEC Costa Rica Branch. Promote the Society imparting
some parallel programming Workshops. Won the
<a
href="http://interface.computer.org/outstanding-ieee-computer-society-chapter-awards-poland-costa-rica/"
>2017 Outstanding CS Chapter Award</a
>. Help planning and organizing the 33 activities of the 2017
including the IEEEXtreme 11.0 CR and other workshops and
lectures.
</p>
<a
href="https://www.google.co.cr/maps/place/Tecnol%C3%B3gico+de+Costa+Rica+(TEC)/@9.8572523,-83.9145017,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0dff29640d73b:0xc11e19b85da8947f!8m2!3d9.857247!4d-83.912313?hl=en"
><div class="place">
<img src="images/icons/location.png" />Cartago, Costa Rica
</div></a
>
</div>
</div>
<div class="row">
<div class="col1-4">
<a
href="http://ic-itcr.ac.cr/cic/index.php/proyectos/proyectos-actuales/gotouch"
><h4>GoTouch - Computer Investigation Center</h4></a
>
<p class="timeLapse">Jun 2017 - May 2018</p>
</div>
<div class="col3-4">
<strong>Software Developer</strong>
<p>
Started the development of an informative app for the JOCICI
2017 congress. Bring back to life an educational game
developed by an early team.
</p>
<a
href="https://www.google.co.cr/maps/place/Tecnol%C3%B3gico+de+Costa+Rica+(TEC)/@9.8572523,-83.9145017,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0dff29640d73b:0xc11e19b85da8947f!8m2!3d9.857247!4d-83.912313?hl=en"
><div class="place">
<img src="images/icons/location.png" />Cartago, Costa Rica
</div></a
>
</div>
</div>
<div class="row">
<div class="col1-4">
<h4>Nabit</h4>
<p class="timeLapse">Aug 2016 - Dec 2017</p>
</div>
<div class="col3-4">
<strong>Co-founder and CTO </strong>
<p>
Co-founded Nabit, a research and development company that
creates technology that eases the work of people who are
making efforts to help the environment in different ways. Led
the Software and Hardware departments to research and develop
a way to make wildlife investigation cameras meet the unmet
needs of wildlife researchers, at half the price. We develop a
prototype.
</p>
<a
href="https://www.google.co.cr/maps/place/Tecnol%C3%B3gico+de+Costa+Rica+(TEC)/@9.8572523,-83.9145017,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0dff29640d73b:0xc11e19b85da8947f!8m2!3d9.857247!4d-83.912313?hl=en"
><div class="place">
<img src="images/icons/location.png" />Cartago, Costa Rica
</div></a
>
</div>
</div>
<div class="row">
<div class="col1-4">
<a href="https://www.tec.ac.cr/"
><h4>Costa Rica Institute of Technology</h4></a
>
<p class="timeLapse">Mar 2015 - June 2017</p>
</div>
<div class="col3-4">
<strong> Physics Course Assistant </strong>
<p>
Developed a mobile assignment grading system, that halved the
revision and report time, also build feedback of the average
behavior of the students with auto generated statistics.
</p>
<a
href="https://www.google.co.cr/maps/place/Tecnol%C3%B3gico+de+Costa+Rica+(TEC)/@9.8572523,-83.9145017,17z/data=!3m1!4b1!4m5!3m4!1s0x8fa0dff29640d73b:0xc11e19b85da8947f!8m2!3d9.857247!4d-83.912313?hl=en"
><div class="place">
<img src="images/icons/location.png" />Cartago, Costa Rica
</div></a
>
</div>
</div>
</div>
</div>
<div id="Activities">
<div class="w3-content w3-section">
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
<div class="activitiesSlides">
<div class="sliderContent" id="slider">
<h1 class="headers">Activities</h1>
<p class="cite">
"Only those who attempt the absurd can achieve the
impossible."<br />
-Albert Einstein
</p>
<h2 class="sliderHeader"></h2>
<div class="icon" id="ileft">
<i class="fa fa-angle-left" onclick="prev()"></i>
</div>
<div class="icon" id="iright">
<i class="fa fa-angle-right" onclick="next()"></i>
</div>
<p class="sliderPara"></p>
</div>
</div>
</div>
</div>
<div class="secondaryBack" id="Projects">
<div class="dataBlock">
<h1 class="headers">Projects</h1>
<p class="cite">
"It is a poor workman who blames his tools - the good man gets on
with the job, given what he's got, and gets the best answer he
can."<br />
-Richard Hamming
</p>
<hr class="horizontalDiv" />
<div id="projectGallery">
<div class="projectDataContainer">
<img
class="projectImage"
src="images/projects/Pianoduino.jpg"
/>
<div class="projectData">
<div>
<h3 class="projectHeader">Pianoduino</h3>
<p>
A 61 key MIDI keyboard project with Arduino and some parts
of a broken Yamaha PSR-E303. With control knobs, buttons,
LCD and resistive panel.
</p>
<div>
<a
class="github-button"
href="https://github.com/malkam03/Pianoduino/subscription"
data-size="large"
data-icon="octicon-eye"
aria-label="Watch malkam03/Pianoduino on GitHub"
>Watch Project</a
>
</div>
</div>
</div>
</div>
<div class="projectDataContainer">
<img
class="projectImage"
src="images/projects/Pencilduino.jpg"
/>
<div class="projectData">
<div>
<h3 class="projectHeader">Pencilduino</h3>
<p>
A robot that interprets instructions given via a
smartphone and draw in a 2d matrix.
</p>
<div>
<a
class="github-button"
href="https://github.com/JAMS-ITCR/Pencilduino/subscription"
data-size="large"
data-icon="octicon-eye"
aria-label="Watch JAMS-ITCR/Pencilduino on GitHub"
>Watch Project</a
>
</div>
</div>
</div>
</div>
<div class="projectDataContainer">
<img class="projectImage" src="images/projects/Dockers.png" />
<div class="projectData">
<div>
<h3 class="projectHeader">Malcolm's Dockers</h3>
<p>
A repository with some of the Dockers I used for different
projects.
</p>
<div>
<a
class="github-button"
href="https://github.com/malkam03/DockerFiles/subscription"
data-size="large"
data-icon="octicon-eye"
aria-label="Watch malkam03/DockerFiles on GitHub"
>Watch Project</a
>
</div>
</div>
</div>
</div>
<div class="projectDataContainer">
<img class="projectImage" src="images/projects/None.png" />
<div class="projectData">
<div>
<h3 class="projectHeader">This WebPage</h3>
<p>
Personal website of mine, cv and info blog about hardware
and coding.
</p>
<div>
<a
class="github-button"
href="https://github.com/malkam03/malkam03.github.io/subscription"
data-size="large"
data-icon="octicon-eye"
aria-label="Watch malkam03/malkam03.github.io on GitHub"
>Watch Project</a
>
</div>
</div>
</div>
</div>
<div class="projectDataContainer">
<img class="projectImage" src="images/projects/Tutorials.jpg" />
<div class="projectData">
<div>
<h3 class="projectHeader">Tutorials</h3>
<p>
A repo with some of the workshops and lectures imparted by
me.
</p>
<div>
<a
class="github-button"
href="https://github.com/malkam03/Tutorials/subscription"
data-size="large"
data-icon="octicon-eye"
aria-label="Watch malkam03/Tutorials on GitHub"
>Watch Project</a
>
</div>
</div>
</div>
</div>
<div class="projectDataContainer">
<img
class="projectImage"
src="images/projects/PhysicsGrading.jpg"
/>
<div class="projectData">
<div>
<h3 class="projectHeader">PhysicsGrading</h3>
<p>
A grading app for the physics courses assistance,
connected with the teachers evaluation sheet to create an
automatic report.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="primaryBack" id="Skills">
<div class="dataBlock">
<h1 class="headers">Skills</h1>
<p class="cite">
"Force has no place where there is need of skill."<br />
-Herodotus
</p>
<hr class="horizontalDiv" />
<h3 class="header2">Skill Set</h3>
<ul class="skillSet">
<li class="skill">Go</li>
<li class="skill">Python</li>
<li class="skill">C/C++</li>
<li class="skill">Java</li>
<li class="skill">Lisp/Haskel</li>
<li class="skill">Shell/Scripting</li>
<li class="skill">Docker</li>
<li class="skill">Singularity</li>
<li class="skill">Kubernetes</li>
<li class="skill">Git</li>
<li class="skill">MPI</li>
<li class="skill">OpenMP</li>
<li class="skill">OpenAcc</li>
<li class="skill">GNU-Linux</li>
<li class="skill">Windows</li>
<li class="skill">MacOS</li>
<li class="skill">Scrum</li>
<li class="skill">Jira</li>
<li class="skill">Klocwork</li>
<li class="skill">Checkmarx</li>
<li class="skill">Snyk</li>
<li class="skill">BlackDuck Binary Analysis</li>
<li class="skill">BlackDuck Protex</li>
<li class="skill">HTML</li>
<li class="skill">CSS</li>
<li class="skill">Java Script</li>
<li class="skill">PHP</li>
<li class="skill">MySQL</li>
<li class="skill">Wordpress</li>
<li class="skill">AngularJs</li>
<li class="skill">Circuit Design & Analysis</li>
<li class="skill">Arduino Prototyping</li>
<li class="skill">Raspberry Pi Prototyping</li>
<li class="skill">Problem Solving</li>
<li class="skill">Leadership</li>
<li class="skill">Multidisciplinary TW</li>
<li class="skill">Oration</li>
</ul>
</div>
</div>
</div>
<footer>
<div id="Contact">
<div>
<h1 class="headers">
Contact
</h1>
<h3>
<p class="cite">
"The meeting of two personalities is like the contact of two
chemical substances: if there is any reaction, both are
transformed."<br />
-Carl Jung
</p>
</h3>
</div>
<hr />
<div id="socialIcons">
<ul>
<li>
<a
href="https://twitter.com/malkam03"
title="Twitter"
id="twitterIcon"
></a>
</li>
<li>
<a
href="https://www.facebook.com/Malcolm.Davis.Steele"
title="Facebook"
id="facebookIcon"
></a>
</li>
<li>
<a
href="https://www.linkedin.com/in/MalcolmDS"
title="LinkedIn"
id="linkedInIcon"
></a>
</li>
<li>
<a
href="https://github.com/malkam03"
title="Github"
id="gitHubIcon"
></a>
</li>
<li>
<a
href="mailto:me@malcolmdavis.xyz"
title="Email"
id="emailIcon"
></a>
</li>
</ul>
</div>
</div>
</footer>
</body>
</html>