In the spirit of consolidating the many demo projects, slides, and abstracts I have scattered on my laptop, I've put together this repo to create a one-stop shop for my presentations, including relevant demos, slide decks, and other resources.
There is a hosted blog if you would like a better (see: prettier, more fluid, human-readable) navigation experience at kylieis.online/talks.
Inspired by Jason Lengstorf's own presentations
repo.
(This is what I send to people as my bio.)
Kylie Stewart is an engineer and occasional speaker. She is passionate about building tools and high-performing applications, as well as hiking with her dog, Otis. She lives in Denver, Colorado.
Every new entry is added to my [source talks doc](https://raw.githubusercontent.com/kale-stew/all-talks/main/content/talks.js) in the following format:
export const AllTalks = [
{
// https://github.com/kale-stew/all-talks/blob/main/content/talks.js
title: '',
description: '',
presentedAt: [
{
eventDate: '',
eventName: '',
eventType: '[conference | meetup}',
eventUrl: '',
recordedPresentationUrl: '',
location: 'city, state' | null,
},
],
exportedSlidesUrl: '',
hostedSlidesUrl: '',
previewImg: '',
},
]
And then, every new talk is added to the given year's README:
<!-- Conferences -->
1. [Talk Title](./path_to_talk/README.md)
Presented at **ConferenceName**<br/>📆 Month 00th<br/>📍 City, STATE
<!-- Meetups -->
1. [Talk Title](./path_to_talk/README.md)
Presented at [MeetupName](https://www.meetup.com/MeetupName/events/randomhashfrommeetupdotcom)<br/>📆 Month 00th
CI handles that for us. 👨🚀 🚀