2024-09-02 17:00:00 +00:00
---
title: Presentations
use: [presentations]
---
2024-11-29 22:36:18 +00:00
{% set today = 'today' | date ( 'U' ) %}
{% set presentation_count = data .presentations | reduce ( ( count , presentation ) = > count + ( presentation .events | filter ( e = > e .date | date ( 'U' ) < today ) | length ) , 0 ) %}
<p>Since September 2012, I have given {{ presentation_count }} public talks and workshops at various conferences and meetups, in-person and remotely, on topics including PHP, Drupal, automated testing, Git, CSS, and systems administration.</p>
2024-09-02 17:00:00 +00:00
2024-11-30 21:04:23 +00:00
{% for presentation in data .presentations | sort ( ( a , b ) = > a .events | last .date | date ( 'U' ) > b .events | last .date | date ( 'U' ) ? - 1 : 1 ) %}
2024-09-02 17:00:00 +00:00
<article>
<div class="not-prose">
<h2 class="text-xl font-bold">
2024-11-30 21:04:23 +00:00
<a class="font-bold text-blue-primary dark:text-blue-400" href=" {{ presentation .url | trim ( '/' , 'right' ) }} "> {{ presentation .title }} </a>
2024-09-02 17:00:00 +00:00
</h2>
</div>
2024-11-30 21:04:23 +00:00
<p> {{ presentation .description }} </p>
2024-09-02 17:00:00 +00:00
</article>
{% endfor %}