-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 1.11 KB
/
index.html
File metadata and controls
34 lines (33 loc) · 1.11 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
---
layout: default
---
<div class="content">
<div class="profilepic"></div>
<p>
Hello! I am a software developer at
<a href="https://www.masterclass.com">MasterClass</a>.
Not too long ago I was a computer science PhD student at the
<a href="http://web.cs.toronto.edu/">University of Toronto</a>
and published a couple of <a href="/papers">papers</a>.
I live in Waterloo, Ontario, Canada.
</p>
<p>
Feel free to get in touch! I am on
<a href="https://ca.linkedin.com/in/georgelifchits/">LinkedIn</a>,
<a href="https://github.com/glifchits">Github</a>,
<a href="https://twitter.com/glifchits">Twitter</a>,
and of course
<a id="email">email</a>.
</p>
<p>
{% assign post = site.posts.first %}
I occasionally write blog posts with no overarching theme.
The latest published blog post:
<a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a> on
{{ post.date | date: "%b %-d, %Y" }}
</p>
</div>
<script>
var email = "me@georg" + ["fch", "i", "el"].reverse().join("") + "its.ca";
document.getElementById("email").href = "mailto:" + email;
</script>