Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 87f4207

Browse files
committed
Add Adam as a speaker and his keynote details.
I also updated the session to respect newlines in the session description.
1 parent 8404086 commit 87f4207

File tree

3 files changed

+22
-7
lines changed

3 files changed

+22
-7
lines changed

_data/sessions.yml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@
99
subtype: presentation
1010
speakers: [1]
1111
- id: 003
12-
title: "Keynote"
13-
description:
12+
title: "Keynote - The productivity trap: Meet the perils and promises of AI-assisted coding"
13+
description: |
14+
As AI accelerates the pace of coding, organizations will have a hard time keeping up; acceleration isn't useful if it's driving our projects straight into a brick wall of technical debt. This presentation explores the consequences of AI-assisted coding, weighing its potential to improve productivity against the risks of deteriorating code quality.
15+
16+
Adam delivers a fact-based examination of the short and long-term implications of using AI assistants in software development. Drawing from extensive research analyzing over 100,000 AI-driven refactorings in real-world codebases, we scrutinize the claims made by contemporary AI tools, demonstrating that increased coding speed does not necessarily equate to true productivity. Additionally, we also look at the correctness of AI generated code, a concern for many organizations today due to the error-prone nature of current AI tools.
17+
18+
Finally, the talk offers strategies for succeeding with AI-assisted coding. This includes introducing a set of automated guardrails that act as feedback loops, ensuring your codebase remains maintainable even after adopting AI-assisted coding.
1419
subtype: keynote
15-
speakers: []
20+
speakers: [2]
1621
- id: 004
1722
title: "Pitch Session"
1823
description: "Come up on stage to announce your session title with a short description and the time that the session is scheduled to happen!"

_data/speakers.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
-
2-
id: 1
1+
- id: 1
32
name: "M. Scott"
43
surname: "Ford"
54
company: "Corgibytes"
@@ -10,4 +9,15 @@
109
social:
1110
- {name: "linkedin", link: "https://www.linkedin.com/in/mscottford/"}
1211
- {name: "mastodon", link: "https://toot.legacycode.rocks/@mscottford"}
13-
- {name: "github", link: "https://github.com/mscottford"}
12+
- {name: "github", link: "https://github.com/mscottford"}
13+
14+
- id: 2
15+
name: "Adam"
16+
surname: "Tornhill"
17+
company: ""
18+
title: ""
19+
bio: ""
20+
thumbnailUrl:
21+
rockstar: true
22+
social:
23+
- {name: "homepage", link: "https://www.adamtornhill.com/"}

_includes/sessions-modals.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h4>{{ session.title }}</h4>
2323
<iframe class="embed-responsive-item" src="{{ session.video }}"></iframe>
2424
</div>
2525
{% endif %}
26-
<p class="theme-description">{{ session.description }}</p>
26+
<p class="theme-description">{{ session.description | newline_to_br }}</p>
2727
{% if session.presentation %}
2828
<a class="theme-presentation" href="{{ session.presentation }}" title="Presentation" target="_blank">View presentation</a>
2929
{% endif %}

0 commit comments

Comments
 (0)