Add The Last Software Engineer talk#775
Conversation
Co-authored-by: Kent C. Dodds <me+github@kentcdodds.com>
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughA new talk entry titled "The Last Software Engineer" has been added to the talks data file. The entry includes resources, a delivery event scheduled for 2026-07-09, relevant tags, and a multi-paragraph description. ChangesTalks Data
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Summary
Testing
node --input-type=module -e "import fs from 'node:fs/promises'; import YAML from 'yaml'; const talks = YAML.parse(await fs.readFile('services/site/content/data/talks.yml', 'utf8')); const talk = talks.find((entry) => entry.title === 'The Last Software Engineer'); if (!talk) throw new Error('Missing talk'); if (talk.deliveries?.[0]?.event !== '[WeAreDevelopers World Congress](https://www.wearedevelopers.com/world-congress)') throw new Error('Unexpected event'); if (talk.deliveries?.[0]?.date !== '2026-07-09') throw new Error('Unexpected date'); if (!talk.resources?.includes('[article](https://www.epicproduct.engineer/the-last-software-engineer)')) throw new Error('Missing article resource'); if (!talk.description.includes('not here to tell you software engineering is ending soon')) throw new Error('Missing near-term clarification'); if (!talk.description.includes('most human and valuable')) throw new Error('Missing human-value framing'); if (!talk.description.includes('one year, or five years')) throw new Error('Missing prediction-confidence framing'); console.log(JSON.stringify({ title: talk.title, event: talk.deliveries[0].event, date: talk.deliveries[0].date, tags: talk.tags }, null, 2));"npm exec prettier -- --check services/site/content/data/talks.ymlSummary by CodeRabbit