-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (41 loc) · 1.23 KB
/
Copy pathindex.html
File metadata and controls
52 lines (41 loc) · 1.23 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
---
layout: default
---
<div class="introduction">
<p>
Senior software engineer and tech lead building security and privacy
infrastructure for distributed systems. My recent posts focus on
system design, privacy engineering, and data deletion.
</p>
</div>
<div class="horizontal-rule"></div>
<div class="featured-posts">
<h2>Selected Articles</h2>
{% assign featured_slugs = "
why-data-deletion-is-still-unsolved,
why-deletion-means-different-things,
gaps-in-data-deletion-verification-auditability,
mitigating-personal-data-resurrection,
aws-organizations,
step-by-step-process-designing-distributed-systems
" | split: "," %}
{% for slug in featured_slugs %}
{% assign trimmed_slug = slug | strip %}
{% assign post = site.posts | where: "slug", trimmed_slug | first %}
<article class="featured-post">
<h3>
<a href="{{ post.url }}">
{{ post.title }}
</a>
</h3>
<span class="post-meta">
{{ post.date | date: "%b %-d, %Y" }}:
</span>
{{ post.excerpt | strip_html | truncatewords: 300 }}
</article>
<br>
{% endfor %}
</div>
<div id="more-posts-link">
<a class="page-heading" href="/blog">View all posts</a>
</div>