Skip to content
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
2 changes: 1 addition & 1 deletion Sources/Conference/Components/Schedule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ struct Schedule: Component {
}
TableRow {
TableCell("9:30 - 12:30").class("text-center font-weight-bold")
createWorkshopRow(speakers: [AllSpeakers.instructors[0], AllSpeakers.instructors[3]])
createWorkshopRow(speakers: [AllSpeakers.instructors[0]])
createWorkshopRow(speakerName: "Matt Massicotte")
}
TableRow {
Expand Down
9 changes: 0 additions & 9 deletions Sources/Conference/Models/Speaker.swift
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ struct AllSpeakers {
allSpeakers[3],
allSpeakers[21],
allSpeakers[22],
allSpeakers[23]
]
static let speakers: [Speaker] = Array(allSpeakers[1...20])
static let allSpeakers: [Speaker] = [
Expand Down Expand Up @@ -314,14 +313,6 @@ struct AllSpeakers {
bio: "Frank has been developing software for Apple platforms since 1985. As a freelance developer, he usually works on low-level and AV-related software for macOS, iOS and visionOS, as well as server-side Swift applications. He is also an Apple-certified trainer, and he provides mentoring on server-side Swift and iOS development with SwiftUI.",
talkIDs: [15]
),
Speaker(
name: "Nick Shook",
role: "Engineer on the Swift Server Ecosystem team",
company: "Apple",
image: "/App/Images/speakers/nick-shook.png",
bio: "I'm Nick, a Vegas native and current Seattlite. Before joining the Swift team, I spent a decade building FinTech systems including at Apple Finance and was a startup attorney advising technology and cannabis companies. I'm passionate about encouraging Swift to be the de facto choice for all teams writing software because I believe in its full-range of applications.",
talkIDs: [17]
),
Speaker(
name: "Agam Dua",
role: "Technical Lead on the Swift Server Ecosystem & Education team",
Expand Down
2 changes: 1 addition & 1 deletion Sources/Conference/Models/Talk.swift
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ struct AllTalks {
Paragraph("In this hand-on workshop, learn how to build modern Swift server applications using Vapor 4, Swift OpenAPI, Swift ServiceLifecycle, Fluent with SQLite and Postgres, and serverless deployment with AWS. Start by building `GET` endpoints to handle questions, then create a `PollsApp` where you build a database-connected application, and finally learn how to deploy applications.")
Paragraph("This workshop consists of four 90-minute sessions where participants build an application that builds upon previous work. You are expected to bring your own laptop as we build the `PollsApp` together.")
},
speakerNames: ["Daniel Steinberg", "Nick Shook", "Agam Dua"],
speakerNames: ["Daniel Steinberg", "Agam Dua"],
order: 17,
isWorkshop: true
),
Expand Down