This is a consolidated source of the many demo projects, slides, abstracts, and other resources I have spun up since I started giving presentations in 2018.
If you would like a different navigation experience, there is a hosted blog version of this content at kylieis.online/talks.
Inspired by Jason Lengstorf's own presentations
repo.
(This is what I send to people as my bio.)
Kylie Czajkowski is an engineer and occasional speaker. She is passionate about building quality developer tools and high-performing applications, as well as hiking with her husband and dog. She lives in San Francisco, California.
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
"id": "directory-slug",
"title": "",
"description": "",
"presentedAt": [
{
"eventDate": "",
"eventName": "",
"eventType": "conference | meetup",
"eventUrl": "",
"recordedPresentationUrl": "",
"location": "city, state" | null,
},
]
},
]
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. 👨🚀 🚀