Skip to content

Commit

Permalink
feature/2024-speakers (#50)
Browse files Browse the repository at this point in the history
* feat(2024): add 2 speakers

* feat(2024): add placeholder

* feat(2024): add ticket link

* feat(2024): add ticket link

* feat(2024): minor changes

* feat(2024): add apple speaker + improve mobile view

* feat(2024): add apple speaker + improve mobile view

* feat(2024): add google and tiktok
  • Loading branch information
3bobchen authored Oct 25, 2024
1 parent 913ac52 commit a1a44f8
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 0 deletions.
26 changes: 26 additions & 0 deletions components/Speakers/Google24.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
const Google = () => {
return (
<>
<p>
Richard Hofman is a Software Engineer in Google’s enterprise security
team. He has long held a fascination with privacy and cryptography, and
holds a Bachelor’s Degree in Computer Science, from the University of
Auckland in New Zealand.
</p>
<p>
In his role at Google, Richard’s work mostly encompasses
cryptographically attested device identity and the infrastructure needed
to issue and validate credentials based on these identities. He has also
worked on improving the cryptographic security of SSH traffic at Google.
</p>
<p>
Richard will be speaking about WebAuthn and FIDO2, two closely related,
privacy-aware standards for online cryptographic authentication. These
technologies form the basis for “Passkeys”, but are surprisingly broad
in their own right.
</p>
</>
);
};

export default Google;
22 changes: 22 additions & 0 deletions components/Speakers/TikTok24.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
const TikTok = () => {
return (
<>
<p>
James graduated from UNSW in 2023. He currently works at TikTok on the
LIVE app, where he develops core revenue features that are innovative,
secure and intuitive for our users.
</p>
<p>
While at UNSW, he built Circles, the defacto degree planner for CSE
students. He would later run CSESoc Projects (now DevSoc) where he
spawned many new initiatives such as the Training Program and Techspire.
</p>
<p>
We invited James back to share his unique experiences on building
projects, starting initiatives, challenges in the industry and more.
</p>
</>
);
};

export default TikTok;
14 changes: 14 additions & 0 deletions public/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import Macquarie24 from "../components/Speakers/Macquarie24";
import Atlassian24 from "../components/Speakers/Atlassian24";
import Placeholder from "../components/Speakers/Placeholder";
import Apple24 from "../components/Speakers/Apple24";
import Google from "../components/Speakers/Google24";
import TikTok from "../components/Speakers/TikTok24";

export const siteData: {
[k: string]: {
Expand Down Expand Up @@ -70,6 +72,18 @@ export const siteData: {
video: null,
image: "./images/2024/nelson.jpg",
},
"Richard Hofman": {
speakerName: "Google",
text: <Google />,
video: null,
image: "./images/2024/richard.png",
},
"James Ji": {
speakerName: "TikTok",
text: <TikTok />,
video: null,
image: "./images/2024/james.jpeg",
},
"More speakers": {
speakerName: "To be announced",
text: <Placeholder />,
Expand Down
Binary file added public/images/2024/james.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/images/2024/richard.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit a1a44f8

Please sign in to comment.