-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (116 loc) · 5.1 KB
/
index.html
File metadata and controls
116 lines (116 loc) · 5.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Roman Harman</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes">
<link href="formatting.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class='headerbanner' id='headerformatting'>
<ul>
<li><a href="/index.html">Home</a></li>
<li><a href="/about.html">About</a></li>
<li style="float:right;"><a href="https://github.com/RHarmano?tab=repositories" target="_blank">GitHub</a></li>
<li style="float:right;"><a href="https://www.linkedin.com/in/roman-harman-896a6b157/" target="_blank">LinkedIn</a></li>
<li style="float:right;"><a href="https://www.facebook.com/romano.harman" target="_blank">Facebook</a></li>
</ul>
</div>
<div class='profileblock' id='about'>
<div class='titlediv'>
<h1>
Hi, I'm Roman.
</h1>
<div class='textdiv'>
<p>
I'm an engineer with a background in physics and mechatronics, but I have a passion for uniting the fields of computer science
and engineering. Projects surrounding quantum physics, fluid mechanics, mechatronics and astrophysics may be found on my GitHub
or by clicking the cards below.
</p>
</div>
</div>
</div>
<div id="cards">
<div style='text-align: center;'>
<a href="https://github.com/RHarmano/dog-fight"
class="projectcard"
style="background-image: url(assets/dogfight.png);
text-decoration: none; background-size: cover; background-repeat: no-repeat;">
<div class="projectcard">
<h4>
Dog Fighters
</h4>
<p>
A twist on the traditional boids algorithm, having one or more attempt to catch the leader.
</p>
</div>
</a>
</div>
<div style='text-align: center;'>
<a href="https://github.com/RHarmano/playlist-creator"
class="projectcard"
style="background-image: url(assets/spotifyplaylist_creator.png);
text-decoration: none; background-size: cover; background-repeat: no-repeat;">
<div class="projectcard">
<h4>
Spotify Playlist Creator
</h4>
<p>
An application that takes a seed track in order to create a playlist of recommended songs.
</p>
</div>
</a>
</div>
<div style="text-align: center;">
<a href="https://github.com/RHarmano/ep-duality"
class="projectcard"
style="background-image: url(assets/lasers.png);
text-decoration: none; background-size: cover; background-repeat: no-repeat;">
<div class="projectcard">
<h4>
Quantum Well Simulation
</h4>
<p>
Wave function for a collimated laser in a two-dimensional potential well problem.
</p>
</div>
</a>
</div>
<div style="text-align: center;">
<a href="https://github.com/RHarmano/fluid-flow"
class="projectcard"
style="background-image: url(assets/fluidflow.png);
text-decoration: none;
background-size: cover;
background-repeat: no-repeat;">
<div class="projectcard">
<h4>
Inviscid Flow Simulation
</h4>
<p>
Represents the flow of an incompressible, inviscid fluid around a cylinder.
</p>
</div>
</a>
</div>
<div style="text-align: center;">
<a href="https://github.com/RHarmano/fuel-cell-control-20"
class="projectcard"
style="background-image: url(assets/ogstack.jpg);
text-decoration: none;
background-size: cover;
background-repeat: no-repeat;">
<div class="projectcard">
<h4>
Fuel Cell Controller
</h4>
<p>
An automated self-contained controller to monitor operation of a hydrogen fuel cell.
</p>
</div>
</a>
</div>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>