-
Notifications
You must be signed in to change notification settings - Fork 0
/
index_1_6_24.html
1375 lines (1210 loc) · 78.4 KB
/
index_1_6_24.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>
<!--
iiii
i::::i
iiii
rrrrr rrrrrrrryyyyyyy yyyyyyaaaaaaaaaaaaa nnnn nnnnnnnn zzzzzzzzzzzzzzzzuuuuuu uuuuuurrrrr rrrrrrrrr rrrrr rrrrrrrrr iiiiiinnnn nnnnnnnn cccccccccccccccc ooooooooooo mmmmmmm mmmmmmm
r::::rrr:::::::::y:::::y y:::::ya::::::::::::an:::nn::::::::nn z:::::::::::::::u::::u u::::ur::::rrr:::::::::r r::::rrr:::::::::ri:::::n:::nn::::::::nn cc:::::::::::::::coo:::::::::::oo mm:::::::m m:::::::mm
r:::::::::::::::::y:::::y y:::::y aaaaaaaaa:::::n::::::::::::::nnz::::::::::::::zu::::u u::::ur:::::::::::::::::rr:::::::::::::::::ri::::n::::::::::::::nn c:::::::::::::::::o:::::::::::::::m::::::::::mm::::::::::m
rr::::::rrrrr::::::y:::::y y:::::y a::::nn:::::::::::::::zzzzzzzz::::::z u::::u u::::urr::::::rrrrr::::::rr::::::rrrrr::::::i::::nn:::::::::::::::n c:::::::cccccc:::::o:::::ooooo:::::m::::::::::::::::::::::m
r:::::r r:::::ry:::::y y:::::y aaaaaaa:::::a n:::::nnnn:::::n z::::::z u::::u u::::u r:::::r r:::::rr:::::r r:::::i::::i n:::::nnnn:::::n c::::::c cccccco::::o o::::m:::::mmm::::::mmm:::::m
r:::::r rrrrrrr y:::::y y:::::y aa::::::::::::a n::::n n::::n z::::::z u::::u u::::u r:::::r rrrrrrrr:::::r rrrrrri::::i n::::n n::::n c:::::c o::::o o::::m::::m m::::m m::::m
r:::::r y:::::y:::::y a::::aaaa::::::a n::::n n::::n z::::::z u::::u u::::u r:::::r r:::::r i::::i n::::n n::::n c:::::c o::::o o::::m::::m m::::m m::::m
r:::::r y:::::::::y a::::a a:::::a n::::n n::::n z::::::z u:::::uuuu:::::u r:::::r r:::::r i::::i n::::n n::::n c::::::c cccccco::::o o::::m::::m m::::m m::::m
r:::::r y:::::::y a::::a a:::::a n::::n n::::n z::::::zzzzzzzu:::::::::::::::ur:::::r r:::::r i::::::in::::n n::::n c:::::::cccccc:::::o:::::ooooo:::::m::::m m::::m m::::m
r:::::r y:::::y a:::::aaaa::::::a n::::n n::::nz::::::::::::::zu:::::::::::::::r:::::r r:::::r i::::::in::::n n::::n ...... c:::::::::::::::::o:::::::::::::::m::::m m::::m m::::m
r:::::r y:::::y a::::::::::aa:::an::::n n::::z:::::::::::::::z uu::::::::uu:::r:::::r r:::::r i::::::in::::n n::::n .::::. cc:::::::::::::::coo:::::::::::oom::::m m::::m m::::m
rrrrrrr y:::::y aaaaaaaaaa aaaannnnnn nnnnnzzzzzzzzzzzzzzzzz uuuuuuuu uuurrrrrrr rrrrrrr iiiiiiiinnnnnn nnnnnn ...... cccccccccccccccc ooooooooooo mmmmmm mmmmmm mmmmmm
y:::::y
y:::::y
y:::::y
y:::::y
yyyyyyy
-->
<meta charset="UTF-8" />
<!--
filename: index.html
edited by: Ryan Zurrin
edited on: 7/8/2022
description: template used for the final project from
"https://www.designstub.com/projects/folio-personal-portfolio-template/"
-->
<!--[if lt IE 7 ]> <html class="ie ie6 no-js" lang="en"> <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 no-js" lang="en"> <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 no-js" lang="en"> <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 no-js" lang="en"> <![endif]-->
<!--[if gt IE 9]><!-->
<html class="no-js" lang="en">
<!--<![endif]-->
<head>
<!-- Google Tag Manager -->
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-5M3DGZN');</script>
<!-- End Google Tag Manager -->
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-168652707-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-168652707-3');
</script>
<script src="https://www.google.com/recaptcha/api.js"></script>
<!-- setting Logo and character set for older IE versions-->
<link rel="shortcut icon" href="logo-good.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=edge"><!-- chrome=1"-->
<!-- Metas Page details-->
<title>Ryan Zurrin's Personal Portfolio Page</title>
<meta name="description"
content="Ryan Zurrin, Resume & Portfolio with Coding projects, Artwork, Woodworking and with personal journal">
<meta name="keywords" content="Ryan Zurrin, Web Designer Boston MA, Zurrin, Zurrin Programmer, web developer berkshires, BCC student, UMass Boston student">
<meta name="msaapplication-TileImage" content="logo-good.ico" />
<!-- Mobile Specific Metas-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--main style-->
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/main.css">
<!--google font style-->
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
<!--font-family: 'Metrophobic', serif;-->
<link href='https://fonts.googleapis.com/css?family=Crimson+Text:400,600,400italic,600italic' rel='stylesheet'
type='text/css'>
<!--font-family: 'Open Sans', sans-serif;-->
<!-- font icon css style-->
<link rel="stylesheet" href="css/font-awesome.min.css">
</head>
<body>
<a name="top"></a>
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-5M3DGZN"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
<!-- Preloader -->
<div id="preloader">
<div id="status"></div>
</div>
<!--wrapper start-->
<div class="wrapper noGap" id="wrapper">
<!--Header start -->
<header>
<!--menu start-->
<div class="menu">
<a href="#"aria-label="Menu start" ar class="nav-icon" id="nav-show"><i class="fa fa-bars"></i></a>
<div class="navbar-wrapper">
<div class="container">
<!--start navigation bar-->
<div class="navwrapper">
<div class="navbar navbar-inverse navbar-static-top">
<div class="container">
<div class="logo"></div> <!--logo as a css div background-->
<div class="navArea"><a href="#" class="closeMenu"title="Close menu" aria-label="close the top menu"><i class="fa fa-times"></i></a>
<div class="navbar-header">
<button type="button" area-label="menu toggle open - close" title="Open or close menu" aria-label=""class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span> <span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Menu</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="menuItem active"><a href="#wrapper">Home</a></li>
<li class="menuItem"><a href="#aboutus">About Me</a></li>
<li class="menuItem"><a href="#experience">Experience</a></li>
<li class="menuItem"><a href="#education">Education</a></li>
<li class="menuItem"><a href="#ourwork">Portfolio</a></li>
<li class="menuItem"><a href="#myjournal">Journal</a></li>
<li class="menuItem"><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End navigation bar -->
</div>
</div>
</div>
<!--menu end-->
<!--banner start-->
<div class="banner row" id="banner">
<div class="bannerText">
<h3 id="helloworld">Hello World! My name is,</h3>
<h1><strong><div id="myName">Ryan Zurrin</div></strong></h1>
<p style="font-size:20px;" ><strong>A Lifelong Learner, Web Developer, and Software Engineer</strong></p>
</div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 noPadd slides-container" style="height:100%">
<!--background slide show start-->
<div class="slide">
<img loading="lazy" src="images/header-image/ryanzpaintingshow.png" alt="Ryan Zurrin Painting" width="100px"> </div>
<div class="slide">
<img loading="lazy" src="images/header-image/ryanzlookcool.png" alt="Ryan Zurrin with a painting"width="100px"> </div>
<div class="slide">
<img loading="lazy" src="images/header-image/ryanwaterfallhike.png" alt="Ryan Zurrin hiking "width="100px"> </div>
<div class="slide">
<img loading="lazy" src="images/header-image/swampflower.JPG" alt="swamp lilly"width="100px"> </div>
<!--background slide show end-->
</div>
</div>
<!--banner end-->
</header>
<!--Header end -->
<!--about us start-->
<section class="aboutus" id="aboutus">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2>About me</h2>
<h3>A brief introduction on my history</h3>
</div>
</div>
</div>
<div class="row">
<!--this is the start of the right column-->
<div class=" col-lg-4 col-md-4 col-sm-4 col-xs-12 pull-right media center">
<div class="center"><img loading="lazy" src="images/ryanaboutme.jpg"
alt="ryan zurrin picture" id="myPic"><br><br></div>
<div>
<h3 class="center">Quick Links:</h3><br>
<div class="publication">
<a href="https://openreview.net/pdf?id=4E93Xdg98u" target="_blank">
<img src="images/zurrin2023outlier.png" alt="Submit" class="thumbnail">
</a>
<div class="publication-text">
<a href="https://openreview.net/pdf?id=4E93Xdg98u" target="_blank">
<p class="publication-paragraph"><strong>Outlier Detection for Mammograms</strong></p>
</a>
<p class="publication-paragraph">International Conference on Medical Imaging with Deep Learning, 2023</p>
</div>
</div>
<a role="button" class="btn btn-primary btn-lg" href="https://gofund.me/650f7ba9" target="_blank">
<img src="images/gofundme.png" alt="Submit" width="265"> </a><br><br>
<a role="button" class="btn btn-primary btn-lg" href="http://ryazur.com" target="_blank">
<img src="images/watermark.PNG" alt="Submit" width="265"> </a><br>
<br>
<p><a role="button" class="btn btn-primary btn-lg dl-buttons" href="resume2023.pdf" target="_blank" alt="Resume 2023 PDF file">
Resume 2023</a></p>
<p><a role="button" class="btn btn-primary btn-lg dl-buttons" href="BCC_Transcript.pdf" target="_blank" alt="BCC Transcript PDF file">
Transcript A.S. CIS</a></p>
<p><a role="button" class="btn btn-primary btn-lg dl-buttons" href="work_experience.pdf" target="_blank" alt="work experience PDF file">
Work Experience</a></p>
<p><a role="button" class="btn btn-primary btn-lg dl-buttons" href="understandMyselfReport.pdf" target="_blank" alt="Personality Report PDF file">
Personality Report</a></p>
<!-- add image from images/mpsych/nvidiaA100.jpg-->
<div class="center"><img loading="lazy" src="images/mpsych/nvidiaA100.jpg"
alt="nvidia A100 cluster"><br><br></div>
<!-- <p><a role="button" class="btn btn-primary btn-lg dl-buttons" href="http://ryazur.com" target="_blank" alt="Book Review Page">
My Book Reviews</a></p> -->
<!-- <div class="gfm-embed" data-url="https://www.gofundme.com/f/9usfv8-ryans-college-expenses/widget/medium/"></div><script defer src="https://www.gofundme.com/static/js/embed.js"></script> -->
</div>
</div>
<!--This is the end of the right column content-->
<div class=" col-lg-7 col-md-7 col-sm-7 col-xs-12 pull-left media">
<h4><strong>Father & Full Time Student in the Computer Sciences</strong></h4>
<p> I'm from Berkshire County, where I was born and raised. From the wonderful City of Pittsfield Massachusetts where
I recently graduated with an Associate in Science degree in computer science. I recently moved to Boston to pursue
a Bachelor in Science degree, at the University of Massachusetts Boston.
I've always loved computers, electronics, and just learning how things work and function. </p>
<p>
My curiosities have given me the chance to explore many avenues in life, and have granted me the opportunities to try out many things before finally
settling with the Computer Sciences. Originally I started school as a fine arts major, mostly because of my previous experience with
painting and drawing. At the time it made sense for me to start there, because being creative was something I was good at and was an avenue I felt I would excel at.
Then, I landed a position as a computer lab assistant in the Digital Commons at Berkshire Community College.
This suddenly sparked and rekindled a flame of desire deep within me. That being my early childhood passions for computers and software.
In my younger days, I was always behind a keyboard and monitor, and even built my first computer when I was a teen. I can remember
how much I loved upgrading hardware, installing games and software, exploring all the files and code that made programs work (when available)!
It fascinated me then, and still does to this day.
</p>
<p>So, I made the switch from art classes to computer science classes. Where now I plan to someday
become a professional programmer and software developer/engineer. My goals are to eventually start using
the skills I obtain to work with a team of developers who are on a mission to build a better world.
I admire those who chase their dreams and I really feel using technology
as a medium is one of the best ways to reach as many people as possible, making their dreams a reality. With technology the possibilities are truly endless.
Like many before me, I am starting from the ground up. My success is built on the sweat and tears of my labor and hard work.
My ambition and determination have carried me to this moment, to academia, and to want more for myself.
I am now learning to do new and wondrous things, like designing algorithms, building websites, using machine learning,
implementing my own data structures to simplify and abstract away complexity and so much more.
Most importantly though, I am learning that to make the world a better place, it takes a team effort.
No one person, no matter how hard they may try, has all the answers. But as a team working together, the
possible solutions and ideas become endless.
</p>
<p>
I am ready and willing to push through the coming challenges that await me, and I am ready to give this new life my all and to do the hard work that
is required in building up a good solid foundation. I am ready to work with others in building a better world for us and our children.
Strong community, and team work are the key to building a solid foundation, and it is this foundation that I am ready to build the rest of my life upon.
</p>
<!-- add image to bottom located at images/mpsych/nvidiaPose.jpg-->
<div class="center"><img loading="lazy" src="images/mpsych/nvidiaPose.jpg"
alt="UMB MPSYCH Team posing with NVIDIA A100 Cluster"><br><br></div>
</div>
</div>
</div>
</section>
<!--about us end-->
<!--Skillset start -->
<section id="skillset" class="skillset">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="heading">
<h2>Skills & Experience</h2>
</div>
</div>
<div class="col-md-12">
<div class="col-md-6 col-sm-12 media">
<p>
Over 15 years of House Painting and General Property Maintenance experience. I've worked for
various employers and companies over the years,
all of which helped in building my current skill-set and experience. Big take away is there is usually
more than one way to get the same job done.
I also maintained my own painting business for three years; ‘All About Painting’. A
very valuable life experience.
Also I have done a fair share of plumbing and carpentry work.
The one thing I can say is, it doesn’t matter what path you decide to take in life,
if you are going to succeed and be truly great at what you do, it is going to take a lot of hard work and
dedication to achieve. Nothing good in life comes easy, nothing...
</p>
<p>
...and to that, these Skill Bars reflect the hard work I have put into becoming good at
certain things.
I will be updating this section to reflect my new skills as I begin to further my education in the
Computer Sciences. So keep checking back! This list of skills will be growing and changing as I do.
I truly believe
the best way to learn anything in life is by rolling up your sleeves and digging in. Whether it
be digging in the dirt or debugging dirty code, the only way to learn is to do!
</p>
<p>On that note, the skill bar percentages are just picked based on how I feel I perform in these areas and are
not decided based on any real
scientific or substantial method that would validate their accuracy. It is meant more as a rough gauge
of
my skills based on my intuition about these subjects and not meant to be an absolute fact. I don't want
anyone mislead. These values are represented as followed: 0% knows nothing up to 100% being a Jedi Master </p>
</div>
<div class="col-md-6 col-sm-12 topelement">
<div class="skillbar clearfix " data-percent="75%">
<div class="skillbar-title"><span>Python (3+)</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="75%">
<div class="skillbar-title"><span>C++98 - C++20</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="65%">
<div class="skillbar-title"><span>C (C99,C11)</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="70%">
<div class="skillbar-title"><span>Java (SE 8 - SE 11)</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="30%">
<div class="skillbar-title"><span>R</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="80%">
<div class="skillbar-title"><span>HTML (5)</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="65%">
<div class="skillbar-title"><span>CSS (3)</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="40%">
<div class="skillbar-title"><span>JS (ES6+)</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="80%">
<div class="skillbar-title"><span>WordPress / CMS</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="70%">
<div class="skillbar-title"><span>Access</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="90%">
<div class="skillbar-title"><span>Excel / Sheets</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="90%">
<div class="skillbar-title"><span>PowerPoint / Slides</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="95%">
<div class="skillbar-title"><span>Word / Docs / Forms</span></div>
<div class="skillbar-bar"></div><br>
<div class="skill-bar-percent"></div><br>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="90%">
<div class="skillbar-title"><span>House Painting / Maintenance</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="80%">
<div class="skillbar-title"><span>Drawing / Painting</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="60%">
<div class="skillbar-title"><span>Woodworking</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
<div class="skillbar clearfix " data-percent="100%">
<div class="skillbar-title"><span>Living & Learning</span></div>
<div class="skillbar-bar"></div>
<div class="skill-bar-percent"></div>
</div> <!-- End Skill Bar -->
</div>
</div>
</div>
</div>
</section>
<!--Skillset end -->
<!--Work Experties start -->
<section id="experience" class="myexperties">
<div class="container">
<div class="heading">
<h2>Work Experience</h2>
<h3>My current and previous associations</h3>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
August, 2022 <br>Current
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Part-time Researcher in the Psychiatry Neuroimaging Laboratory (PNL)</h4>
<h5><a href="https://mpsych.org/people" target="_blank">Brigham and Women's Hospital</a></h5>
<p> Work with a team of talented neuroscientists, clinicians, computer scientists, and researchers on
preprocessing and harmonizing magnetic resonance imaging (MRI) data from the Human Connectome Project (HCP).
There is well established and documented pipelines in place for the HCP data, but the data is not always in
the exact format or structure that the pipelines expect's and so primarily I have been working on preprocessing
the data to fit the pipelines. I have also been working on testing 3DSlicer which is a free and open source
software for medical image computing, visualization, and image-guided interventions. Being new to neuroimaging
I have been learning a lot about the field and the software, and have found it to be quite challenging but very
rewarding. I am just honored to get the opportunity to work with such a talented team of people. Check out the team
and work being done by the PNL on their <a href="https://pnl.bwh.harvard.edu/" target="_blank"><span>Homepage.</span></a>
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
February 28, 2022 <br>Current
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Undergraduate Machine Psychology Fellow, Data Science Student Researcher</h4>
<h5><a href="https://mpsych.org/people" target="_blank">University of Massachusetts Boston, Machine Psychology</a></h5>
<p> Learning from Professor <a href="https://danielhaehn.com/" target="_blank">Daniel Haehn</a>, PhD. and
<a href="https://www.linkedin.com/in/neha-goyal-696a30107/" target="_blank">Neha Goyal</a>. Our research is in the domain
of medical image processing and Machine Learning. Our goals are to build and train an efficient breast
cancer detection application as well as release the worlds largest mammography database. This will
give medical communities around the world access to quality mammograms and cancer detection tools.<br>
I have been responsible for building a flexible API for data exploration which allow us to access our
dataset in a robust and simplified manner. This gives fellow researchers an easy way to connect
to our medical images allowing us to gain meaningful insights into the data we have and how we can
best use it. I have also designed an API to simplify the use of a very complicated pre-existing classification tool.<br>
Currently I am working on building an outlier detection API that will harness the power of PYOD (Python library for outlier detection using ML)
and other existing automation techniques and tools, greatly improving our ability to remove the bad images from our final dataset.
We started with nearly 1 million mammograms and in the end we will be releasing
a database of no less than 70,000 mammograms, both 2D and 3D, fully annotated with ground truths and labels.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
June, 2020<br>Current
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Freelance Web developer and designer</h4>
<h5>HighREZ Design Studioz, Owner</h5>
<p>Building Business and event webpages. Helping customers, starting with a free consultation and then taking them through
every step of the design phase as we put together the requirements that bring to life the visions and ideas that make them
unique and different. Using these specifications as a launchpad we build up a brand on their new site using cutting edge frameworks and
lightening fast CMS platforms. These tools enable me to achieve quick and responsive results in less time and money than it would take
from a bigger less personal Web page marketing company. Using my passion for building things and my creative mindset coupled with the
new skills I've recently learned in school I have been able to build up a strong foundation in the web development field.
I decided to build a business that was manageable as well as something I feel is greatly in demand. With this I welcome you
to my new business landing page <a href="https://www.highrezstudioz.com" target="_blank"><span>HighREZ Design Studioz</span></a>.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
June 28, 2021 <br>August 28, 2021
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Technology Intern</h4>
<h5><a href="https://www.nrm.org" target="_blank">Norman Rockwell Museum</a></h5>
<p>I managed a number of projects ranging from a massive inventory and audit of all computer and a
audio/visual technology in Museum, to provisioning computers and mobile devices for digital experiences,
wiring the Museum, beta-testing virtual exhibitions and setting up bug tracking software for it,
and setting up and breaking down AV tech for complex hybrid public programs each week.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
January 2018<br>2020
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Work Study</h4>
<h5>IT Department (2019-2020), Computer Lab Assistant (2018-2019) </h5>
<p>Working around computers and helping fix problems, with computers. These were
great steppingstones and I was
lucky to get in with the computer lab and IT department at Berkshire Community College. Being involved in the behind-the-scenes action has
been a very enlightening experience. My responsibilities included things such as
imaging new computers, setting up and deploying computers for staff and students, helped to fix slow or not
working machines, doing any updates that were needed and in general just made sure the computers were
in smooth and efficient running order. These were my basic tasks; other tasks included naming and adding
computers to the schools domain, as well set up the default printers and
any of the software being used, making sure it was all registered and working properly.<br>
In the Lab we made sure anyone needing any kind of help got it. This included activities such as showing people how to log into accounts,
getting pdf's to print properly as well as setting the printer up to print for specific and unique tasks.
A lot of very basic stuff to help out and keep everyone working in a productive and meaningful manner.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
July,2006<br>August, 2017
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>House Painting and Maintenance</h4>
<h5>Painter/Plumber/Landscaper</h5>
<p>Most of my early adult hood and late teens was spent doing work that required a bit of physical
dexterity. Everything from cleaning and installing big oil furnaces to weeding
gardens and planting shrubbery. If there was something that needed to be fixed or required attention then I was there doing the job.
I loved the fact that I could get payed to help people do
the things that most people would not want to do. This was especially true of house painting. I painted houses more than
anything else, and even had my own business for a bit.
During winter months when the painting got slow, I was able to get work for a master plumber
where we would winterize homes, install gas furnaces, pipe up bathroom and kitchens doing all the necessary plumbing that would be needed.
It was all great experience and has really prepared me to apply a strong discipline within my academics and studying.
</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">
January, 1996<br>June, 2001
</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Entry Level Jobs</h4>
<h5>Cashier / Stocker / Customer Service / Food Service / Tree Service</h5>
<p>During the early years I started out working just like anyone else I suppose. I Had a couple jobs at the local
mall where I was able to start gaining experience in various work-related
tasks and more importantly, I was able to gain experience with interacting with people.
My early experiences were all across the board and I am very grateful for it now. Looking back at the lessons I learned,
only now in retrospect is it clear that everything that has ever happened to me has brought me to this point now.
And regardless of the mistakes made, I can honestly say I am grateful for it all as even in the mistakes were
valuable lessons learned that can never be taken from me. My experience is diverse and unique and has built in me
character and strength.
</p>
</div>
</div>
</div>
</section>
<!--Work Experties end -->
<!--Education & diploma start -->
<section class="educationdiploma" id="education">
<div class="container">
<div class="heading">
<h2>Education & Achievements</h2>
<h3>My life's greatest accomplishments outside of being a Dad.</h3>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">CSM Undergraduate Research Fellowship <br />
Fall, 2022<br> Unsupervised Outlier Detection for Large Image Collection </div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Research supported by Oracle and other sponsors</h4>
<h5>Working with Professor Daniel Haehn as my mentor and faculty supervisor</h5>
<p>This research is focused on using unsupervised learning to detect bad images
in our breast cancer dataset of over 200,000 images. The goal is to determine which
combination of features being fed into which algorithm(s) will produce the optimal
results of filtering out unusable images from our data. Manually going over this many
mammograms is not a feasible option as it would take much too long and be prone to possible
human errors, as well it could lead to biases which would than produce an unbalanced dataset.
We are hoping instead that with the help of unsupervised machine learning algorithms
which are implemented within some powerful Python libraries such as PYOD, Scikit-image,
and Mahotas, that we will be able to find a way to automatically detect outliers in our data.
This would be a great contribution to the field of medical imaging and will hopefully
be useful to many more researches who work with mammogram datasets.
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">Transferred to University of Massachusetts Boston<br />
September 1st, 2021<br> Projected Graduation: Fall 2023</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Started my Undergraduate Studies in Computer Science</h4>
<h5>Working towards receiving my degree of, Bachelor in Science</h5>
<p>I am very excited to announce that I have been given an amazing opportunity to pursue my
advanced degree in the field of Computer Science at the University of Massachusetts in
Boston, MA. I am now living in Boston, surrounded by an
amazing city filled with opportunity. There are far more internships and tech companies available in
Boston and I plan on securing some experience in a professional setting before I finish my degree.
I plan to work hard and use every chance available to grow and learn.
This chapter of my life will be a key component in my coming success and the bedrock I build the rest of my future on.
There is only one goal for me now, and that is to achieve my dream of becoming an experienced and working software engineer.</p>
<h5>Current GPA: 3.886</h5>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">January, 2018<br />
Graduated: Spring 2021</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4><a href="https://www.berkshirecc.edu/academics/programs-and-classes/computer-information-systems/certificate-options/computer-science-option-as-degree.php" target="_blank">Computer Information Systems</a></h4>
<h5>Associates in Computer Information Systems (CS) / Certificate in Computer Programming - Technical</h5>
<p>Having chosen the Computer Science path in the CIS degree program I have gained a
much deeper and broader understanding of the way computer systems work and function.
There was heavy emphasis on mathematics and the curriculum was designed to prepare
students to move on to a baccalaureate institution for further study.</p>
<h5>Update: Graduated with an Associates in Science in Computer Information Systems and a Certificate in Computer Programming</h5>
<p>I will be transferring in the Fall 2021 to the University of Massachusetts Boston to
finish up my studies and work towards receiving my Bachelor in Science in Computer Science. I am proud of
my choice ultimately as it was the one that fit my budget. I am proud to say that I was accepted into some
pretty amazing schools such as Rensselaer Polytechnic Institute, Worcester Polytechnic Institute,
Wentworth Institute of Technology, to name a few. Though these schools would of been amazing to
attend I unfortunately would of had too much unmet financial obligations.
But as I like to say, it's not the school that makes the man, its the man that makes the school.
So here I come UMass Boston, ready to learn and be that Beacon!
</p>
<h5>Final GPA: 3.689 </h5>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">CIS Program Award<br />
April 29th, 2021</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Awarded the CIS Program Award for 2021</h4>
<h5>Departmental Awards are given each year to top students within each field of study</h5>
<p>I was beyond honored and humbled to have been chosen as the award recipient for the
2021 Program award in the Computer Information Systems discipline. I have always had a
fondness for computers and how they worked and even would spend my allowance money as a
kid on books ranging from hardware repair to programming topics like c++. Now to be fully
emerged within the field feels like I have truly found my way home. Computation and problem
solving is just a built-in function of my brain for which now I have the skills to transfer
this into working programs for computers! This truly is one of my life's biggest Joys,
and to get recognition for all the hard work feels nothing short of amazing.</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">Honors Convocation<br />
October 18, 2018</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4>Academic Excellence in Collegiate Studies</h4>
<h5>Received awards for doing well in my studies</h5>
<p>This was an amazing feeling to be recognized for doing a good job. I have never had a
chance before now to experience anything like that and I was so amazed and excited to
have had that opportunity. I also receive a Falconer Award in Fine Arts around this
time as well. This was because I first started as a Fine Arts major before moving
to CS.</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">Inducted on:<br />
April, 2019</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4><a href="https://www.berkshirecc.edu/academics/honors/phi-theta-kappa.php" target="_blank">Phi Theta Kappa</a></h4>
<h5>Xi Alpha - Berkshire County Chapter</h5>
<p>Due to outstanding grades, I was invited to join the PTK which is the 'International Honor society of American Community and Junior Colleges.'
I was VP of Communications for the Xi Alpha chapter at BCC! 2019 semester. Our officer team took our chapter from a one star to a five-star chapter.
Our Honors in action project was about the impacts of community policing and how it helps bring together the community and cops in a more trusting
and meaningful manner. Part of this project was a big boot and shoe drive that was supported and sponsored by the local police departments Officer
Derby, a leader on the front lines of community policing</p>
</div>
</div>
<div class="row media">
<div class="col-xs-12 col-sm-3 col-md-3 col-lg-3">
<div class="expertiesico">STEM - 2019 - 2020<br />
TRiO - 2018 - 2020<br />
Robotics Club 2019</div>
</div>
<div class="expertiesdesc col-xs-12 col-sm-9 col-md-9 col-lg-9">
<h4><a href="https://www.berkshirecc.edu/academics/stem/stem-starter-academy/" target="_blank">STEM Starter Academy</a> / <a href="https://www.berkshirecc.edu/academics/academic-support/the-trio-program/" target="_blank">TRIo Program</a> / <a href="http://jordanchretien.site/finalproject/index.html" target="_blank"> Robotics Club</a></h4>
<h5>College Support Groups and Extracurricular Activities</h5>
<p>Being actively involved with programs and activities that are there on campus is a good way to build up interpersonal skills and relationships.
Having access to information, resources and to members in the technology fields is very helpful when learning about new and exciting things.
I've been very lucky to be able to have so many great people supporting me and my continued education. Being a non-traditional student has
made it a bit difficult at times when it comes to learning new complex ideas and just having a place to turn to get the help needed has been a key
component in my successful restructuring.</p>
</div>
</div>
</div>
</section>
<!--Education & diploma end -->
<!--portfolio start-->
<section class="portfolio" id="ourwork">
<div class="container">
<div class="heading">
<h2>Portfolio</h2>
<h3>Things I have made throughout my life</h3>
<p>Click a button to open images</p>
</div>
</div>
<div class="row">
<div class="portfolioFilter">
<ul>
<li><a href="#" data-filter="*" class="current">All</a></li>
<li><a href="#" data-filter=".woodcraft">Woodcraft</a></li>
<li><a href="#" data-filter=".painting">Paintings</a></li>
<li><a href="#" data-filter=".drawing">Drawings</a></li>
<li><a href="#" data-filter=".arduino">Tech Related</a></li>
<li class="last"><a href="#" data-filter=".miscellaneous">Miscellaneous</a></li>
</ul>
</div>
<ul class="portfolioContainer row center">
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/roughbellabox.jpg" title="Sun And Moon Keepsake box"
class="zoom lb lb_warsaw1">
<i class="fa fa-plus fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/roughbellaboxthumb.jpg" alt="keepsake box">
</div>
</li>
<li class="painting woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/funguywindow.jpg"
title="Acrylic Painting 'Mushroom Moon Cabin' 9'x13'" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/funguywindowthumb.jpg" alt="acrylic painting">
</div>
</li>
<li class="miscellaneous col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/wirewrap.jpg" title="Talisman Wiretapped crystals"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x center"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/wirewrapthumbnail.jpg" alt="crystal wirewrap">
</div>
</li>
<li class="painting col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/heatherhat1.jpg" title="Hand Painted Grateful Dead Hat"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/heatherhat1thumb.jpg" alt="hand painted hat">
</div>
</li>
<li class="arduino col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/robot2.jpg"
title=" TheGFF(the green firefighting falcon): autonomous firefighting robot"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/robot2thumb.jpg" alt="small arduino based autonomous robot">
</div>
</li>
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/gratefulbox1.jpg"
title="Gratefuldead marquetry keepsake box with key" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/heathersboxthumb.jpg" alt="gratefuldead marquetry keepsake box">
</div>
</li>
<li class="painting col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/newpainting.jpg" title="13x9 acrylic, Midnight DreamScape"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/newpaintingthumb.jpg" alt="acrylic painting 13x9">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/fishheart.jpg"
title="Father Son themed drawing for Drawing II class" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/fishheartthumb.jpg"
alt="father and son fishing poles in shape of heart">
</div>
</li>
<li class="painting col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/ryanzhat2.jpg" title="The first hat I ever painted"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/ryanzhat2thumb.jpg" alt="My first hand painted hat ever">
</div>
</li>
<li class="painting col-xs-6 col-sm-3 col-md-4 col-lg-4">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/bigwild.jpg"
title="Eyes all Over - this painting was started live as a performance piece at BellaTerra Festival"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/bigwildthumb.JPG" alt="Big Crazy acrylic painting">
</div>
</li>
<li class="wordcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/latchbox2.jpg" title="marquetry Keepsake Box"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/latchbox2thumb.jpg" alt="keepsake box with marquetry design">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/tabledrawing.jpg" title="not so classic still life"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/tabledrawingthumb.jpg" alt="charcoal drawing of table">
</div>
</li>
<li class="Woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/deadboxtop.jpg" title="Grateful Compass Marquetry keepsake box"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/deadboxtopthumb.jpg" alt="keepsake box">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/shoes.jpg"
title="These shoes where made for drawing - charcoal and pastel" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/shoesthumb.jpg" alt="shoe drawing">
</div>
</li>
<li class="arduino col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/arduinocar.jpg"
title="Robot car project using arduino - in progress still" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/arduinocarthumb.jpg" alt="arduino robot car">
</div>
</li>
<li class="painting woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/gdbolt.jpg"
title="Acrylic on Canvas Grateful Dead Art with hand made frame" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/gdboltthumb.jpg" alt="grateful dead painting">
</div>
</li>
<li class="painting woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/galacticsunflower.jpg"
title="Acrylic on Canvas 'Galactic Sunflower'" class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/galacticsunflowerthumb.jpg"
alt="Acrylic painting of galactic sunflower">
</div>
</li>
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/deadboxtop2.jpg" title="Keepsake gem box with Dead Bolt"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/deadboxtop2thumb.jpg" alt="crystal box">
</div>
</li>
<li class="woodcraft col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/ryderbox.jpg" title="Box with sons photo on top"
class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/ryderboxthumb.jpg" alt="keepsake box">
</div>
</li>
<li class="drawing col-xs-6 col-sm-4 col-md-3 col-lg-3">
<div class="lightCon"> <span class="hoverBox"> <span class="smallIcon">
<a href="images/projects/big-images/bbgloves.jpg"
title="Father and Son baseball gloves, pastel on newsprint." class="zoom lb lb_warsaw1">
<i class="fa fa-search fa-2x"></i></a> </span> </span> <img loading="lazy"
src="images/projects/thumb-images/bbglovesthumb.jpg" alt="pastel drawing">
</div>
</li>
</ul>
</div>
</section>
<!--portfolio end-->
<!--journal start-->
<section class="journal" id="myjournal">
<div class="container">
<div class="heading">
<h2>Personal Journal</h2>
<h3>The Log Book to my Life</h3>
</div>
<table class="table">
<tr class="container table">
<th class="col-xs-2 col-sm-2 col-md-2">Date </th>
<th class="col-xs-8 col-sm-8 col-md-8">Title </th>
<th class="col-xs-2 cols-sm-2 col-md-2">Topic </th>
<!--<th class="col-xs-1 cols-sm-1 col-md-1">Format(s) </th>-->
<tr class="container">
<td class="col-xs-2 col-sm-2 col-md-2">7/09/2022</td>
<td class="col-xs-8 col-sm-8 col-md-8"><a href="https://ryazurreviews.godaddysites.com/">Rayzur Reviews, technology book reviews</a></td>
<td class="col-xs-2 col-sm-2 col-md-2">Book reviews</td>