-
Notifications
You must be signed in to change notification settings - Fork 1
/
cv.html
206 lines (147 loc) · 4.39 KB
/
cv.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
<html>
<head>
<title>CV</title>
<meta charset="utf-8">
<style>
@media screen {
body {
padding: 0 10% 5em;
}
}
body {
color: #333;
font-family: helvetica;
}
h1, h2, h3, .title {
color: #000;
font-family: helvetica;
}
h1 {
float: left;
font-size: 50px;
margin-top: 20px;
}
h3 {
border-bottom: 3px solid #bbb;
font-size: 26px;
margin-top: 3em 0 0.25em 0;
}
.technologies {
font-size: 14px;
font-style: italic;
margin-top: 0;
}
.time-span {
position: absolute;
right: 0;
top: 0;
}
.item {
border-bottom: 1px solid #ddd;
margin-bottom: 1em;
position: relative;
}
.homepage {
font-size: 14px;
}
.personal-info {
float: right;
margin-top: 20px;
text-align: right;
}
</style>
</head>
<body>
<h1>Muffin The Cat</h1>
<div class="personal-info">
[email protected]</br>
Zagreb, Croatia</br>
Unska 11</br>
<a href="http://dabrorius.github.io">http://dabrorius.github.io</a>
</div>
<div style="clear:both;"></div>
<div class="group employment">
<h3> Employment </h3>
<div class="item">
<b class="title">Full-stack Lazy Slob</b>
- Google
<span class="homepage">
(<a href="http://google.com/">http://google.com/</a>)
</span>
<p class="technologies">
Ruby, Ruby on Rails, Javascript
</p>
<p></p>
<ul>
<li>Layed on important papers.</li>
<li>Scratched all the chairs.</li>
<li>Thrown all of the sand out of the litterbox.</li>
</ul>
<div class="time-span">
June 2015
- Current
</div>
</div>
<div class="item">
<b class="title">Senior Trouble Maker </b>
- Facebook
<span class="homepage">
(<a href="https://www.facebook.com/">https://www.facebook.com/</a>)
</span>
<p class="technologies">
Ruby, Ruby on Rails, Elasticsearch
</p>
<p></p>
<ul>
<li>Ate Mark Zuckerberg's sandwich.</li>
</ul>
<div class="time-span">
April 2015
- June 2015
</div>
</div>
</div>
<div class="group education">
<h3> Education </h3>
<div class="item">
<b class="title">M.S. Food Science</b>
- The University of Zagreb
<p></p>
<ul>
</ul>
<div class="time-span">
2011
- 2013
</div>
</div>
</div>
<div class="group open_source">
<h3> Open source </h3>
<div class="item">
<b class="title">markov-noodles</b>
<span class="homepage">
(<a href="https://github.com/dabrorius/markov-noodles">https://github.com/dabrorius/markov-noodles</a>)
</span>
<p>Markov noodles is a minimalistic library for generating text using Markov chains.</p>
<ul>
</ul>
<div class="time-span">
</div>
</div>
</div>
<div class="group other_experience">
<h3> Other experience </h3>
<div class="item">
<b class="title">Tree Climbing</b>
<span class="homepage">
(<a href="https://en.wikipedia.org/wiki/Tree">https://en.wikipedia.org/wiki/Tree</a>)
</span>
<p></p>
<ul>
</ul>
<div class="time-span">
</div>
</div>
</div>
</body>
</html>