-
-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into content/1168-energisers
- Loading branch information
Showing
14 changed files
with
281 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
common-content/en/energisers/confident-presenting/index.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
+++ | ||
title="Confident Presenting!" | ||
time=15 | ||
[objectives] | ||
1="Trainee can strike a power pose" | ||
2="Trainee has experience with confidently introducing themselves" | ||
[build] | ||
render = 'never' | ||
list = 'local' | ||
publishResources = false | ||
+++ | ||
|
||
# The Setup | ||
|
||
Get everyone standing for this exercise! | ||
|
||
1. Start by everyone demonstrating unconfident poses | ||
2. Get everyone moving with a quick stretch or power pose to break the ice and release tension. | ||
- Superman pose – feet shoulder-width apart, hands on hips, chest out. | ||
- The victor - hands up in the air in a V and feet apart | ||
- Any others? | ||
3. In a power pose of your choosing go around the room and ask everyone to say their name in the most exaggerated, enthusiastic way possible, like they’re introducing themselves to a stadium of people. | ||
|
||
> [!WARNING] | ||
> This is not proven science. This is just a fun game to get everyone up and moving around! | ||
# Resources on Confident Presenting | ||
- [Make Body Language Your Superpower](https://www.youtube.com/watch?v=cFLjudWTuGQ&ab_channel=StanfordGraduateSchoolofBusiness) | ||
- [Alter Ego: How having an alter ego empowers you](https://www.bbc.com/worklife/article/20200817-the-batman-effect-how-having-an-alter-ego-empowers-you) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{{ $items := slice }} | ||
{{ $objectives := split .Inner "\n" }} | ||
{{ range $objectives }} | ||
{{ $objective := replace . "- [ ] " "" }} | ||
{{ if ne (trim $objective " ") "" }} | ||
{{ $items = $items | append $objective }} | ||
{{ end }} | ||
{{ end }} | ||
{{ with $items }} | ||
{{ partial "objectives/block" . }} | ||
{{ end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{ $items := slice }} | ||
{{ $objectives := split .Inner "\n" }} | ||
{{ range $objectives }} | ||
{{ $objective := replace . "- [ ] " "" }} | ||
{{ if ne (trim $objective " ") "" }} | ||
{{ $items = $items | append $objective }} | ||
{{ end }} | ||
{{ end }} | ||
{{ with $items }} | ||
{{ partial "objectives/block" . }} | ||
{{ end }} | ||
<!-- Compare this snippet from common-theme/layouts/shortcodes/objectives.html: --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
+++ | ||
title = 'Presenting' | ||
description = "Sharing information with people" | ||
emoji = '📢' | ||
+++ | ||
|
||
## Types of presentation | ||
|
||
When presenting to people, it's important to know what style of presentation you're giving. Some common presentation styles are: | ||
* **[Demos](demoing)**: Presenting something you've done (maybe a working product, maybe a new feature, maybe just a mock-up). | ||
* **Lectures**: Teaching information that you know, that the people you're presenting to don't already know. | ||
|
||
This page contains general advice for all presentations. There are also links to specific information for some of these kinds of presentation. | ||
|
||
## Time | ||
|
||
Know how much time you have for your presentation. Make sure you stick to it. Practice your presentation to ensure you can do it within that time. | ||
|
||
Make sure you know if any time for questions is included in your time, or if there is extra time afterwards for questions. | ||
|
||
If you're using slides, you should aim for about one slide per minute of your presentation. If you have more slides than this it will be hard for the audience to take in your presentation. | ||
|
||
## Audience | ||
|
||
Make sure you know about your audience. Think about: | ||
|
||
**What do they _already_ know?** | ||
* Are there things you need to explain so that they can follow what you actually want to talk about? | ||
* Can you skip some things because everyone in the audience already knows them? | ||
* Do you need to _check_ in your presentation to make sure they actually know what you think? | ||
|
||
**What do they _want_ to know?** What are they excited about? e.g. Talking about a cool way of achieving a code problem probably isn't interesting to someone who doesn't know how to code. | ||
|
||
**What do you want _them_ to know?** Do you want them to take some action based on your presentation? Do you want them to use something you're explaining? | ||
|
||
**What do your audience care about?** An audience of non-developers may be more interested in your UI. An audience of developers may be more interested in your code. Target your presentation to your audience. | ||
|
||
## Focus | ||
|
||
Pick a focused message - one or two things you want people to take away. | ||
|
||
If you just say everything that you know/did, it's hard to pick out what was important. | ||
|
||
Explain **what** as well as **why**. If you're talking about something you did, explain why you did it the way you did it. | ||
|
||
## Ordering | ||
|
||
Try to introduce things in the order they're needed. Avoid needing to say "I'll explain that later" or "You'll understand this later". | ||
|
||
## Guidance for specific presentation types |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
+++ | ||
title = 'Demos' | ||
description = "Sharing something you've done with people" | ||
emoji = '📢' | ||
+++ | ||
|
||
Make sure you've read all of [the general presentation guidance](../presenting). This page adds to that information. | ||
|
||
## Purpose | ||
|
||
Think about the purpose of your demo. | ||
|
||
Are you **pitching** - trying to get someone to use/buy/support your product?\ | ||
If so, you probably want to focus on features, value, and why your product is unique. | ||
|
||
Are you **seeking feedback** - asking people for suggestions or ideas?\ | ||
If so, you probably want to tell the audience what feedback you want, and make sure they know how to give it. | ||
|
||
Are you **teaching** - trying to help someone understand something they don't know?\ | ||
If so you probably want to be checking understanding as you go. | ||
|
||
Are you **celebrating** - showing off something you're proud of? | ||
|
||
Make sure you think about this when you prepare your demo. Make sure the audience know what you're expecting from them too. | ||
|
||
## Pick what you show | ||
|
||
If you need to log into your product, the audience probably don't care about watching you log in. Set up a tab which is already logged in so you can jump straight to the interesting stuff. | ||
|
||
If your project requires you to add some data, but what you want to demo is how the data is presented, add the data _before_ your demo so you can jump straight to the interesting stuff. | ||
|
||
You don't need to show the audience everything in your app. Focus on what matters. | ||
|
||
## Pick what you tell | ||
|
||
You should have already picked a focused message. Only tell your audience what they need to understand that message. | ||
|
||
If you're demoing a product experience, you probably don't need to talk about creating a git repo. It's something you needed to do, but it doesn't contribute to your focused message. | ||
|
||
## Preparing for a demo | ||
|
||
Know the scenarios you are going to demo. Practice them! | ||
|
||
Make sure your product/code is already up and running. No one wants to watch you start your project. No one wants to watch you try to open a project and find it's not working. | ||
|
||
Have tabs already open and prepared for each scenario you want to demo. | ||
|
||
If you need to be logged in as multiple users (e.g. as a buyer and a seller) log in to one in your regular browser and use incognito mode to log in as the other one. | ||
|
||
Consider pre-recording anything that could go wrong - that way you can switch to a video if you need. | ||
|
||
Anticipate questions your audience are likely to ask you. Think about answers to them! | ||
|
||
## Demoing as a group | ||
|
||
Make sure you know how you're splitting up the demo between the people. | ||
|
||
Make sure everyone is talking for about the same amount of time. Don't let one person take over. | ||
|
||
If you're handling questions, make sure everyone answers similar numbers of questions. One person shouldn't answer most of them. | ||
|
||
**Don't ever swap laptops**. Have everyone present from the same laptop. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.