-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
105 lines (93 loc) · 3.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Portfolio - Gebriel Gidey</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Gebriel Gidey</h1>
</header>
<div class="container">
<!-- About Section -->
<section id="about">
<h2>About Me</h2>
<p>Academic and professional experience in programming, data science, and software development.</p>
</section>
<!-- Experience Section -->
<section id="experience">
<h2>Experience</h2>
<ul>
<li><strong>Associated Students, Vice-Chair, CCSF</strong> - 1 year</li>
<li><strong>Office Assistant</strong> - 1 year</li>
<li><strong>Campus Host</strong> - 2 years</li>
<li><strong>Teacher Assistant, Transformer Model</strong> - 2 years</li>
<li><strong>Data Scientist, Galileo Project</strong> - 4 months (current)</li>
</ul>
</section>
<!-- Skills Section -->
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Programming Languages: Python, Java, C</li>
<li>Libraries & Frameworks: Pandas, NumPy, PyTorch, Scikit-learn, Matplotlib</li>
<li>Cloud Platforms: AWS, GCP</li>
<li>Other Tools: Docker, PostgreSQL, MySQL</li>
</ul>
</section>
<!-- Projects Section -->
<section id="projects">
<h2>Projects</h2>
<!-- C Projects -->
<article>
<h3>C Projects</h3>
<ul>
<li>cmd_line_args</li>
<li>buffer_and_struct</li>
<li>simple_shell</li>
<li>word_blast</li>
<li>buffered_io</li>
<li>device_driver</li>
<li>file_system</li>
</ul>
</article>
<!-- Java Projects -->
<article>
<h3>Java Projects</h3>
<ul>
<li>payment_platform (Spark, MongoDB, Gson)</li>
<li>expression_evaluator_with_GUI</li>
<li>interpreter</li>
<li>tank_game</li>
<li>http_server</li>
<li>poker_game (Spring, PostgreSQL)</li>
</ul>
</article>
<!-- JavaScript Projects -->
<article>
<h3>JavaScript Projects</h3>
<ul>
<li>pathfinding_puzzle_game</li>
<li>ecommerce_platform (LAMP)</li>
<li>job_search_platform (Django/Node.js, React, TypeScript, MySQL, Docker, NGINX)</li>
<li>data_visualization (Node.js, Express, React)</li>
</ul>
</article>
<!-- Python Projects -->
<article>
<h3>Python Projects</h3>
<ul>
<li>tb_identification_via_cnn (PyTorch)</li>
<li>svg_mnist</li>
<li>transformer_sentiment_analysis</li>
</ul>
</article>
</section>
</div>
<footer>
<p>© 2025 Gebriel Gidey</p>
</footer>
</body>
</html>