about summary refs log tree commit diff
path: root/users/fcuny/blog/layouts/index.html
blob: 38520ef901a7b0de1644291d5609aeb622999a22 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{{ define "main" }}

<article>

  <p>I'm a Principal SRE, currently working at <a href="https://www.roblox.com/" target="_blank">Roblox</a>. Previously I worked at <a href="https://twitter.com/TwitterEng" target="_blank">Twitter</a> for over 7 years, and my main focus was on Twitter's compute platform.</p>

  <p>My general interests are in building sustainable teams, improving the management and operation of large infrastructure, and work with different teams to implement best practices around reliability and security.</p>

  <h2>Posts</h2>
  <ul>
  {{- $pages := where site.RegularPages "Type" "in" site.Params.mainSections }}
  {{ range $pages }}
  {{- $fmt := "2006-01-02" }}
  <li class="post-permalink"><span class="post-date" >{{ .Date.Format $fmt | safeHTML }}</span>, <a href="{{ .Permalink }}">{{ .Title }}</a></li>
  {{ end }}
  </ul>

</article>

{{ end }}