-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (58 loc) · 2.26 KB
/
index.html
File metadata and controls
63 lines (58 loc) · 2.26 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
---
layout: default
---
<div class="home content-wrap">
<h1>Max Prokopiev</h1>
<p class="intro">
Software engineer at <a href="https://github.com">GitHub</a>. Berlin.
Mostly doing the boring things. Sometimes writing about it here.
</p>
<p class="intro">
Before that — various things across the stack. Ruby, Clojure, infrastructure, whatever needed building. I've been doing this for a while.
</p>
<div class="links-row">
<a href="https://github.com/maxprokopiev">GitHub</a>
<a href="https://chaos.social/@maxprokopiev">Mastodon</a>
<a href="https://linkedin.com/in/maxprokopiev">LinkedIn</a>
<a href="mailto:me@maxprokopiev.com">Email</a>
<a href="/cv.html">CV</a>
</div>
<div class="section-title">projects</div>
<ul class="project-list">
<li class="project-item">
<img class="project-item-icon" src="{{ "/assets/projects/screenslice-icon.png" | relative_url }}" alt="Screenslice app icon">
<div class="project-item-body">
<span class="project-item-meta">macOS utility</span>
<a class="project-item-link" href="{{ "/projects/screenslice/" | relative_url }}">Screenslice</a>
<p>Share a slice of your screen on video calls instead of your whole display. Handy when your conferencing app thinks "share a window" is the best it can do.</p>
</div>
</li>
</ul>
<div class="section-title">posts</div>
<ul class="post-list">
{% for post in site.posts %}
{% assign post_year = post.date | date: "%Y" %}
{% unless post_year == "2013" %}
<li class="post-item">
<span class="post-date">{{ post.date | date: "%b %Y" }}</span>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endunless %}
{% endfor %}
</ul>
<details class="archive">
<summary>archive (2013)</summary>
<ul class="post-list">
{% for post in site.posts %}
{% assign post_year = post.date | date: "%Y" %}
{% if post_year == "2013" %}
<li class="post-item">
<span class="post-date">{{ post.date | date: "%b %Y" }}</span>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</details>
<footer>Opinions are generated using a fleet of autonomous agents in the cloud.</footer>
</div>