2024-10-04 15:45:04 +02:00
---
theme: shibainu
background: #443322
title: What to talk about in five minutes
info: |
## What to talk about in five minutes
Five minutes is too short and too long at the same time.
# apply unocss classes to the current slide
class: text-center
drawings:
persist: false
transition: slide-left
mdc: true
overviewSnapshots: true
---
# What to talk about
...if you have only five minutes?
<!--
The last comment block of each slide will be treated as slide notes. It will be visible and editable in Presenter Mode along with the slide. [Read more in the docs ](https://sli.dev/guide/syntax.html#notes )
-->
---
# The Challenge
< v-clicks >
* Wait... he is not talking about coffee?
* But everyone expected a talk about coffee!
* Okay, some people might have expected Zig.
* ...or Rust!
< / v-clicks >
<!--
The challenges of five minute talks:
* **Five minutes is short!**
Better don't pick a topic where you tend to nerd out too much. It will be very hard to pick only five minutes worth of information.
**CLICK**
* **Five minutes are long!**
It shounds like nothing, but if you have no idea what to say, five minutes can be very long. So better prepare something.
**CLICK**
* **Engagement**
The time to engage your audience and make a lasting impression is limited. Be catchy and informative at the same time.
**CLICK**
* **Structuring the talk**
Not only do you have to fit all the information and engage your audience, but you also need to keep a clear structure while not rushing.
**CLICK**
* **Preparation and practice**
The limited time gives also less room for recovering from mistakes and less room for multimedia fillers. Carefully preparing and practicing the talk is important to ensure precise delivery and timing, without sounding robotic.
-->
---
# Types of Five-Minute Presentations
2024-10-08 20:32:37 +02:00
< v-clicks depth = "2" >
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
* FINE! Here are some interesting facts about coffee.
* Coffee is the Number 1 source of antioxidants - same for Decaf
* Studies show, coffee raises alertness, improves mood and performance
* Coffee can help to ease headaches
* Coffee can help protect your skin - thanks to the antioxidants
* Coffee does not interfere with calcium absorption - that is a common misconception
* The higher the elevation of the plantation the more developed, complex and rich in flavours the coffee
* There is a coffee tax in Germany: 2.19€/kg and more than twice as much for soluble coffee
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
< / v-clicks >
2024-10-04 15:45:04 +02:00
<!--
Types of Five-Minute Presentations, which of course also work for different durations most of the time.
**CLICK**
Elevator Pitch - If you want to **Sell an idea**
* **Purpose:** To quickly sell an idea, product, or yourself
* **Characteristics:** Concise, persuasive and focused on key benefits
**CLICK**
Often used in business or networking contexts, so better don't try this format on your friends wedding.
**CLICK**
Lightning Talk - If you want to share an idea or concept
* **Purpose:** To share a focused idea or concept in a rapid fashion
* **Characteristics:** Fast-paced, often part of a series of short talks
**CLICK**
Common in tech conferences, academic settings, or meetups like the Vuejs//Berlin meetup.
**CLICK**
Micro Learning Session - If you want to showcase something
* **Purpose:** To teach a specific skill or piece of knowledge
* **Characteristics:** Practical, actionable and focused on one key takeaway
**CLICK**
Popular in professional development or educational settings. Also works well at Meetups like the Vuejs//Berlin meetup.
**CLICK**
Ignite Talk - Inspire or provoke thought
* **Purpose:** To inspire or provoke thought on a topic
* **Characteristics:** Auto-advancing slides, comes from the TED talk environment
**CLICK**
Requires precise timing and rehearsal, because the slides are automatically advancing every 15 seconds?!
Fun Fact: There is a similar format called *PechaKucha* (japanese for "chit-chat"), for visual story telling.
-->
---
# Effective Topics for Short Presentations
2024-10-08 20:32:37 +02:00
< v-clicks >
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
* Learned enough about coffee?
* What about Zig? Let me show you some Zig!
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
```zig
const ally = std.testing.allocator;
var list = std.ArrayList(u32).init(ally);
defer list.deinit();
```
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
```zig
var it = std.mem.tokenizeAny(u8, input, " ,");
while (it.next()) |num| {
const n = try parseInt(u32, num, 10);
try list.append(n);
}
```
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
```zig
const expected = [_]u32{ 123, 67, 89, 99 };
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
for (expected, list.items) |exp, actual| {
try std.testing.expectEqual(exp, actual);
}
```
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
< / v-clicks >
2024-10-04 15:45:04 +02:00
<!--
Effective topics for short presentations are typically those that are focussed, engaging, and can be meaningfully explored in a short time frame.
For example:
**CLICK**
* A specific concept or theory
* A particular problem and its solution
* A unique perspective
2024-10-08 20:32:37 +02:00
* A life-changing moment
2024-10-04 15:45:04 +02:00
**CLICK**
* An important lesson learned
* A surprising encounter or discovery
2024-10-08 20:32:37 +02:00
* "What if..." scenarios
* Ethical dilemmas
2024-10-04 15:45:04 +02:00
**CLICK**
* Challenging commonly held beliefs
2024-10-08 20:32:37 +02:00
* Life Hacks
* Recent Discoveries
* Cultural Insights
2024-10-04 15:45:04 +02:00
**CLICK**
2024-10-08 20:32:37 +02:00
* Passion Projects
* Myth Busting
* Future Predictions
* Unexpected Connections
2024-10-04 15:45:04 +02:00
-->
---
# Structure and Delivery Tips
2024-10-08 20:32:37 +02:00
< v-clicks >
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
* Oh wow, that code was just copied from the ziglang.org frontpage!
* How lazy!
* We don't even know what it does!
* But there is probably not enough time to explain it, anyway!
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
< / v-clicks >
2024-10-04 15:45:04 +02:00
<!--
Delivery is crucial in a five-minute presentation. Some tips to make a short presentation impactful:
2024-10-08 20:32:37 +02:00
**CLICK**
2024-10-04 15:45:04 +02:00
* Start Strong - Some provocative hook or a funny anectode maybe?
* Maintain a clear structure - We are in the middle part, btw.
2024-10-08 20:32:37 +02:00
**CLICK**
2024-10-04 15:45:04 +02:00
* Speak clearly and concisely - Simple language, avoid jargon and speak at a moderate pace.
* Use effective body language - Maintain eye contact, use purposeful gestures (>> gesture filling a cup of coffee << )
2024-10-08 20:32:37 +02:00
**CLICK**
2024-10-04 15:45:04 +02:00
* Leverage visual aids wisely - Keep slides simple and impactful, images or key phrases instead of dense text, consider props or demonstrations for memorability
* Practice Timing Rigorously - I didn't practice this at all, whoops.
2024-10-08 20:32:37 +02:00
**CLICK**
2024-10-04 15:45:04 +02:00
* Engage the Audience - with rhetorical questions, brief interactions, relatable examples
* Show Confidence - stand tall and take up space, avoid filler words (uhm, uh)
-->
---
# Examples and Conclusion
< v-click >
* The Most Important Lession I've Learned
< / v-click >
< v-click > ...is that five minutes is short *and* long!</ v-click >
< v-click >
* One Technology That Will Change Everything
< / v-click >
< v-click > We all know, it is Zig!< / v-click >
< v-click >
* Why $CommonBelief Is Wrong
< / v-click >
< v-click > Salt, in small amounts, is actually making coffee taste better.< / v-click >
< v-click > It's true.< / v-click >
<!--
2024-10-08 20:32:37 +02:00
Remember: In a five-minute presentation, every second counts.
If you want to make a lasting impression,
your delivery should be polished,
focused and engaging all the way.
2024-10-04 15:45:04 +02:00
2024-10-08 20:32:37 +02:00
As a last resort, if you need to hide your lack of competency:
Use humour.
2024-10-04 15:45:04 +02:00
-->
---
2024-10-08 20:32:37 +02:00
< div text-2xl > Thank you< / div >
2024-10-04 15:45:04 +02:00
< PoweredBySlidev mt-10 / >