Skip to content

Latest commit

 

History

History
51 lines (41 loc) · 2.21 KB

blog.md

File metadata and controls

51 lines (41 loc) · 2.21 KB
layout permalink title
page
/blog/
Blog posts

Being Frank on the Computer

There is very little quality assurance behind what goes in here, so keep that in mind. You can expect a mix of ranting and praise for things at the intersection of accessibility and data work, sometimes with other topics thrown in (aesthetics, epistemology, games, media, etc). I do plenty of navel-gazing, especially as it relates to research in Human-Computer Interaction. If you're into these sorts of things, welcome to my blog.

If you're curious about my shorter-form thoughts, follow me on my twitter account @FrankElavsky, where I am regularly harping just the same as here but in slightly-smaller doses.

Subscribe via RSS

Blog Posts

{% for post in site.posts %} {% assign currentdate = post.date | date: "%Y" %} {% if currentdate != date %}

{{ currentdate }}

{% assign date = currentdate %} {% endif %}
<div class="post-block">
  <h3>
    <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
  </h3>
  <span class="post-meta" title="{{ post.date | date: "%b %-d Y" }}">{{ post.date | date: "%b %-d" }} <span class="meta-year">{{ currentdate }}</span></span>
  {% if post.description %}<p class="post-subtitle">{{ post.description }}</p>{% endif %}
</div>

{% endfor %}

Good Twitter Threads I've Written

A self-sommelier of sorts, selecting my favorite threads. (I love that Crystal Lee did this on her blog, so I am following suit!)

{% for post in site.data.threads %} {% assign currentdate = post.date | date: "%Y" %} {% if currentdate != date %} {% assign date = currentdate %} {% endif %}
<div class="post-block">
  <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title }}</a>
  <span class="post-meta" title="{{ post.date | date: "%b %-d %Y" }}">{{ post.date | date: "%Y, %b %-d" }}</span>
</div>

{% endfor %}