Commit f22c824f by PLN (Algolia)

Site: slight UI improvement, missing talks

parent fe7b53e6
---
title: Le fantôme
source: https://git.plnech.fr/pln/Hydra/raw/1604fce7f6f19d76d997abe4a360fb38569a4062/LeFantome.js
link: https://nech.pl/fantome
---
---
title: "Developer Experience for Machine Learning Engineers"
description: "In a Machine Learning product or API, what makes a good Developer Experience? With Anil, we discuss the ingredients of a great ML product; what makes or breaks developer productivity; and how to stay on top of this constantly-evolving field."
date: '2022-09-25'
context: Anil Kumar Krishnashetty's Podcast
video: https://www.youtube.com/watch?v=_c_U1O9SRqk
---
\ No newline at end of file
---
title: "Craft a Discovery Experience in 30mn with Recommend models"
description: "Demo: see how you can create a full content discovery experience, powered by ML Recommendation models, without being a front-end expert."
date: '2022-09-16'
context: Algolia DevCon 2022
event: https://www.algolia.com/devcon/#speakers
video: https://www.youtube.com/watch?v=efDcR-7dYE8
---
---
title: "Entre Devs S01E02: Y'a le bon développeur et le mauvais développeur"
description: "Comment parler de notre travail à nos proches ? Les entreprises ont-elle le devoir et la légitimité de changer la société ? Les formations préparent-elles correctement les jeunes développeuses et développeurs ? La maintenance du code, on en parle ? Et la philosophie dans tout ça ?"
date: '2022-07-27'
context: Podcast `Entre Devs`
event: https://www.entredevspodcast.com/
audio: https://shows.acast.com/entre-devs/episodes/y-a-le-bon-developpeur-et-le-mauvais-developpeur
---
---
title: 'Roundtable: Creating Voice Experiences That Win Hearts & Minds'
description: 'Learn how to design voice experiences that are not just functionally intelligent, but also emotionally intelligent.'
date: '2019-07-23'
context: Voice Summit 19, Newark [NJ], United States
event: https://www.voicesummit.ai/speakers-2019
---
......@@ -75,7 +75,8 @@ export default function Home({ posts, talks }) {
sharing my passions and teaching useful patterns, to questioning our
current mental models.
</p>
<h5 className={utilStyles.headingLg}>Most recent talks</h5>
<hr />
<h6 className={utilStyles.headingLg}>Most recent talks</h6>
<ul className={utilStyles.list}>
{talks.map(({ id, title, description }) => (
<li className={utilStyles.listItem} key={id}>
......
......@@ -49,6 +49,7 @@ export default function Talks({ talks, selection }) {
date,
org,
context,
audio,
video,
slides,
event,
......@@ -76,6 +77,11 @@ export default function Talks({ talks, selection }) {
<a href={video}>Video</a>
</li>
)}
{audio && (
<li>
<a href={audio}>Audio</a>
</li>
)}
{slides && (
<li>
<a href={slides}>Slides</a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment