-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
2053 lines (1609 loc) · 108 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>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1">
<title>Curtly Critchlow Portfolio</title>
<meta name="description" content="A framework for launching new Django projects quickly.">
<meta name="author" content="ccwc.io">
<link rel="shortcut icon" type="image/x-icon" href="assets/img/favicon.png">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.11.2/css/all.css">
<!-- Bootstrap core CSS -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="assets/css/mdb.min.css" rel="stylesheet">
<!-- Smartsupp Live Chat script -->
<script type="text/javascript">
var _smartsupp = _smartsupp || {};
_smartsupp.key = '0135a656fb853fb1390a872e08bafae4be3c3f01';
window.smartsupp || (function (d) {
var s, c, o = smartsupp = function () { o._.push(arguments) }; o._ = [];
s = d.getElementsByTagName('script')[0]; c = d.createElement('script');
c.type = 'text/javascript'; c.charset = 'utf-8'; c.async = true;
c.src = 'https://www.smartsuppchat.com/loader.js?'; s.parentNode.insertBefore(c, s);
})(document);
</script>
<link href="assets/css/addons-pro/cards-extended.min.css" rel="stylesheet">
<link rel="stylesheet" href="assets/css/style.css">
<style>
html,
body,
header,
.jarallax {
height: 100%;
}
@media (min-width: 560px) and (max-width: 740px) {
html,
body,
header,
.jarallax {
height: 600px;
}
}
</style>
</head>
<body class="developer">
<header>
<!-- Navbar -->
<nav class="navbar navbar-expand-lg navbar-dark fixed-top scrolling-navbar">
<div class="container">
<a class="navbar-brand" href="#">CC</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarTogglerDemo02"
aria-controls="navbarTogglerDemo02" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarTogglerDemo02">
<ul class="navbar-nav mr-auto smooth-scroll">
<li class="nav-item">
<a class="nav-link" href="#home">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about" data-offset="100">About Me</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#portfolio" data-offset="90">Portfolio</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact" data-offset="100">Contact</a>
</li>
</ul>
<!-- Social Icon -->
<ul class="navbar-nav nav-flex-icons">
<li class="nav-item">
<a href="https://github.com/CurtlyCritchlow" class="nav-link"><i class="fab fa-github"></i></a>
</li>
<li class="nav-item">
<a href="https://www.linkedin.com/in/curtlycritchlow/" class="nav-link"><i
class="fab fa-linkedin"></i></a>
</li>
<li class="nav-item">
<a href="https://twitter.com/CritchlowCurtly" class="nav-link"><i class="fab fa-twitter"></i></a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Intro Section -->
<div id="home" class="view jarallax" data-jarallax='{"speed": 0.2}'
style="background-image: url('https://mdbootstrap.com/img/Photos/Others/forest1.jpg'); background-repeat: no-repeat; background-size: cover; background-position: center center;">
<div class="mask rgba-white-strong">
<div class="container h-100 d-flex justify-content-center align-items-center">
<div class="row smooth-scroll">
<div class="col-md-12 pt-3">
<div class="white-text text-center pt-5">
<h1 class="display-2 mb-4 dark-grey-text wow fadeIn">I am <strong>Curtly Critchlow</strong></h1>
<h5 class="text-uppercase font-weight-bold wow fadeIn" data-wow-delay="0.4s"><mark>Flutter
Developer</mark></h5>
<a href="#about" class="btn btn-floating btn-large wow fadeIn" data-wow-delay="0.4s"
data-offset="100"><i class="fas fa-angle-down" aria-hidden="true"></i></a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<main>
<!-- First container -->
<div class="container">
<!-- Section About -->
<section id="about" class="section mt-1 mb-3">
<!-- Section heading -->
<h2 class="text-uppercase text-center font-weight-bold my-4 pt-5 wow fadeIn" data-wow-delay="0.2s">About me</h2>
<hr class="between-sections">
<!-- First row -->
<div class="row pt-5">
<!-- First column -->
<div class="col-lg-6 col-md-12 wow fadeIn" data-wow-delay="0.4s">
<h4 class="text-center text-uppercase mb-5 wow fadeIn" data-wow-delay="0.2s">A Passionate Problem Solver</h4>
<p class="black-text mb-3" align="justify">
I'm Curtly, a driven Flutter Developer with a passion for crafting elegant, efficient, and future-proof
solutions. My dedication to continuous learning and a "do it once, do it right" approach drives me to find the best
possible solutions for every challenge.
</p>
<p class="black-text mb-3" align="justify">
My software development journey began with a real-world problem: managing a mountain of data in a previous role.
I tackled that challenge head-on, automating processes and building solutions that transformed how my team worked.
You can read about this experience in my now archived DataQuest article,
<a href="https://web.archive.org/web/20201101124644/https://www.dataquest.io/blog/dataquest-changed-my-life/">
“Not Enough Memory” — How Data Skills Ended an Excel Nightmare
</a>.
</p>
<p class="black-text mb-3" align="justify">
Beyond coding, I'm a lifelong learner who enjoys exploring diverse fields like history, science, economics, and more.
This curiosity fuels my approach to software development, allowing me to bring a unique perspective and creative
problem-solving skills to every project.
</p>
<p class="black-text mb-3" align="justify">
As a developer, I understand the importance of trade-offs and making informed decisions. I strive for clarity and
collaboration, always eager to learn new technologies and contribute to high-performing teams.
</p>
</div>
<!-- First column -->
<!-- Second column -->
<div class="col-lg-6 col-md-12 mb-5 wow fadeIn" data-wow-delay="0.4s">
<!-- Second headind -->
<div class="d-flex justify-content-start">
<h4 class="text-center text-uppercase mb-5 wow fadeIn" data-wow-delay="0.2s">My
<strong>Personality</strong>
</h4>
</div>
<!-- Description -->
<p>My Personality ratings are based on the <a
href="https://www.truity.com/test/enneagram-personality-test">Enneagram Personality system</a> that aims
to reveal how emotions drive our lives and how we engage with others to get what we want and need. Below
is the result of my top four personality traits.
</p>
<p class="black-text text-uppercase font-weight-bold" align="justify">The Challenger</p>
<div class="md-progress">
<div class="progress-bar" role="progressbar" style="width: 98%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<p>Sees themselves as strong and seek to stand up for what they believe in.</p>
<p class="black-text text-uppercase font-weight-bold pt-3" align="justify">The Investigator</p>
<div class="md-progress">
<div class="progress-bar" role="progressbar" style="width: 89%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<p>Seek understanding and knowledge, and are more comfortable with data than people.</p>
<p class="black-text text-uppercase font-weight-bold pt-3" align="justify">The Perfectionist</p>
<div class="md-progress">
<div class="progress-bar" role="progressbar" style="width: 89%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<p>Places a lot of emphasis on following the rules and doing things correctly.</p>
<p class="black-text text-uppercase font-weight-bold pt-3" align="justify">The Achiever</p>
<div class="md-progress">
<div class="progress-bar" role="progressbar" style="width: 84%" aria-valuenow="25" aria-valuemin="0"
aria-valuemax="100"></div>
</div>
<p>Want to be successful and admired by other people, and are very conscious of their public image.</p>
</div>
<!-- Second column -->
</div>
<!-- First row -->
</section>
<!-- Section About -->
</div>
<!-- First container -->
<!-- Second container -->
<div class="container-fluid" style="background-color: #f3f3f5;">
<div class="container py-4 pt-4">
<!-- Second section -->
<section id="skills">
<!-- First row -->
<div class="row py-5">
<!-- First column -->
<div class="col-lg-6 col-md-12 mb-3 wow fadeIn" data-wow-delay="0.4s">
<!-- Section heading -->
<div class="d-flex justify-content-start">
<h4 class="text-center text-uppercase mb-5 pb-3 mt-4 wow fadeIn" data-wow-delay="0.2s">My
<strong>experience</strong>
</h4>
</div>
<!-- Description -->
<blockquote id='the-atsign-company-experience' class="blockquote bq-warning mb-4">
<div class="row"> <i class="fas fa-briefcase fa-x mb-1 mr-3 ml-3" aria-hidden="true"></i>
<h5 class="font-weight-bold mb-3">Flutter Developer</h5>
</div>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
<a href="class=" font-weight-bold ml-1 dark-grey-text mb-2"">atsign</a>
<i class="fas fa-circle icon-bullet">
</i>
Full-time
</p>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
February 2022 - Present
</p>
<div class="mb-0 ml-1 dark-grey-text">
<ul>
<li>
<strong>Spearhead business development initiatives</strong> through targeted outreach, identifying and engaging potential clients.
</li>
<li>
<strong>Deliver compelling live demos</strong> showcasing the unique capabilities of the at_platform and its benefits to potential clients.
</li>
<li>
<strong>Architect and build innovative Flutter/Dart applications</strong> on the atPlatform, delivering impactful solutions tailored to client needs.
</li>
<li>
<strong>Ensure the ongoing stability and functionality of the <a href="https://pub.dev/packages/at_gauges">at_gauges</a> Flutter package</strong>, demonstrating a commitment to open-source contribution and code quality.
</li>
</ul>
</div>
</blockquote>
<blockquote id='Nabi-KCL-experience' class="blockquote bq-warning mb-4">
<div class="row"> <i class="fas fa-briefcase fa-x mb-1 mr-3 ml-3" aria-hidden="true"></i>
<h5 class="font-weight-bold mb-3">Safety/Security Officer</h5>
</div>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">Nabi-KCL<i class="fas fa-circle icon-bullet"></i>
Full-time</p>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
October 2021 - April 2022
</p>
<div class="mb-0 ml-1 dark-grey-text">
<ul>
<li>
<strong>Developed and launched</strong> the <a href="https://play.google.com/store/apps/details?id=io.ccwc.sshe&hl=en&gl=US">Nabi-KCL SSHE</a> mobile app, a solution designed to effectively monitor and enhance safety practices on-site.
</li>
<li>
<strong>Led and managed</strong> the security team, successfully maintaining a secure environment free of security breaches.
</li>
<li>
<strong>Proactively observed</strong> worker activities and <strong>provided guidance</strong> to ensure compliance with company safety policies, fostering a culture of safety and risk mitigation.
</li>
</ul>
</div>
</blockquote>
<blockquote id='gdf-experience' class="blockquote bq-warning mb-4">
<div class="row"> <i class="fas fa-briefcase fa-x mb-1 mr-3 ml-3" aria-hidden="true"></i>
<h5 class="font-weight-bold mb-3">Second Lieutenant</h5>
</div>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">Guyana Defence Force <i
class="fas fa-circle icon-bullet"></i> Reservist</p>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
September 2020 - Present
</p>
<div class="mb-0 ml-1 dark-grey-text">
<ul>
<li>
<strong>Developing a Reserve Talent Management System</strong> to streamline and optimize the management of reserve personnel, leveraging technology to enhance organizational efficiency.
</li>
<li>
<strong>Mentor and train fellow reservists</strong> in essential military activities, including skill-at-arms, fostering teamwork and skill development.
</li>
<li>
<strong>Actively participate</strong> in military operations and training exercises commensurate with my rank, demonstrating dedication to service and commitment to continuous improvement.
</li>
</ul>
</div>
</blockquote>
<blockquote id='mof-experience' class="blockquote bq-warning mb-4">
<div class="row"> <i class="fas fa-briefcase fa-x mb-1 mr-3 ml-3" aria-hidden="true"></i>
<h5 class="font-weight-bold mb-3">
Economic & Financial Analyst | Web Developer
</h5>
</div>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">Ministry of Finance, Guyana <i
class="fas fa-circle icon-bullet"></i> Full-time</p>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
November 2019 - March 2021 <i class="fas fa-circle icon-bullet"></i> 1yr 5 mos
</p>
<div class="mb-0 ml-1 dark-grey-text">
<ul>
<li>
<strong>Collaborated</strong> as part of a multi-agency government committee to <strong>successfully implement</strong> the first Covid-19 relief program, demonstrating the ability to work effectively across organizational boundaries to deliver critical solutions.
</li>
<li>
<strong>Gained a deep understanding</strong> of the Office of the Budget's needs by actively engaging with end users, ensuring solutions are user-centric and address real-world challenges.
</li>
<li>
<strong>Developed and deployed websites</strong> tailored to the specific requirements of the Office of the Budget, leveraging technical skills to provide valuable tools and resources.
</li>
<li>
<strong>Continuously improved and enhanced website functionality</strong> based on user feedback and evolving departmental needs, showcasing a commitment to ongoing optimization and delivering exceptional user experiences.
</li>
</ul>
</div>
</blockquote>
<blockquote id='moa-experience' class="blockquote bq-warning mb-4">
<div class="row"> <i class="fas fa-briefcase fa-x mb-1 mr-3 ml-3" aria-hidden="true"></i>
<h5 class="font-weight-bold mb-3">
Agronomist | Monitoring & Evaluation Officer | Data Analyst
</h5>
</div>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">Ministry of Agriculture, Guyana <i
class="fas fa-circle icon-bullet"></i> Full-time</p>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
November 2014 - November 2019 <i class="fas fa-circle icon-bullet"></i> 5yrs
</p>
<div class="mb-0 ml-1 dark-grey-text">
<ul>
<li>
<strong>Spearheaded the digital transformation</strong> of the Guyana Livestock Development Authority (GLDA), transitioning from paper-based records to a hybrid system incorporating electronic records via Dropbox, significantly improving data accessibility and management.
</li>
<li>
<strong>Analyzed GLDA's transactional data</strong> to provide actionable insights and facilitate data-driven decision-making, contributing to improved operational efficiency and strategic planning.
</li>
<li>
<strong>Developed and monitored key performance indicators (KPIs)</strong> for GLDA, providing a clear and measurable framework for tracking progress and identifying areas for improvement.
</li>
<li>
<strong>Provided data-driven consulting services</strong> to private farmers, analyzing farming data and offering tailored feedback to enhance profitability and optimize farming operations.
</li>
<li>
<strong>Empowered colleagues</strong> by providing technical training and guidance on MS Excel and Power BI, enabling them to perform data analysis effectively and generate insightful monthly reports.
</li>
</ul>
</div>
</blockquote>
<blockquote id='diamond-hospital-experience' class="blockquote bq-warning mb-4">
<div class="row"> <i class="fas fa-briefcase fa-x mb-1 mr-3 ml-3" aria-hidden="true"></i>
<h5 class="font-weight-bold mb-3">
Records Clerk
</h5>
</div>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">Diamond Regional Hospital, Guyana <i
class="fas fa-circle icon-bullet"></i> Full-time</p>
<p class="font-weight-bold ml-1 dark-grey-text mb-2">
November 2009 - March 2011 <i class="fas fa-circle icon-bullet"></i> 1yr 5 mos
</p>
<div class="mb-0 ml-1 dark-grey-text">
<ul>
<li>
<strong>Streamlined patient intake processes</strong> by ensuring all necessary documentation was complete prior to doctor consultations, minimizing delays and enhancing efficiency.
</li>
<li>
<strong>Implemented an organized system for patient records</strong>, facilitating quick and accurate retrieval of information, ultimately improving patient care and administrative efficiency.
</li>
<li>
<strong>Provided clear and empathetic guidance</strong> to patients, directing them to the appropriate departments for their healthcare needs, enhancing patient satisfaction and optimizing hospital workflow.
</li>
</ul>
</div>
</blockquote>
</div>
<!-- First column -->
<!-- Second column -->
<div class="col-lg-5 offset-lg-1 col-md-12 mb-4 wow fadeIn" data-wow-delay="0.4s">
<!-- Second heading -->
<div class="d-flex justify-content-start">
<h4 class="text-center text-uppercase mb-5 pb-3 mt-4 wow fadeIn" data-wow-delay="0.2s">My
<strong>Skills</strong>
</h4>
</div>
<!-- Description -->
<p>Since 2017, I've been working on improving my software development skills on a need to know basis.</p>
<!-- Description -->
<div class="row">
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">
Flutter
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">Dart
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">
Firebase
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">
Cloud Firestore
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">
Cloud Functions
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">
Cloud Storage
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">GenAI (Gemini models)
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">Django
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">Plotly
Dash
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">Python
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">HTML
</p>
<p class="black-text text-uppercase font-weight-bold col-lg-12 col-md-4 col-sm-6" align="justify">CSS
</p>
</div>
<!-- <div class="md-progress">
<div class="progress-bar" role="progressbar" style="width: {{ developer_skill.progress }}%"
aria-valuenow="25" aria-valuemin="0" aria-valuemax="100"></div>
</div> -->
</div>
</div>
<!-- Second column -->
</div>
<!-- First row -->
</section>
<!-- Second section -->
</div>
</div>
<!-- Second container -->
<!-- Streak -->
<div class="streak streak-photo streak-md"
style="background-image:url('https://mdbootstrap.com/img/Photos/Horizontal/Work/12-col/img%20%2811%29.jpg')">
<div class="mask flex-center rgba-indigo-strong">
<div class="white-text smooth-scroll mx-4">
<h2 class="h2-responsive wow fadeIn mb-5"><i class="fas fa-quote-left" aria-hidden="true"></i> There are no
solutions. There are only trade-offs. <i class="fas fa-quote-right" aria-hidden="true"></i></h2>
<h5 class="text-center font-italic wow fadeIn" data-wow-delay="0.2s">~ Thomas Sowell</h5>
</div>
</div>
</div>
<!-- Streak -->
<!-- Fourth container -->
<div class="container">
<!-- Fourth section -->
<section id="works" class="section mb-5">
<!-- Projects section v.2 -->
<section id="portfolio" class="section mt-2 pb-5 mb-4">
<div class="container">
<!-- Section heading -->
<div class="row mt-4">
<div class="col-md-12 ">
<h2 class="text-uppercase text-center font-weight-bold my-4 pt-5 wow fadeIn" data-wow-delay="0.2s">My
projects</h2>
<hr class="between-sections">
<p class="text-center w-responsive mx-auto mt-5 wow fadeIn" data-wow-delay="0.2s">
Below are the major projects I have been working on. </p>
</div>
</div>
</div>
<!-- First column -->
<div class="col-md-12 wow fadeIn" data-wow-delay="0.4s">
<!-- Nav tabs -->
<ul class="nav md-pills flex-center flex-wrap mx-0" role="tablist">
<li class="nav-item">
<a id="buttonallapps" class="nav-link active font-weight-bold" data-toggle="tab" href="#panelallapps"
role="tab">
<br>ALL</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" data-toggle="tab" href="#panelwebapps" role="tab">
<br>Web Apps</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" data-toggle="tab" href="#paneldashboards" role="tab">
<br>Dashboards</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" data-toggle="tab" href="#panelmobileapps" role="tab">
<br>Mobile Apps</a>
</li>
<li class="nav-item">
<a class="nav-link font-weight-bold" data-toggle="tab" href="#paneldesktopapps" role="tab">
<br>Desktop Apps</a>
</li>
</ul>
</div>
<!-- Tab panels -->
<div class="tab-content">
<!-- Panel 1 -->
<div class="tab-pane fade show in active" id="panelallapps" role="tabpanel">
<br>
<div class="row row-cols-1 row-cols-md6 ">
<div id="lokademy" class="col mb-4 col-md-6">
<div class="card chart-card">
<div class="card-body pb-0">
<div class="d-flex justify-content-center">
<p class="display-4 text-center ">
<a href="https://github.com/CurtlyCritchlow/lokademy">Lokademy</a>
</p>
</div>
</div>
<div class="classic-tabs">
<ul class="nav tabs-white nav-fill" role="tablist">
<li class="nav-item ml-0">
<a class="nav-link waves-light active" data-toggle="tab" href="#panellokademyintroduction" role="tab">Introduction</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panellokademypurposeandgoal" role="tab">Purpose and Goal</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panellokademyspotlight" role="tab">Technical Highlights</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panellokademycurrentstatus" role="tab">Current Status</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panellokademylessonlearned" role="tab">Key Learnings</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panellokademyscreenshots" role="tab">Screenshots</a>
</li>
</ul>
<div class="tab-content rounded-bottom">
<div class="tab-pane fade in show active" id="panellokademyintroduction" role="tabpanel">
<div>
<p class="project-content">
Lokademy is an AI-powered learning platform designed to assist students preparing for the Caribbean Secondary Examination Certificate (CSEC) exams. By leveraging the capabilities of Google's Gemini models, Lokademy simulates the guidance of a dedicated teacher, providing students with personalized support and resources.
</p>
<p class="project-content">
The platform offers comprehensive content aligned with the CSEC syllabus, facilitating in-depth understanding and knowledge testing. Lokademy goes beyond traditional learning tools by providing students with detailed analysis of quiz questions, enabling them to identify areas for improvement and refine their understanding.
</p>
<p class="project-content">
This Flutter mobile app is currently in private development on <a href="https://github.com/CurtlyCritchlow/lokademy">GitHub</a>. For more information or to request access, please feel free to contact me.
</p>
</div>
</div>
<div class="tab-pane fade" id="panellokademypurposeandgoal" role="tabpanel">
<div>
<p class="project-content">
Lokademy was born from both personal and practical aspirations. Inspired by my wife's unwavering dedication as a teacher, I envisioned a platform that could replicate the invaluable support and commitment she offers her students on their journey to CSEC success.
</p>
<p class="project-content">
Beyond its sentimental origins, Lokademy aims to address practical challenges in education:
</p>
<ul>
<li>
Provide students with limited access to qualified teachers with an alternative avenue to excel in their CSEC studies.
</li>
<li>
Deliver personalized feedback on quizzes, addressing the common hurdle of student-to-teacher ratios that hinder individual attention.
</li>
<li>
Offer a resilient learning solution for students facing disruptions due to personal or national emergencies, ensuring educational continuity in challenging circumstances.
</li>
</ul>
</div>
</div>
<div class="tab-pane fade" id="panellokademyspotlight" role="tabpanel">
<div>
<p class="project-content">
Developing Lokademy has been an incredibly rewarding experience. This project has deepened my understanding of Generative AI and its vast potential within the education space, particularly how to seamlessly integrate it into a user-friendly Flutter app.
</p>
<p class="project-content">
Key technical features of the app include:
</p>
<ul>
<li>
Comprehensive CSEC Syllabus Content for core science subjects: Biology, Chemistry, Physics, and Integrated Science.
</li>
<li>
An AI-powered chatbot designed to provide insightful answers to students' questions across various CSEC subjects.
</li>
<li>
An interactive chatbot that allows students to test their knowledge through quizzes and receive personalized feedback, enhancing their learning experience and understanding.
</li>
</ul>
</div>
</div>
<div class="tab-pane fade" id="panellokademycurrentstatus" role="tabpanel">
<div>
<p class="project-content">
Lokademy is currently under active development and undergoing rigorous testing to ensure a seamless and valuable learning experience for students.
</p>
</div>
</div>
<div class="tab-pane fade" id="panellokademylessonlearned" role="tabpanel">
<div>
<p class="project-content">
Lokademy has been one of the most engaging and enriching projects I've undertaken. Building my first AI-based app from the ground up has significantly expanded my knowledge and practical experience with AI technologies.
</p>
<p class="project-content">
Key learnings from this project include:
</p>
<ul>
<li>
Harnessing the power of cloud functions to run sophisticated AI models efficiently and effectively.
</li>
<li>
Mastering the art of prompt design to elicit accurate and contextually relevant responses from AI models.
</li>
<li>
Gaining proficiency with the Dart `google_generative_ai` package, seamlessly integrating Gemini's capabilities into the Flutter app.
</li>
<li>
Implementing efficient data handling techniques to fetch and receive chat history from Cloud Firestore and seamlessly pass it to the Gemini model for contextual understanding and responses.
</li>
<li>
Developing effective strategies to provide system instructions to the Gemini model, precisely constraining its behavior to align with Lokademy's educational goals and purpose.
</li>
<li>
Successfully grounding the AI model in the CSEC syllabus content, ensuring that responses are relevant, accurate, and aligned with the curriculum.
</li>
</ul>
</div>
</div>
<div class="tab-pane fade" id="panellokademyscreenshots" role="tabpanel">
<div class="row mb-4 mr-3">
<div class="col-md-6 my-3">
<video width="420" height="420" controls class="card-img-top">
<source src="assets/video/lokademy/lokademy_demo.mp4" type="video/mp4">
Your browser does not support the video tag.
</video>
<p class="project-content text-center">
A short demo showcasing Lokademy's interactive chatbot, allowing students to ask questions and receive personalized feedback in real-time.
</p>
</div>
<div class="col-md-6 my-3">
<img src="assets/img/lokademy/home.png" class="card-img-top" alt="Home Screen of Lokademy">
<p class="project-content text-center">
Lokademy's welcoming home screen, providing students with clear navigation to access CSEC syllabus content, engage with the AI chatbot, and test their knowledge through quizzes.
</p>
</div>
<div class="col-md-6 text-left mt-3">
<img src="assets/img/lokademy/chat.png" class="card-img-top" alt="Chat Screen of Lokademy">
<p class="project-content text-center">
The intuitive chat interface where students can ask subject-specific questions and receive detailed answers from Lokademy's AI-powered chatbot.
</p>
</div>
<div class="col-md-6 text-left mt-3">
<img src="assets/img/lokademy/quiz.png" class="card-img-top" alt="Quiz Screen of Lokademy">
<p class="project-content text-center">
Lokademy's quiz section, where students can test their understanding of CSEC subjects and receive personalized feedback to identify areas for improvement.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="sshNoPortsDesktop" class="col mb-4 col-md-6">
<div class="card chart-card">
<div class="card-body pb-0">
<div class="d-flex justify-content-center">
<p class="display-4 text-center ">
<a href="https://apps.apple.com/app/ssh-no-ports-desktop/id6476198591?mt=12">SSH No Ports Desktop</a>
</p>
</div>
</div>
<div class="classic-tabs">
<ul class="nav tabs-white nav-fill" role="tablist">
<li class="nav-item ml-0">
<a class="nav-link waves-light active" data-toggle="tab" href="#panelsshNoPortsDesktopintroduction" role="tab">Introduction</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panelsshNoPortsDesktoppurposeandgoal" role="tab">Purpose and Goal</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panelsshNoPortsDesktopspotlight" role="tab">Technical Highlights</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panelsshNoPortsDesktopcurrentstatus" role="tab">Current Status</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panelsshNoPortsDesktoplessonlearned" role="tab">Key Learnings</a>
</li>
<li class="nav-item">
<a class="nav-link waves-light" data-toggle="tab" href="#panelsshNoPortsDesktopscreenshots" role="tab">Screenshots</a>
</li>
</ul>
<div class="tab-content rounded-bottom">
<div class="tab-pane fade in show active" id="panelsshNoPortsDesktopintroduction" role="tabpanel">
<div>
<p class="project-content">
SSH No Ports Desktop revolutionizes remote device access by providing a secure and user-friendly method for network administrators to connect to devices via SSH, while simultaneously eliminating common network attack surfaces and reducing administrative overhead.
</p>
<p class="project-content">
This innovative Flutter desktop application offers a seamless and efficient way to access remote devices, regardless of network complexities or physical location, all without compromising security.
</p>
<p class="project-content">
SSH No Ports Desktop is available on <a href="https://github.com/atsign-foundation/noports/tree/trunk/packages/dart/sshnp_flutter">GitHub</a>, the <a href="https://apps.microsoft.com/detail/9pbx5vrvqc2z?hl=en-gb">Microsoft Store</a>, and <a href="https://apps.apple.com/app/ssh-no-ports-desktop/id6476198591?mt=12">App Store</a>, showcasing its cross-platform compatibility and accessibility for a wide range of users.
</p>
</div>
</div>
<div class="tab-pane fade" id="panelsshNoPortsDesktoppurposeandgoal" role="tabpanel">
<div>
<p class="project-content">
SSH No Ports Desktop was developed with the core objective of empowering network administrators with enhanced security and flexibility when managing remote devices.
</p>
<p class="project-content">
The application addresses key challenges faced by administrators, enabling them to:
</p>
<ul>
<li>
Securely access devices from any location, whether behind routers, NAT, firewalls, VPNs, private/1918 addresses, or even on the move, eliminating traditional barriers to remote access.
</li>
<li>
Connect to devices without the need for complex network reconfigurations, such as setting up port forwarding on routers or relying on VPNs, simplifying the connection process and reducing administrative burden.
</li>
<li>
Significantly strengthen network security by eliminating the requirement for open listening ports, including the commonly targeted port 22, effectively reducing the attack surface and mitigating potential security vulnerabilities.
</li>
</ul>
</div>
</div>
<div class="tab-pane fade" id="panelsshNoPortsDesktopspotlight" role="tabpanel">
<div>
<p class="project-content">
Working on SSH No Ports Desktop was a fantastic opportunity to collaborate with talented backend engineers and gain a deeper understanding of the core SSH No Ports package. The process of integrating this package into the Flutter desktop app, along with providing constructive feedback on bugs and feature requests, was both challenging and rewarding.
</p>
<p class="project-content">
Key technical highlights of the app include:
</p>
<ul>
<li>
A streamlined connection profile system that allows users to save and manage device information, including names, addresses, ports, and other relevant details, facilitating quick and easy connections.
</li>
<li>
Robust support for private key authentication, providing an additional layer of security to prevent unauthorized access to remote devices.
</li>
<li>
A built-in terminal emulator that provides users with full access to the device's file system and command-line interface, enabling efficient remote management and troubleshooting.
</li>
</ul>
</div>
</div>
<div class="tab-pane fade" id="panelsshNoPortsDesktopcurrentstatus" role="tabpanel">
<div>
<p class="project-content">
SSH No Ports Desktop is publicly available on <a href="https://github.com/atsign-foundation/noports/tree/trunk/packages/dart/sshnp_flutter">GitHub</a>, <a href="https://apps.microsoft.com/detail/9pbx5vrvqc2z?hl=en-gb">Microsoft Store</a>, and <a href="https://apps.apple.com/app/ssh-no-ports-desktop/id6476198591?mt=12">App Store</a>, making it accessible to a broad audience of network administrators and developers across different platforms.
</p>
</div>
</div>
<div class="tab-pane fade" id="panelsshNoPortsDesktoplessonlearned" role="tabpanel">
<div>
<p class="project-content">
This project was instrumental in expanding my understanding of SSH and its complexities. Before developing SSH No Ports Desktop, my knowledge of SSH was limited; however, through this project, I gained valuable insights into its inner workings and security implications.
</p>
<p class="project-content">
Key learnings from this project include:
</p>
<ul>
<li>
Collaborating effectively with backend engineers to integrate and utilize their SSH No Ports core package, providing valuable feedback for continuous improvement.
</li>
<li>
Gaining a deep understanding of SSH key management, including the use of private and public keys for user authentication, ensuring secure and reliable access control.
</li>
<li>
Mastering the integration of a terminal emulator into a Flutter application, extending the app's functionality and providing users with a powerful tool for remote device management.
</li>
<li>
Learning to implement keyboard shortcuts within the Flutter framework, enhancing the user experience and streamlining common actions within the app.
</li>
</ul>
</div>