-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1010 lines (990 loc) · 29.9 KB
/
index.html
File metadata and controls
1010 lines (990 loc) · 29.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-GPCNYP7PWD"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-GPCNYP7PWD");
</script>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>Bassem Halim</title>
<meta
property="og:image"
content="https://bassemhalim.github.io/assets/img/me.webp"
/>
<meta property="og:url" content="bassemhalim.github.io" />
<meta property="og:title" content="Bassem Halim" />
<meta property="og:description" content="personal website" />
<!-- Favicons -->
<link href="/public/img/terminal.png" rel="icon" />
<link href="/public/style.css" rel="stylesheet" />
<!-- <script src="https://kit.fontawesome.com/42e401de24.js" crossorigin="anonymous"></script> -->
</head>
<body
class="h-full bg-[#0f0f23] text-[#c0c0c1] text-base font-mono tracking-tight w-full"
>
<header
class="sticky top-0 bg-[#0f0f23] p-2 justify-center w-full z-10"
>
<nav
id="navbar"
class="flex flex-row place-content-center flex-wrap m-2 text-2xl"
>
<div><a class="mx-4 font-semibold" href="#about">About</a></div>
<div>
<a class="mx-4 font-semibold" href="#projects">Projects</a>
</div>
<div>
<a class="mx-4 font-semibold" href="#contact">Contact</a>
</div>
<div>
<a
class="m-2 font-semibold"
href="/public/Bassem_Halim_Resume.pdf"
>Resume</a
>
</div>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav>
</header>
<main class="text-base flex-col flex relative">
<!-- ======= Hero Section ======= -->
<section id="hero">
<div
class="flex flex-col md:flex-row justify-center m-8 flex-wrap"
>
<img
src="/public/img/me.jpg"
class="w-64 rounded-full self-center"
loading="eager"
/>
<div class="flex flex-col items-center m-12 group">
<div class="text-3xl lg:text-7xl flex">
<div class="group-hover:rotate-12 pr-3">👋</div>
Hi!
</div>
<button
class="text-3xl lg:text-7xl text-center cursor-emoji flex"
onclick="play()"
>
<h1>I'm Bassem Halim</h1>
</button>
<a href="#about" class="btn-scroll scrollto"
><i class="bx bx-chevron-down"></i
></a>
</div>
</div>
</section>
<script>
function play() {
let audio = new Audio("public/name.mp3");
audio.play();
}
</script>
<!-- ======= About Me Section ======= -->
<section id="about" class="flex flex-col">
<div class="items-center flex flex-col">
<div class="text-xl text-center items-center w-3/4 m-8">
<p>
As a recent graduate of the University of
California, Berkeley with a Bachelor of Science in
Electrical Engineering and Computer Science (EECS),
I am eager to leverage my skills and experience to
make an impact in the technology industry. I am
particularly interested in backend development and
embedded systems positions. My internship experience
as a software developer intern at Pi-Lit gave me
hands-on experience in the research and development
of a decimeter-level accurate GPS receiver, writing
custom drivers, and improving internal tools.I am
eager to join an organization that would help me
grow and develop my skills further while making
meaningful contributions.
</p>
</div>
<!-- skills -->
<div class="flex flex-col md:flex-row">
<div
class="flex flex-col items-center text-xl m-4 mx-8 leading-8"
>
<div class="font-semibold text-2xl">Languages</div>
<ul class="text-center">
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/java.png"
/>
Java
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/python.png"
/>Python
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/typescript.png"
/>TypeScript
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/go.png"
/>Go
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/C_Logo.png"
/>C
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/cpp.png"
/>C++
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/sql.png"
/>SQL
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/html5.png"
/>HTML5
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
alt=""
class="rounded-lg h-10 max-w-xs"
src="public/img/css.png"
/>CSS
</li>
</ul>
</div>
<div
class="flex flex-col items-center text-xl m-4 mx-8 leading-8"
>
<div class="font-semibold text-2xl">Frameworks</div>
<ul class="text-center">
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
width=""
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/spring-boot.png"
alt=""
/>
Spring Boot
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/django.png"
alt=""
/>
Django
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10"
src="public/img/react.png"
alt=""
/>
React Native
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10"
src="public/img/css.png"
alt=""
/>
Playwright
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10"
src="public/img/pytorch.png"
alt=""
/>
PyTorch
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/numpy.png"
alt=""
/>
NumPy
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs bg-white"
src="public/img/pandas.png"
alt=""
/>
Pandas
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/git.png"
alt=""
/>
Git
</li>
</ul>
</div>
<div
class="flex flex-col items-center text-xl m-4 mx-8 leading-8"
>
<div class="font-semibold text-2xl">Databases</div>
<ul class="text-center">
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/dynamodb.png"
alt=""
/>
AWS DynamoDB
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/s3.png"
alt=""
/>
AWS S3
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/mongodb.png"
alt=""
/>
MongoDB
</li>
<li
class="flex flex-row items-center gap-2 m-2"
>
<img
loading="lazy"
class="rounded-lg h-10 max-w-xs"
src="public/img/postgresql.png"
alt=""
/>
PostgreSQL
</li>
</ul>
</div>
</div>
</div>
<!-- ======= My Resume Section ======= -->
<div
class="flex flex-col lg:flex-row justify-center m-4 w-4/5 self-center"
>
<div class="m-4">
<div class="m-2">
<!-- <h3>Education</h3> -->
<div class="font-semibold text-2xl flex">
<img
src="/public/img/berkeley-logo.svg"
class="w-16 pr-3"
/>
<h1 class="self-center">
University of California, Berkeley
</h1>
</div>
<p>
<em
>Bachelor of Science in Electrical
Engineering and Computer Science
</em>
</p>
<ul>
<li>GPA: 3.54</li>
<li>
coursework:
<ul class="p-2">
<li>
CS 61A: Structure and Interpretation
of Computer Programs
</li>
<li>CS 61B: Data Structures</li>
<li>CS 61C: Machine Structures</li>
<li>
CS 70: Discrete Maths and
Probability
</li>
<li>EECS 149: Embedded Systems</li>
<li>CS 161: Computer Security</li>
<li>CS 162: Operating Systems</li>
<li>
CS 170: Efficient Algorithms and
Intractable Problems
</li>
<li>CS 186: Databases</li>
<li>CS 188: Intro to AI</li>
<li>
CS 194-26: Intro to Computer Vision
and Computational Photography
</li>
</ul>
</li>
</ul>
</div>
<div class="m-2">
<div class="font-semibold text-2xl">
Irvine Valley College
</div>
<ul>
<li>GPA: 4.00</li>
<li>
coursework:
<ul class="p-2">
<li>C programming</li>
<li>C++ Object Oriented Programming</li>
<li>x86 assembly</li>
<li>circuit analysis</li>
</ul>
</li>
</ul>
</div>
</div>
<div>
<!-- <h3>Professional Experience</h3> -->
<div class="m-4">
<div class="font-semibold text-2xl">
Software Developer Intern
</div>
<h5>May - Aug 2022</h5>
<div class="flex flex-row justify-between">
<div>Pi-Lit (startup)</div>
<div>Tustin, CA, USA</div>
</div>
<ul class="list-disc p-2">
<li>
Contributed to the research and development
of a decimeter-level accurate GPS receiver.
</li>
<li>
Wrote a custom driver for a GNSS module.
</li>
<li>
Helped testing and debugging an IoT impact
detection system.
</li>
<li>
Improved an internal logging tool’s
efficiency by 60% as measured by CPU
utilization
</li>
</ul>
</div>
</div>
</div>
</section>
<!-- End My Resume Section -->
<!-- ======= My Projects Section ======= -->
<section class="m-8 w-4/5 items-center self-center" id="projects">
<div class="font-semibold text-2xl text-center sm:text-start">
Projects
</div>
<div class="flex flex-col place-content-center w-full">
<div
class="self-start w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div
class="flex flex-col sm:flex-row flex-wrap justify-between"
>
<div class="font-bold text-xl">Chatroom</div>
<div class="italic">Jun. 2023 - Jun. 2023</div>
</div>
<div class="italic">
Go, Gin, PostgreSQL, Websockets, React, TS,
Tailwindcss, Docker
</div>
<a
href="https://github.com/BassemHalim/Chatroom"
class="self-center"
>
<img
src="/public/img/projects/chatroom-demo.gif"
class="rounded-2xl self-center"
alt="chatroom-demo"
/>
</a>
<div class="">
<ul class="list-disc p-2">
<li>
Created a full-stack chatroom app with a new
message broadcasting using WebSockets.
</li>
<li>
Implemented a scalable backend system with
secure user authentication (JWT tokens) and
efficient message storage and retrieval
through a REST API.
</li>
<li>
Developed a message upvote and downvote
feature that can be safely scalled
horizontally.
</li>
</ul>
</div>
</div>
<div
class="self-start lg:self-end w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">
Real-Time Video Streaming Server
</div>
<div class="italic">Jun. 2023 - Jun. 2023</div>
</div>
<div class="italic">
Python, WebRTC (aioRTC), openCV, numpy, Docker
</div>
<a
href="https://github.com/BassemHalim/webrtc-demo"
class="self-center"
>
<img
src="/public/img/projects/bouncing-ball.gif"
class="rounded-2xl overflow-hidden object-contain"
alt="bouncing ball video"
/>
</a>
<div class="">
<ul class="list-disc p-2">
<li>
Developed a web server to generate a dynamic
video stream showcasing a bouncing ball
animation.
</li>
<li>
Established a secure WebRTC video stream to
clients, utilizing TCP socket signaling.
</li>
<li>
Used openCV to estimate the ball’s position
and transmit the estimates back to server
through a data channel.
</li>
</ul>
</div>
</div>
<div
class="self-start w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">Cyclopath</div>
<div class="italic">Mar. 2023 - present</div>
</div>
<div class="italic">
Java, Spring Boot, TS, React Native, Playwright, AWS
DynamoDB, AWS S3, Docker
</div>
<a
href="https://github.com/BassemHalim/Cyclopath"
class="self-center"
>
<img
src="/public/img/projects/cyclopath.png"
class="rounded-2xl m-4 w-80 overflow-hidden object-contain"
alt="Responsive image"
/>
</a>
<div class="">
<ul class="list-disc p-2">
<li>
Developed a full-stack cycling workout app
providing users with detailed workout
information, including route, weather,
distance, speed etc.
</li>
<li>
Utilized AWS DynamoDB to store workout
details and S3 to store the generated
workout static map.
</li>
<li>
Integrated Mapbox Maps API and a weather API
for dynamic route visualization and workout
insights.
</li>
</ul>
</div>
</div>
<div
class="self-start lg:self-end w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div>
<div
class="flex flex-col sm:flex-row justify-between"
>
<div class="font-bold text-xl">To-Do List</div>
<div class="italic">Mar. 2023 - Mar. 2023</div>
</div>
<div class="italic">Python, Django, PostgreSQL</div>
<ul class="list-disc p-2">
<li>
Built a To-do service with a RESTful API
that enables users to create, read, update,
and delete tasks.
</li>
<li>
Implemented user registration and
authentication functionality to secure user
data.
</li>
<li>
Utilized PostgreSQL as the database for
storing tasks and integrated Django’s ORM to
efficiently query and modify task data.
</li>
</ul>
</div>
</div>
<div
class="self-start w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">Face Morphing</div>
<div class="italic">Oct. 2022 - Oct. 2022</div>
</div>
<div class="italic">Python, Numpy, opneCV</div>
<video
autoplay
loop
muted
playsinline
class="rounded-2xl m-4 object-contain overflow-hidden self-center"
>
<source
src="/public/img/projects/face_morph.webm"
type="video/webm"
/>
</video>
<div>
<ul class="list-disc p-2">
<li>
Implemented a face morphing algorithm that
produces a morph animation from a face to
another.
</li>
<li>
Used affine matrix transformation to
transform corresponding triangles from
source image to destination image.
</li>
</ul>
</div>
</div>
<div
class="self-start lg:self-end w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div>
<div
class="flex flex-col sm:flex-row justify-between"
>
<div class="font-bold text-xl">
End-to-End Encrypted File sharing system
</div>
<div class="italic">Mar. 2022 - May 2022</div>
</div>
<div class="italic">Go</div>
<ul class="list-disc p-2">
<li>
Used symmetric encryption to encrypt and
decrypt the users' data and allow for
multiple user sessions.
</li>
<li>
Developed an algorithm to securely and
efficiently store, load, and append to
files.
</li>
<li>
Used asymmetric encryption to share files
securely using public key encryption and
digital signatures.
</li>
<li>
Added a revoke user functionality that
prevents a revoked user and their children
from reading future modification to the
shared file.
</li>
</ul>
</div>
</div>
<div
class="self-start w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="card">
<div
class="flex flex-col sm:flex-row justify-between"
>
<div class="font-bold text-xl">PintOS</div>
<div class="italic">Feb. 2022- Apr. 2022</div>
</div>
<div class="italic">C, make, gdb</div>
<ul class="list-disc p-2">
<li>
Worked in a team of 4 to implement various
functionalities in an educational OS for the
x86 architecture.
</li>
<li>
Implemented the functionalities to create
threads, fork processes, and pass arguments
to user programs.
</li>
<li>
Improved the file system speed by adding a
buffer cache.
</li>
<li>
Helped with the development of an MLFQ
scheduler.
</li>
</ul>
</div>
</div>
<div
class="self-start lg:self-end w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">
Digit Classifier
</div>
<div class="italic">Apr. 2022 - Apr. 2022</div>
</div>
<div class="italic">Python</div>
<img
src="/public/img/projects/digits.webp"
class="rounded-2xl m-4 object-contain max-h-80 overflow-hidden self-center"
alt="digital alarm clock"
/>
<div>
<ul class="list-disc p-2">
<li>
Used machine learning to classify
handwritten digits.
</li>
<li>
Achieved an accuracy of 97% by designing and
training a neural network that recognizes
patterns in handwritten digits.
</li>
</ul>
</div>
</div>
<div
class="self-start w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">
Maze Solving Robot
</div>
<div class="italic">Oct. 2021 -Dec. 2021</div>
</div>
<div class="italic">C, socket programming</div>
<img
src="/public/img/projects/robot.webp"
class="rounded-2xl object-contain w-80 m-4 overflow-hidden self-center"
alt="Responsive image"
/>
<div>
<ul class="list-disc p-2">
<li>
Designed and built the hardware of a
differential-drive robot that uses a LiDAR
to map its environment.
</li>
<li>
Developed the software that collects the
LiDAR scan data and sends it using UDP
protocol to a server.
</li>
<li>
Used a serial communication protocol (UART)
to control a differential-drive robot.
</li>
</ul>
</div>
</div>
<div
class="self-start lg:self-end w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">
2D World Exploration Game
</div>
<div class="italic">Apr. 2021 - May 2021</div>
</div>
<div class="italic">Java</div>
<img
src="/public/img/projects/Maze.webp"
class="rounded-2xl m-4 object-contain w-80 overflow-hidden self-center"
alt="Responsive image"
/>
<div>
<ul class="list-disc p-2">
<li>
Collaborated with a teammate to develop a
random world generation engine, with a GUI,
that generates a random 2D explorable world
based on a string of numbers inputted by the
use.
</li>
<li>
An avatar is placed randomly in the
generated world and the user can interact
with the avatar using the keyboard.
</li>
<li>
Implemented the ability to save and reload
the game locally.
</li>
</ul>
</div>
</div>
<div
class="self-start w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">Gitlet</div>
<div class="italic">Feb. 2021 - Apr. 2021</div>
</div>
<div class="italic">Java</div>
<img
src="/public/img/projects/git.webp"
class="rounded-2xl m-4 w-80 overflow-hidden self-center"
alt="Responsive image"
/>
<div>
<ul class="list-disc p-2">
<li>
Designed and implemented a local version
control system with a command-line interface
that can handle 15 commands similar to Git
commands.
</li>
<li>
Functionality includes add, commit, branch,
checkout, merge, reset, log, merge, etc.
</li>
<li>
Efficiently stored previous versions of the
project, and the commit tree, locally using
multiple data structures such as Hash
tables, Hash sets, Linked Lists.
</li>
</ul>
</div>
</div>
<div
class="self-start lg:self-end w-full lg:w-1/2 sm:m-8 p-6 rounded-2xl hover:shadow-md hover:shadow-[#c0c0c1] flex flex-col"
>
<div class="flex flex-col sm:flex-row justify-between">
<div class="font-bold text-xl">
Digital Alarm Clock
</div>
<div>June 2020 - June 2020</div>
</div>
<div class="italic">C</div>
<img
src="/public/img/projects/clock.webp"
class="rounded-2xl m-4 w-80 overflow-hidden self-center"
alt="cyclopath"
/>
<div>
<ul class="list-disc p-2">
<li>
Designed and built the circuit of a digital
alarm clock that runs on a microcontroller.
</li>
<li>
Developed the firmware that runs on the
custom hardware and communicates with a
time-keeping IC in I2C.
</li>
<li>
Devised the 7-segment display from scratch
and implemented a multiplexing algorithm to
update each digit individually with minimal
amount of IO ports.
</li>
</ul>
</div>
</div>
</div>
</section>
</main>
<footer class="m-4 relative" id="contact">
<div class="flex flex-col">
<div class="flex flex-row self-center m-2">
<div
class="m-4 hover:shadow-[#c0c0c1_0px_0px_14px_1px] rounded-md"
>
<a
href="https://www.linkedin.com/in/bassem-halim/"
target="_blank"
rel="noopener noreferrer"
>
<img src="/public/img/linkedin.png" />
</a>
</div>
<div
class="m-4 hover:shadow-[#c0c0c1_0px_0px_14px_1px] rounded-full"
>
<a
href="https://github.com/BassemHalim"
target="_blank"
rel="noopener noreferrer"
>
<!-- <img src="/public/img/github.png" class="" /> -->
<?xml version="1.0" ?><!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN' 'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg
enable-background="new 0 0 32 32"
height="48px"
id="Layer_1"
version="1.0"
viewBox="0 0 32 32"
width="48px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<path
clip-rule="evenodd"
d="M16.003,0C7.17,0,0.008,7.162,0.008,15.997 c0,7.067,4.582,13.063,10.94,15.179c0.8,0.146,1.052-0.328,1.052-0.752c0-0.38,0.008-1.442,0-2.777 c-4.449,0.967-5.371-2.107-5.371-2.107c-0.727-1.848-1.775-2.34-1.775-2.34c-1.452-0.992,0.109-0.973,0.109-0.973 c1.605,0.113,2.451,1.649,2.451,1.649c1.427,2.443,3.743,1.737,4.654,1.329c0.146-1.034,0.56-1.739,1.017-2.139 c-3.552-0.404-7.286-1.776-7.286-7.906c0-1.747,0.623-3.174,1.646-4.292C7.28,10.464,6.73,8.837,7.602,6.634 c0,0,1.343-0.43,4.398,1.641c1.276-0.355,2.645-0.532,4.005-0.538c1.359,0.006,2.727,0.183,4.005,0.538 c3.055-2.07,4.396-1.641,4.396-1.641c0.872,2.203,0.323,3.83,0.159,4.234c1.023,1.118,1.644,2.545,1.644,4.292 c0,6.146-3.74,7.498-7.304,7.893C19.479,23.548,20,24.508,20,26c0,2,0,3.902,0,4.428c0,0.428,0.258,0.901,1.07,0.746 C27.422,29.055,32,23.062,32,15.997C32,7.162,24.838,0,16.003,0z"
fill="#c0c0c1"
fill-rule="evenodd"
/>
</svg>
</a>
</div>
</div>
<div
class="flex flex-row items-center flex-wrap place-content-center"
>
<div class="mx-4">
bassemhalim99<!-- sdfjsdhfkjdsfsadfypcs --><!-- fsdf-->@<!-- fsdf-->gmail.com
</div>
<div class="mx-4">
(818)
<!-- fsdf-->486<!-- fsdfdsfds-->-2166
</div>
</div>
</div>
<a
href="#"
class="sm:absolute bottom-0 right-0 hover:shadow-[#c0c0c1_0px_0px_14px_1px] rounded-md m-2 justify-end"
>
<?xml version="1.0" ?><svg
baseProfile="tiny"
height="48px"
version="1.2"
viewBox="0 0 24 24"
width="48px"
xml:space="preserve"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
class="float-right"
>
<g id="Layer_1">