-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
149 lines (139 loc) · 6.36 KB
/
portfolio.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
<!DOCTYPE html>
<html>
<head>
<title>Caleb | Portfolio</title>
<meta name="viewport" content="width-device-width, initial-scale=1">
</head>
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" href="css/portfolio.css">
<!-------------------------------------->
<body>
<div id="particles-js"></div>
<!--Banner, logo, etc-->
<header>
<a id="logo" href="index.html"><img src="images/Logo2.png"></a>
<img id="banner" src="images/Banner.png">
<img id="headshot" src="images/selfie.jpg">
</header>
<!--Nav bar-->
<div class="navigation">
<a href="index.html">Home</a>
<a style="background-color: #077;" href="portfolio.html">Portfolio</a>
<a href="services.html">Services</a>
</div>
<!-- Main content -->
<div class="sites">
<a class="site-link" href="https://www.linkedin.com/in/caleb-braddick-abb47a206/">LinkedIn</a>
<a class="site-link" href="https://github.com/WeaselPeasel">GitHub</a>
</div>
<!-- 2020 Section -->
<h3 class="year">2020</h3>
<div class="my-projects">
<div class="project">
<h3 class="label">AChord</h3>
<br>
<a class="project-link" href="http://cs.wheatoncollege.edu/~achord">AChord Link</a>
<p class="description">
Team project for string instrument voicing Android Application. Our group
submitted this to the <i>Consortium of Computing Sciences in Colleges</i>, where it
won 3rd place.
</p>
</div>
<div class="project">
<h3 class="label">Lexos</h3>
<br>
<a class="project-link" href="http://lexos.wheatoncollege.edu">Lexos Homepage</a>
<a class="project-link" href="lexos_github" download>Lexos GitHub</a>
<p class="description">
A Capstone project that I originally worked on in 2019 for an internship, Lexos is
a lexical analysis and text mining tool conceived and developed by teams of
Wheaton College undergraduates for over a decade.
</p>
</div>
</div>
<!-- 2019 Section -->
<h3 class="year">2019</h3>
<div class="my-projects">
<div class="project">
<h3 class="label">Practice Pizza Company Website</h3>
<br>
<a class="project-link" href="projects/Pizza/index.html">Pizza Project</a>
<p class="description">
A teamwork project meant to employ our understanding of cookies and of
web design for mobile devices.
</p>
</div>
<div class="project">
<h3 class="label">Multi-Threaded Game of Life</h3>
<br>
<a class="project-link" href="projects/multi_threaded_GameOfLife.zip" download>Download .ZIP</a>
<p class="description">
A class final project designed with a peer where we took a Game of Life simulator
we had designed earlier in the semester and employed our newfound knowledge of
multi-threading to refactor the project.
</p>
</div>
<div class="project">
<h3 class="label">Password "Cracker"</h3>
<br>
<a class="project-link" href="projects/password_cracker.zip" download>Download .ZIP</a>
<p class="description">
A partnered class project in which we were tasked with writing a complex
multithreaded program with Producer and Consumer threads with the goal of solving
a 'mystery' password.
</p>
</div>
<div class="project">
<h3 class="label">My Old Website</h3>
<br>
<a class="project-link" href="projects/OldSite/index.html">Old Website</a>
<p class="description">
My original personal homepage that I designed for a web development class.
(NOTE: Some of the links require php to function and will not run here)
</p>
</div>
<div class="project">
<h3 class="label">C Linux Commands</h3>
<br>
<a class="project-link" href="projects/c_commands.zip" download>Download .ZIP</a>
<p class="description">
A class project where we wrote basic Linux commands (sort, cp, cat, etc) in the
C language.
</p>
</div>
</div>
<!-- 2018 Section -->
<h3 class="year">2018</h3>
<div class="my-projects">
<div class="project">
<h3 class="label">Convex Hull Finder</h3>
<br>
<a class="project-link" href="projects/convexHull.zip" download>Download .ZIP</a>
<p class="description">
A class project I worked on with a peer, in which we were tasked with
writing a program to find the convex hull of a set of data points (provided by a file).
</p>
</div>
<div class="project">
<h3 class="label">Binary Search Tree implementation</h3>
<br>
<a class="project-link" href="projects/bin_search_tree.zip" download>Download .ZIP</a>
<p class="description">
A class-assigned implementation of a Binary Search Tree class with
helpful features provided.
</p>
</div>
<footer>
<h3 class="contact-me-header">
Contact Me
</h3>
<div class="contact-me">
<img src="images/gmail.png" alt="Gmail logo">
<a href="mailto:bradcalec@gmail.com">bradcalec@gmail.com</a>
</div>
</footer>
<!-- Import particles.js -->
<script src="js/particles.js-master/particles.js"></script>
<script src="js/particles.js-master/demo/js/app.js"></script>
</body>
</html>