Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Babeth's talk #119

Merged
merged 1 commit into from
Aug 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added Resources/App/Images/speakers/babeth-velghe.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 1 addition & 2 deletions Sources/Conference/Components/Schedule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,7 @@ struct Schedule: Component {
}
TableRow {
TableCell("14:30 - 14:45").class("text-center font-weight-bold")
// createTalkRow(speaker: AllSpeakers.speakers[13])
Text("To Be Announced")
createTalkRow(speakerName: "Babeth Velghe")
}
TableRow {
TableCell("14:45 - 15:00").class("text-center font-weight-bold")
Expand Down
5 changes: 5 additions & 0 deletions Sources/Conference/Models/Speaker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,11 @@ struct AllSpeakers {
website: "http://binarybirds.com/",
bio: "Tibor Bödecs is a seasoned software developer specializing in Swift on the server and backend technologies. He is the author of the popular book “Practical Server Side Swift,” which provides a comprehensive guide to the Vapor framework. Currently, Tibor is the CEO of Binary Birds, a company dedicated to server-side Swift development and consulting. As a member of the Swift Server Workgroup (SSWG), he regularly publishes insightful articles on swiftonserver.com, collaborating with fellow SSWG member Joannis Orlandos. Outside of work, Tibor loves metal music, plays the guitar, and has a passion for traveling, especially exploring Southeast Asia.",
talkIDs: [4]),
Speaker(
name: "Babeth Velghe",
role: "Student",
bio: "A student with a passion for coding, who recently delved into Swift programming. For her bachelor thesis, she explored the Swift OpenAPI Generator.",
talkIDs: [16]),
Speaker(
name: "Franz Busch",
role: "Software Engineer",
Expand Down
5 changes: 5 additions & 0 deletions Sources/Conference/Models/Talk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -169,5 +169,10 @@ struct AllTalks {
Paragraph("We’ll see how Swift SDKs can help us to build binaries for several popular Linux distributions, and even build statically-linked binaries with no runtime dependencies. We’ll take a quick look at the contents of the generated container image.Finally, we’ll show how a command plugin ties the whole process together into a single command.")
},
speakerNames: ["Euan Harris"]),
Talk(
id: 16,
title: "Stop worrying about routes with OpenAPI Generator",
description: "OpenAPI specifications can be used to generate code on both the client and the server saving you time when building front-end apps and backends. In this talk, we’ll discuss how the OpenAPI generator can be used to create Swift application code from an OpenAPI spec. You’ll learn how to write an OpenAPI spec, how to use the plugin to generator client code for iOS applications and how to generate routes for a Vapor application. You’ll see how easy it is to plug everything together and quickly build a working app with networking. Finally there will be an exploration into its potential for production readiness.",
speakerNames: ["Babeth Velghe"]),
]
}
Loading