-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (50 loc) · 1.96 KB
/
index.html
File metadata and controls
54 lines (50 loc) · 1.96 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
---
layout: default
title: Rystsov's site
---
<p>Hello, my name is Denis Rystsov. I love to dream, think, travel and work on complicated problems that may lead to aha! moments.</p>
<div class="section">
<b>The postings on this site are my own and don't necessarily represent Amazon's position. They don't relate to Amazon or any of its businesses, to my role at Amazon or to any of its products or services.</b>
</div>
<div class="section">
<h1>Blog</h1>
<div class="key_value_design">
<h3><a id="distr_key_value" class="anchor">Designing a distributed key/value storage</a></h3>
<div class="abstract">A series of posts describing how to design a distributed key/value storage</div>
<div class="postlinks">
{% for post in site.tags.distr reversed %}
<div class="postlink">
<div class="date">{{ post.date | | date: "%Y-%m-%d" }}</div>
<a href="{{ post.url }}">{{ post.name }}</a>
<div class="desc post_desc">{{ post.desc }}</div>
</div>
{% endfor %}
</div>
</div>
<h3>Misc</h3>
<div class="postlinks">
{% for post in site.tags.misc %}
<div class="postlink">
<div class="date">{{ post.date | | date: "%Y-%m-%d" }}</div>
<a href="{{ post.url }}">{{ post.name }}</a>
<div class="desc post_desc">{{ post.desc }}</div>
</div>
{% endfor %}
</div>
</div>
<div class="section">
<h3>Past (inactive) pet projects</h3>
<div class="postlinks">
{% for post in site.tags.pet %}
<div class="postlink">
<div class="date">{{ post.date | | date: "%Y-%m-%d" }}</div>
<a href="{{ post.url }}">{{ post.name }}</a>
{% if post.abstract %}
<div class="desc">{% include {{post.abstract}} %}</div>
{% else %}
<div class="desc">{{ post.desc }}</div>
{% endif %}
</div>
{% endfor %}
</div>
</div>