Skip to content

Commit

Permalink
Merge pull request #119 from SwiftServerConf/add-babeth
Browse files Browse the repository at this point in the history
Add Babeth's talk
  • Loading branch information
0xTim authored Aug 29, 2024
2 parents da46f36 + f66796b commit ffcfee6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
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"]),
]
}

0 comments on commit ffcfee6

Please sign in to comment.