2017-10-27 19:21:16 +00:00
---
2018-10-05 23:23:35 +00:00
layout: default
2017-10-27 19:21:16 +00:00
title: Talks
meta:
2019-01-02 22:18:55 +00:00
description: 'Information about previous and upcoming talks that Oliver has presented at conferences and user groups'
2017-10-27 19:21:16 +00:00
use: [talks]
2019-01-02 22:18:55 +00:00
talks:
- title: 'Drupal and the LDAP module'
2019-03-04 00:05:04 +00:00
description: A review and demonstration of some of the recent single sign-on work that I did using Drupal’ s LDAP module.
2019-01-02 22:18:55 +00:00
events:
- event: swdug
2019-02-13 01:10:14 +00:00
date: 2013-07-10
2019-01-28 22:04:33 +00:00
2019-01-02 22:18:55 +00:00
- title: 'About the Drupal Association'
2019-03-04 00:05:04 +00:00
description: An impromptu talk about what the Drupal Association is, and what work I’ ve been doing since I joined the Association staff.
2019-01-02 22:18:55 +00:00
events:
- event: swdug
2019-02-13 01:10:14 +00:00
date: 2014-08-19
2019-01-02 22:18:55 +00:00
- title: 'Automated testing with Drupal 8 and PHPUnit'
2019-03-04 00:05:04 +00:00
description: A workshop that I gave to teach others about automated testing in Drupal 8.
2019-01-02 22:18:55 +00:00
type: Workshop
events:
- event: drupal_bristol
2019-02-13 01:10:14 +00:00
date: 2018-06-27
2017-10-27 19:21:16 +00:00
---
{% block content %}
2019-05-20 02:06:19 +00:00
{% set talks = getTalks ( page .talks | merge ( data .talks ) ) %}
<header class="mb-6">
2019-05-20 19:30:22 +00:00
<p class="text-lg">After giving my first talk in September 2012, I have now given {{ talks | pastEvents | length }} presentations at various conferences and meetups, on topics including PHP, Drupal, Git, CSS and systems administration.</p>
2019-05-20 02:06:19 +00:00
</header>
2019-01-18 23:18:08 +00:00
<div class="spaced-y-10">
2019-05-20 01:38:31 +00:00
{% include 'talks/upcoming' with {
2019-05-20 11:54:38 +00:00
talks: talks|upcomingTalks,
2019-05-20 01:38:31 +00:00
} %}
2017-10-28 11:17:25 +00:00
2019-05-20 01:38:31 +00:00
{% include 'talks/past' with {
2019-05-20 11:54:38 +00:00
talks: talks|pastTalks,
2019-05-20 01:38:31 +00:00
} %}
2018-05-28 23:33:00 +00:00
</div>
2017-10-27 19:21:16 +00:00
{% endblock %}