Pizza Meeting

Presenting at a (tech) conference
http://bit.ly/asp-tech-conference

Mateusz Turzyński

What's the name of that tool
you use for making presentations?
https://slides.com

Thank you!






How to present at a (tech) conference?
Tips & Tricks
Make a plan!
- Could be
- just an outline
- with some bullet points
- it will give it some
- structure already
Ask these questions
- What's my role as a speaker?
- Who is my audience?
- What do I want my audience to learn from the talk?
Working with the slides
Keep it simple
DevOps is a set of practices that combines software development (Dev) and IT operations (Ops). It aims to shorten the systems development life cycle and provide continuous delivery with high software quality.
DevOps is complementary with Agile software development; several DevOps aspects came from Agile methodology.

Very short
slides
may be also good :)
sometimes
Avoid leaving slide deck
int num, reverse = 0;
Console.WriteLine("Enter a Number : ");
num = int.Parse(Console.ReadLine());
while (num != 0)
{
reverse = reverse * 10;
reverse = reverse + num % 10;
num = num / 10;
}
Console.WriteLine(reverse);
Console.ReadLine();https://ray.so


https://screentogif.com

Avoid live coding
at all cost
If you can't avoid it
- Work offline
- Make GIT branch for each stage
- Find a partner
More tools :)
https://excalidraw.com


https://pixabay.com


https://undraw.co


Azure Icons
https://docs.microsoft.com/en-us/azure/architecture/icons/
Tips & tricks

Keep it Simple

It's all about the audience
Take your time


Do it! :)


Thank you :)

Pizza Meeting
By Mateusz Turzyński
Pizza Meeting
- 585