Skip to content

Commit 1ef4ba7

Browse files
committed
update work
1 parent b8174ea commit 1ef4ba7

4 files changed

Lines changed: 35 additions & 13 deletions

File tree

src/lib/helpers/bookProvider.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,18 @@ export function getBooks(): Book[] {
5555
new Date('January 1, 2025'),
5656
3,
5757
'A classic book about the dark side of human nature. The book is a great read and raises interesting questions about human nature, the score mostly reflects that it is somewhat hard to read especially as a non-native English speaker.'
58+
),
59+
new Book(
60+
'Catch 22',
61+
new Date('April 5, 2025'),
62+
3,
63+
'Very fun book about the absurdity of war and the military. The way it is written and the weird story can make it hard to read as a non-native English speaker.'
64+
),
65+
new Book(
66+
'Snow Crash',
67+
new Date('Jly 19, 2025'),
68+
4,
69+
'Great sci-fi book about a somewhat dystopian future of human society. Sometimes a little too out of this world, but still a great read.'
5870
)
5971
];
6072
}

src/lib/helpers/workProvider.ts

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,18 @@ import School from 'svelte-material-icons/School.svelte';
1313
*/
1414
export function getWork(): Work[] {
1515
return [
16-
new Work('Founding Member of Technical Staff', 'AI + Biology', 'May 2024 - Present', Molecule),
16+
new Work(
17+
'Research Scientist',
18+
'What is the right interface between humans and AI?',
19+
'May 2025 - Present',
20+
Google
21+
),
22+
new Work(
23+
'Founding Member of Technical Staff',
24+
'Building an awesome product for Humans + AI + Biology to solve drug toxicity.',
25+
'May 2024 - May 2025',
26+
Molecule
27+
),
1728
new Work(
1829
'Postdoctoral Researcher, Carnegie Mellon University',
1930
'Research and development of tools in the areas of AI evaluation and prompt engineering.',

src/routes/+page.svelte

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<div class="flex max-w-[600px] flex-col gap-4 text-center">
22
<h1>Alex Bäuerle</h1>
33
<p class="text-center">
4-
I am currently a Founding Member of Technical Staff at Axiom where we work on ML for liver toxicity prediction.
5-
Previously, I was a Researcher at CMU working on AI developer tools.
6-
I did my Ph. D. at Ulm University. When I am not in front of my computer, you will probably find me in the mountains.
4+
I am currently a Research Scientist at Google, exploring the right interface between humans and
5+
AI. Previously, I was a Founding Member of Technical Staff at Axiom, where we built ML for drug
6+
toxicity prediction, and a Postdoctoral Researcher at Carnegie Mellon University working on AI
7+
evaluation and prompt engineering. I completed my Ph.D. at Ulm University. When I am not in
8+
front of my computer, you will probably find me in the mountains.
79
</p>
810
<p class="text-center">
9-
My research is at the intersection of AI and HCI. In this context, I am always searching for the
10-
best method to connect humans with AI systems. I try to help developers with techniques that
11-
foster communication, use visualizations to provide insights during development, and work on
12-
explanations that help humans understand the decisions their AI systems make.
11+
My research is at the intersection of AI and HCI. I prototype and try to understand novel modes
12+
of interaction with AI, focusing on interfaces that help humans be creative with AI systems.
1313
</p>
1414
</div>

src/routes/cv/+page.svelte

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
{#if showLinks}
6060
<button
6161
on:click={exportCVPDF}
62-
class="invisible ml-auto flex items-center gap-1 rounded-full border border-text pl-3 pr-2 transition-all duration-300 hover:border-primary hover:text-primary md:visible dark:border-text-dark dark:hover:border-primary-dark dark:hover:text-primary-dark"
62+
class="dark:border-text-dark dark:hover:border-primary-dark dark:hover:text-primary-dark invisible ml-auto flex items-center gap-1 rounded-full border border-text pl-3 pr-2 transition-all duration-300 hover:border-primary hover:text-primary md:visible"
6363
>
6464
<span>Download</span>
6565
<Icon icon={Download} plain />
@@ -68,10 +68,9 @@
6868
</div>
6969
<h3 class={showLinks === false ? 'text-h3' : ''}>Researcher</h3>
7070
<p>
71-
My research is at the intersection of AI and HCI. In this context, I am always searching for
72-
the best method to connect humans with AI systems. I try to help developers with techniques
73-
that foster communication, use visualizations to provide insights during development, and
74-
work on explanations that help humans understand the decisions their AI systems make.
71+
My research is at the intersection of AI and HCI. I am prototyping and trying to understand
72+
novel modes of interaction with AI, focusing on interfaces that help humans be creative with
73+
AI systems.
7574
</p>
7675
<Contact {showLinks} />
7776
</CvElement>

0 commit comments

Comments
 (0)