October 5, 2020
(Virtual)

WeAreDevelopers Live Week – Second edition

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat. Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet. Nunc ut sem vitae risus tristique posuere.

Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in eros elementum tristique. Duis cursus, mi quis viverra ornare, eros dolor interdum nulla, ut commodo diam libero vitae erat. Aenean faucibus nibh et justo cursus id rutrum lorem imperdiet. Nunc ut sem vitae risus tristique posuere.

in partnership with
LIVE TODAY
October 5, 2020

WeAreDevelopers Live Week – Second edition

Powered by:
in partnership with
in partnership with

About the event

Together with BOSCH we invite you to a full day of learning more about the intersection of mobility and code. Get to know more about how modern mobility is defined by an intricate interplay of hardware and software and how cars are not only connected to the road, but also to the cloud.

Coding the Future of Mobility features a variety of talks and a workshop, that give you valuable insights into the world of mobility - wether you join in-person or online.

About the event

Together with Bosch we invite you to a full day of learning more about the intersection of mobility and code. Get to know more about how modern mobility is defined by an intricate interplay of hardware and software and how cars are not only connected to the road, but also to the cloud.

Coding the Future of Mobility features a variety of talks and a workshop, that give you valuable insights into the world of mobility - wether you join in-person or online.

You can also join us in-person at Talent Garden Vienna (Liechtensteinstraße 111-115, 1090 Vienna)
We have three Tech Talks prepared for you! Afterwards, you can stay and network or play some table soccer!

Explore the sessions and speakers

10:00 am
12:00 am
(CET)
(CEST)
Bug bounty at Swiss Post – Let’s follow the bug from A-Z
Sandro Nafzger
Head of Bug Bounty at Swiss Post
10:00 am
12:00 am
(CET)

Bug bounty at Swiss Post – Let’s follow the bug from A-Z

In order to continuously improve the security of its digital products, Information Security of Swiss Post operates a private bug bounty program. In this workshop, you will meet the team behind it and will get an overview of the benefits and challenges that a large organisation is facing when dealing with ethical hackers. One of our best bounty hunter will show you how he found some of the most critical vulnerabilities in the System of Swiss Post. Then we will follow the bug trough the bug bounty platform that we are using directly on the desk of one of our most tech savvy developers. He will show you some great code and explain what our security champions do in order to learn from the collective intelligence of a global hacking community.

Head of Bug Bounty at Swiss Post
Register for Workshop
Bug bounty at Swiss Post – Let’s follow the bug from A-Z
Cancelled
In order to continuously improve the security of its digital products, Information Security of Swiss Post operates a private bug bounty program. In this workshop, you will meet the team behind it and will get an overview of the benefits and challenges that a large organization is facing when dealing with ethical hackers.
About the speaker(s)
Check out the speakers company
2:30 pm
3:30 pm
(CET)
(CEST)
You can’t hack what you can’t see
Reto Kaeser
Co-Founder & CTO of astarios
2:30 pm
3:30 pm
(CET)

You can’t hack what you can’t see

Integrating Zero Trust into your SDLC Security has been synonymous with a "secure your perimeter"-model – i.e. enforce and protect your walls and then your castle should be safe. The rise and complexity of cloud computing has not necessarily made this model defunct, but it needs extending more than ever before.

This talk is focused on developers in helping them understand:

  • Where is today’s perimeter anyway?
  • What can firewalls protect and when they fail the soft centre of our castle
  • Moving from physical network segmentation to logical micro segmentation
  • Principles of Zero Trust
  • Zero Trust as Code

After successfully merging the Dev and the Ops silos it's imperative now to integrate the Sec silo as well to reduce the threat attack surface of modern, hybrid cloud infrastructures.

Co-Founder & CTO of astarios

I’ve been hooked on developing software and related technology since the 80’s. Doing the arithmetic

this gives me over 40 years of building universally available, distributed and secure systems mainly in

the telecom, finance and construction industries. With experience came the honour of managing and

coordinating talented teams of software developers. In 2000 I founded my first company and I’ve

picked up a couple of more co-founder t-shirts along the way.


I’m fuelled by my passion for delivering a reliable, functional, and especially secure result to my

customers. Security needs to be injected into a project from the very beginning – for every use case

there is usually one-to-many abuse cases which should be considered before a line of code I written.


My first cyber security breach experience happened back in 1991. Imagine being hacked on a dial-in

modem and then having to watch a main-frame being slowly (as in very slowly) taken down. Ever

since then, protecting systems and their organizations has become another one of my passions. 1991

btw was two years after the term “cybersecurity” had been coined.


Currently I’m involved in several interesting projects as either a CTO and/or as a developer together

with being tasked in defining a service portfolio of cloud security solutions for a leading Swiss cyber

security provider.

Register for Workshop
You can’t hack what you can’t see
Cancelled
The rise and complexity of cloud computing has not necessarily made this model defunct, but it needs extending more than ever before.
About the speaker(s)
Currently I’m involved in several interesting projects as either a CTO and/or as a developer togetherwith being tasked in defining a service portfolio of cloud security solutions for a leading Swiss cybersecurity provider.
Check out the speakers company
3:30 pm
4:30 pm
(CET)
(CEST)
How to cause (or prevent) a massive data breach – secure coding and IDOR
Anna Bacher
CTO at Jaroona
3:30 pm
4:30 pm
(CET)

How to cause (or prevent) a massive data breach – secure coding and IDOR

Most infosec professionals are aware of the massive First Financial Corporation data breach that leaked 885 million sensitive documents in 2019. The damage was caused by a vulnerability called IDOR (Insecure Direct Object Reference) that was present in a First Financial Corporation web application. OWASP (the Open Web Application Security Project) recognizes IDOR as one of the top 10 security vulnerabilities for 2020. IDOR falls into the OWASP category known as Broken Access Control. IDOR is arguably one of the most difficult vulnerabilities to systematically detect and defend against in an enterprise codebase. Its ease of exploitation and potential high impact makes it a very high-risk vulnerability. What should developers do? Most industry experts advise them to “think like a hacker,” actively exploring possible attack vectors and implementing access control checks before manipulating resources. They also recommend manual code reviews. While these are good recommendations, they require developers to know how, when, and where to implement access control checks. And, they create a lot of additional manual work. Industry recommendations for QA are somewhat similar: think about attack vectors and make sure to write an extensive set of test cases to cover all potential scenarios. The number of necessary test cases can be immense as IDORs appear in URL parameters, form field parameters, file paths, headers, and cookies. Again, the recommended “best practice” involves a lot of additional manual work. Security officers are encouraged to arrange for manual code audits, which do not scale easily and are expensive. Commercial classic rule-based static code analyzers (SAST) should be able to help in theory, but they produce a lot of false positives and often prove more trouble than they are worth. Modern dynamic code analyzers (DAST) are based on traditional fuzzing techniques and are not suitable for IDOR. This is because traditional fuzzing seeks to break an application with the assumption that crashes indicate the presence of vulnerabilities. This is ineffective since IDOR does not typically crash an application but allows a malicious action to succeed. Our goal was to break through the manual work and provide an efficient automated detection and remediation solution that is effective against IDOR. We were inspired by recent academic advances in defining patterns of vulnerabilities from code representation graphs, the rise of graph query languages (Semmle etc.), and advances in graph neural networks. Integrating all these ideas, we started our journey to automatically find IDORs in targets ranging from applications, libraries, APIs and microservices.

CTO at Jaroona

Anna Bacher is co-founder and CTO of Jaroona GmbH, a pioneer in the advanced machine-learning based enterprise application security platform. She's a Certified Ethical Hacker (CEH), CTO and a developer with nineteen years experience developing and penetrating complex systems for top 100 international banks, telecom companies and payment processors. Anna is a co-author of a patent for peer-to-peer network security. Throughout her career as a security architect, she has been an innovator in the fields of network security, end point protection, security analytics, machine learning and threat defense portfolios. In her current position at Jaroona, she manages a team of highly skilled professionals in cybersecurity, ethical hacking and deep learning, focusing on creating developers’ tools for source code protection. They have built an AI-based vulnerability detection and repair tool that alerts developers to critical vulnerabilities in their code while they are writing it, and provides automated fix suggestions.

Register for Workshop
How to cause (or prevent) a massive data breach – secure coding and IDOR
Cancelled
Most infosec professionals are aware of the massive First Financial Corporation data breach that leaked 885 million sensitive documents in 2019. What should developers do? Most industry experts advise them to "think like a hacker".
About the speaker(s)
Anna Bacher is co-founder and CTO of Jaroona GmbH, a pioneer in the advanced machine-learning based enterprise application security platform. She's a Certified Ethical Hacker (CEH), CTO and a developer with nineteen years experience developing and penetrating complex systems for top 100 international banks, telecom companies and payment processors. Anna is a co-author of a patent for peer-to-peer network security. Throughout her career as a security architect, she has been an innovator in the fields of network security, end point protection, security analytics, machine learning and threat defense portfolios. In her current position at Jaroona, she manages a team of highly skilled professionals in cybersecurity, ethical hacking and deep learning, focusing on creating developers’ tools for source code protection. They have built an AI-based vulnerability detection and repair tool that alerts developers to critical vulnerabilities in their code while they are writing it, and provides automated fix suggestions.
Check out the speakers company
4:30 pm
5:30 pm
(CET)
(CEST)
DevSecOps: Security in DevOps
Aarno Aukia
CTO & Co-founder of VSHN – The DevOps Company
4:30 pm
5:30 pm
(CET)

DevSecOps: Security in DevOps

You managed to introduce an agile development and operations process to your team(s). And now? How can you add security to your DevOps and get to the next level? Join us on our journey and see the tools and processes we tried and learned to value. Listen to our experiences so you do not have to make all of them yourself.

CTO & Co-founder of VSHN – The DevOps Company

Aarno Aukia is co-founder and CTO of VSHN - The DevOps Company. VSHN is the first Swiss Kubernetes Certified Service Provider and expert for DevOps, Docker, Kubernetes, OpenShift and 24/7 Cloud Operations. In addition to his work at VSHN he is a speaker at many events and congresses and lives the openness and sharing of know-how, experience and code.

Register for Workshop
DevSecOps: Security in DevOps
Cancelled
You managed to introduce an agile development and operations process to your team(s). And now? How can you add security to your DevOps and get to the next level? Join us on our journey and see the tools and processes we tried and learned to value. Listen to our experiences so you do not have to make all of them yourself.
About the speaker(s)
Aarno Aukia is co-founder and CTO of VSHN - The DevOps Company. VSHN is the first Swiss Kubernetes Certified Service Provider and expert for DevOps, Docker, Kubernetes, OpenShift and 24/7 Cloud Operations. In addition to his work at VSHN he is a speaker at many events and congresses and lives the openness and sharing of know-how, experience and code.
Check out the speakers company
5:30 pm
6:30 pm
(CET)
(CEST)
Decoupled authorization using Policy as Code
Denys Vitali
DevSecOps Engineer at Swisscom
5:30 pm
6:30 pm
(CET)

Decoupled authorization using Policy as Code

Learn how to decouple authorization checks from your application using Policy as Code, implemented by the open-source software "Open Policy Agent" (OPA). We want to show how it applies to our use cases at Swisscom Cloud Native environment and complement our explanation through a demo.

DevSecOps Engineer at Swisscom

Open-source enthusiast and contributor who loves to share knowledge and learning every day. Linux enthusiast, Kubernetes fan, Golang addicted and wannabe Rustacean.

Register for Workshop
Decoupled authorization using Policy as Code
Cancelled
Learn how to decouple authorization checks from your application using Policy as Code, implemented by the open-source software "Open Policy Agent" (OPA). We want to show how it applies to our use cases at Swisscom Cloud Native environment and complement our explanation through a demo.
About the speaker(s)
Open-source enthusiast and contributor who loves to share knowledge and learning every day. Linux enthusiast, Kubernetes fan, Golang addicted and wannabe Rustacean.
Check out the speakers company
6:30 pm
7:30 pm
(CET)
(CEST)
Getting under the skin: the Social Engineering techniques
Mauro Verderosa
Founder of PSYND
6:30 pm
7:30 pm
(CET)

Getting under the skin: the Social Engineering techniques

In a world where the cybersecurity applications are day after day more protected and solid, the most malicious attackers decide to target the weakest ring of system: the human. Through this presentation we will discover what are the social engineering attacks, how they are defined, how they are performed and how they can be identified before the attacker might be able to gain the access to the most sensitive information.

Founder of PSYND

Mauro Verderosa is a recognized cybersecurity expert and specialized in Identity and Access Management.

He is CISSP and CCSP certified and the only authorized trainer for (ISC)2 in Switzerland. In 2012, he founded PSYND, a Cybersecurity company specialized in IAM and based in Geneva.

Mauro is the founder of the Swiss-CyberSecurity association, the largest cybersecurity network in Switzerland and also founder and president of the (ISC)2 Suisse Romande Chapter.

Register for Workshop
Getting under the skin: the Social Engineering techniques
Cancelled
In a world where the cybersecurity applications are day after day more protected and solid, the most malicious attackers decide to target the weakest ring of system: the human.
About the speaker(s)
Mauro Verderosa is a recognized cybersecurity expert and specialized in Identity and Access Management. He is CISSP and CCSP certified and the only authorized trainer for (ISC)2 in Switzerland. In 2012, he founded PSYND, a Cybersecurity company specialized in IAM and based in Geneva. Mauro is the founder of the Swiss-CyberSecurity association, the largest cybersecurity network in Switzerland and also founder and president of the (ISC)2 Suisse Romande Chapter.
Check out the speakers company
12:30 pm
1:30 pm
(CET)
(CEST)
Alibaba Big Data and Machine Learning technology
Dr. Qiyang Duan
Big Data & AI Solution Architect at Alibaba Cloud
12:30 pm
1:30 pm
(CET)

Alibaba Big Data and Machine Learning technology

Alibaba offers full technology stack of Big Data and AI, from data storage to analytics and then Visualisation. To name a few, Dataworks, Maxcompute, OSS, EMR, ADB, PAI, Quickbi, DataV, etc. In this session, I will first give a general overview of what Alibaba offers and how you can use them for your business. I will focus more on Dataworks and PAI platform and make a small demo.

Big Data & AI Solution Architect at Alibaba Cloud

Dr. Qiyang Duan is a Big Data Solution Architect working at Alibaba Cloud helping European and American companies leverage Alibaba Cloud Big Data/AI technologies and best practices/solutions. Qiyang started his career in Alibaba London offices since 2019. He has PhD degree in computer science, Data Mining. Qiyang worked in Oracle and Huawei before joining Alibaba.

Register for Workshop
Alibaba Big Data and Machine Learning technology
Cancelled
Alibaba offers full technology stack of Big Data and AI, from data storage to analytics and then Visualisation. To name a few, Dataworks, Maxcompute, OSS, EMR, ADB, PAI, Quickbi, DataV, etc. In this session, I will first give a general overview of what Alibaba offers and how you can use them for your business. I will focus more on Dataworks and PAI platform and make a small demo.
About the speaker(s)
Dr. Qiyang Duan is a Big Data Solution Architect working at Alibaba Cloud helping European and American companies leverage Alibaba Cloud Big Data/AI technologies and best practices/solutions. Qiyang started his career in Alibaba London offices since 2019. He has PhD degree in computer science, Data Mining. Qiyang worked in Oracle and Huawei before joining Alibaba.
Check out the speakers company
2:30 pm
3:30 pm
(CET)
(CEST)
PySpark: Combining Machine Learning and Big Data
Ayon Roy
LuLu International Exchange
2:30 pm
3:30 pm
(CET)

PySpark: Combining Machine Learning and Big Data

With the ever-increasing flow of data, comes the industry focus on how to use those data for driving business & insights; but what about the size of the data these days, we have to deal with? The more cleaner data you have, its good for training your ML (Machine Learning) models, but sadly neither the world feeds you clean data nor the huge amount of data is capable of fast processing using common libraries like Pandas etc. How about using the potential of big data libraries with support in Python to deal with this huge amount of data for deriving business insights using ML techniques? But how can we amalgamate the two? Usually people in the ML domain prefer using Python; so combining the potential of Big Data technologies like Spark to supplement ML is a matter of ease with PySpark (a Python package to use the Spark’s capabilities).

LuLu International Exchange

Ayon has a distinct passion for problem-solving using Data Science, ML, AI & loves to wear the cap of a tech speaker passionately. He has had multiple stints in the field of Data Science, AI, ML through various internships & actively contributes to the society by mentoring hackathons, bootcamps. Till date he has delivered 10+ technical talks at places like International Center for Genetic Engineering & Bio-Technology and has also mentored 15+ hackathons, open-source initiatives etc. Alongside this, he is also the organizer of India's First Kaggle Days Meetup in Delhi NCR and loves to review technical books too.

Register for Workshop
PySpark: Combining Machine Learning and Big Data
Cancelled
With the ever-increasing flow of data, comes the industry focus on how to use those data for driving business & insights; but what about the size of the data these days, we have to deal with?
About the speaker(s)
Ayon has a distinct passion for problem-solving using Data Science, ML, AI & loves to wear the cap of a tech speaker passionately. He has had multiple stints in the field of Data Science, AI, ML through various internships & actively contributes to the society by mentoring hackathons, bootcamps. Till date he has delivered 10+ technical talks at places like International Center for Genetic Engineering & Bio-Technology and has also mentored 15+ hackathons, open-source initiatives etc. Alongside this, he is also the organizer of India's First Kaggle Days Meetup in Delhi NCR and loves to review technical books too.
Check out the speakers company
3:30 pm
4:30 pm
(CET)
(CEST)
Algorithmic bias: preventing unfairness in your algorithms
Prathyusha Charagondla
Site Reliability Engineer at Adobe, Masters in Information & Data Science at UC Berkeley
3:30 pm
4:30 pm
(CET)

Algorithmic bias: preventing unfairness in your algorithms

We take algorithms for granted and assume that they are unbiased and neutral. An algorithm by definition, according to Merriam-Webster, is a “set of rules a machine [... specifically a computer] follows to achieve a particular goal.” As these rules are designed by humans, they can contain flaws that can lead to biases. A few outliers are expected, but when it leads to bias against certain groups, it can be problematic. Let's take an example - a few years back, Amazon attempted to create a hiring algorithm to efficiently select candidates. However, due to the nature of the historical data used to train the algorithm, it was biased against female applicants. The goal of this talk is to educate on algorithmic bias, present case studies to highlight the adverse effects of algorithmic bias, and address prevention strategies.

Site Reliability Engineer at Adobe, Masters in Information & Data Science at UC Berkeley

Broke her first computer at 4 years (literally). Wrote her first program at 14. She has not stopped loving computer science since! Prathyusha is a Site Reliability Engineer at Adobe, engaging with core internal platforms to improve their reliability. Having worked previously with machine learning applications, she looks for creative ways to integrate it into service reliability. She is currently working towards her Masters in Information and Data Science from University of California, Berkeley, with an emphasis in Machine Learning. She is heavily involved in organizations that are focused on empowering and encouraging minorities in STEM. In her free time, she enjoys teaching yoga, traveling, and trying new food.

Register for Workshop
Algorithmic bias: preventing unfairness in your algorithms
Cancelled
An algorithm by definition, according to Merriam-Webster, is a “set of rules a machine [... specifically a computer] follows to achieve a particular goal.” As these rules are designed by humans, they can contain flaws that can lead to biases.
About the speaker(s)
Prathyusha is a Site Reliability Engineer at Adobe, engaging with core internal platforms to improve their reliability.
Check out the speakers company
5:30 pm
6:30 pm
(CET)
(CEST)
Meet & Greet Women in AI DACH
Carina Zehetmaier
CEO & Co-founder Taxtastic, Women in AI Ambassador Austria
5:30 pm
6:30 pm
(CET)

Meet & Greet Women in AI DACH

Women in AI (WAI) is a global network of female experts and professionals in the field of Artificial Intelligence working towards gender-inclusive and ethical AI that benefits a global society. Our mission is to close the gender gap in the field by educating the next generation of female leaders in AI and to increase female representation and participation in Artificial Intelligence.

About the hosts

Carina Zehetmaier is a speaker, CEO & Co-founder, and legal expert with several years of experience working in international organisations and foreign affairs. She has profound knowledge of human rights law, diplomacy and world politics. She is passionate about entrepreneurship and new technologies, especially artificial intelligence, and the interlinkages with law, ethics and society.

Sheila Beladinejad is the founder and CEO of O Canada Tech. She has 20+ years of experience in Software Engineering with a special interest and expertise in Artificial Intelligence evaluation. She helps Private Equity firms going through the merger and acquisition process by providing technical due diligence assessments of the target companies’ software infrastructure. Additionally, she works with executive management teams of technology companies to define and execute strategic roadmaps for digital transformation and adoption of AI. She is the Global Head of Partnerships for Women in AI & the Ambassador of Munich. She also has an advisory role for Greentech Alliance non-profit organization.

CEO & Co-founder Taxtastic, Women in AI Ambassador Austria

Speaker, CEO & Co-founder, and legal expert with several years of experience working in international organisations and foreign affairs; profound knowledge of human rights law, diplomacy and world politics; passionate about entrepreneurship and new technologies, especially artificial intelligence, and the interlinkages with law, ethics and society.

Register for Workshop
Meet & Greet Women in AI DACH
Cancelled
Women in AI (WAI) is a global network of female experts and professionals in the field of Artificial Intelligence working towards gender-inclusive and ethical AI that benefits a global society. Our mission is to close the gender gap in the field by educating the next generation of female leaders in AI and to increase female representation and participation in Artificial Intelligence.
About the speaker(s)
Speaker, CEO & Co-founder, and legal expert with several years of experience working in international organisations and foreign affairs; profound knowledge of human rights law, diplomacy and world politics; passionate about entrepreneurship and new technologies, especially artificial intelligence, and the interlinkages with law, ethics and society.
Check out the speakers company
6:30 pm
7:30 pm
(CET)
(CEST)
What do language models really learn?
Tanmay Bakshi
Best-selling Author | GDE Machine Learning
6:30 pm
7:30 pm
(CET)

What do language models really learn?

Deep Neural Networks and Language Models built on top of them have seen a lot of hype over the past couple of months, especially in the GPT family of techniques. However, is this hype really deserved? What relationships and patterns do these models end up learning? Do they really reason and internally represent abstract concepts? Most importantly, how does this generalize to applications of Deep Neural Networks outside of Language Modelling? We'll decipher this situation and find the answers to these questions with a bottom up approach.

Best-selling Author | GDE Machine Learning

Tanmay Bakshi is a 16-year-old Canadian author, AI and ML Systems Architect, TED & Keynote speaker, Google Developer Expert for Machine Learning, and IBM Developer Advocate. He has addressed over 200,000 executives, students, and developers worldwide at conferences, universities, financial institutions, and international companies. The United Nations, Linux Foundation, Apple, SAP, IBM, KPMG, Microsoft, and Walmart are a few of the organizations he has keynoted for.

Tanmay has been covered in the media, being featured in the Toronto Star, on the front page of The Vancouver Sun, pictured on stage doing what he loves to do - sharing his knowledge with the world, in Forbes and CNBC, as well as in Bloomberg Businessweek as a Young Entrepreneur, in The New York Times, and The Wall Street Journal, just to name a few.

His YouTube channel called “Tanmay Teaches” is where he shares his research and knowledge with audiences of all ages, and is the host of the live series “Tech Life Skills with Tanmay”. He has had the honour of being the recipient of the Life Mentor Award by the Hon. Lt. Governor of Manitoba, Twilio Doer Award, Knowledge Ambassador Award, and Global Goodwill Ambassador at LinkedIn.

He has developed machine learning powered systems, such as "Heart ID", a deep neural network based Electrocardiogram-based identification system, which won HPCWire's Readers’ Choice Award for Best Use of High Performance Data Analytics & Artificial Intelligence. He's also worked on lower level software, like an ultra low-latency call tracer utility that can scale to trillions of function calls, and is powered by LLVM, for the IBM Db2 codebase.

Register for Workshop
What do language models really learn?
Cancelled
Deep Neural Networks and Language Models built on top of them have seen a lot of hype over the past couple of months, especially in the GPT family of techniques.
About the speaker(s)
Tanmay Bakshi is a 16-year-old Canadian author, AI and ML Systems Architect, TED & Keynote speaker, Google Developer Expert for Machine Learning, and IBM Developer Advocate. He has addressed over 200,000 executives, students, and developers worldwide at conferences, universities, financial institutions, and international companies. The United Nations, Linux Foundation, Apple, SAP, IBM, KPMG, Microsoft, and Walmart are a few of the organizations he has keynoted for.
Check out the speakers company
9:00 am
10:00 am
(CET)
(CEST)
The importance of a diverse workforce – powered by Women in DevOps
Lauren Langdell
Director, USA at Trust in Soda
9:00 am
10:00 am
(CET)

The importance of a diverse workforce – powered by Women in DevOps

This talk is a quick deep dive into addressing the gender gap in DevOps and what we can do to close it. We believe that a balanced and diverse workforce drives innovation. Why is so important to grow and retain Diverse DevOps teams – join Lauren and Antonia from Women in DevOps to find out.

Director, USA at Trust in Soda

Lauren is originally from the South Coast of England and started her recruitment career in London before relocating to Los Angeles in March 20202. Lauren is the Founder of Women in DevOps, a global platform that empowers and inspires diversity in technology and USA Director at Trust in Soda, a multiple award-winning digital recruitment agency based in Manhattan Beach, California.

She has been recruiting in the DevOps space since 2014. With over 6 years of recruitment experience hiring devOps and SRE engineers and managers for the globes best brands and most innovative starts ups I’m now focused on the USA market in particular California and Laucnhed Women in DevOps in 2017 which started out as a small tech meetup for like-minded female engineers. It has since grown into an offline and online into community of 4000 individuals who are all passionate about I inspiring and empowering women in DevOps globally. It has held panel discussions, meetups and events in London, Dublin and Los Angeles proudly partnering with the likes of Google, Facebook, Headspace, FandangoNOW and Expedia.

Register for Workshop
The importance of a diverse workforce – powered by Women in DevOps
Cancelled
This talk is a quick deep dive into addressing the gender gap in DevOps and what we can do to close it. We believe that a balanced and diverse workforce drives innovation. Why is so important to grow and retain Diverse DevOps teams – join Lauren and Antonia from Women in DevOps to find out.
About the speaker(s)
Lauren is originally from the South Coast of England and started her recruitment career in London before relocating to Los Angeles in March 20202. Lauren is the Founder of Women in DevOps, a global platform that empowers and inspires diversity in technology and USA Director at Trust in Soda, a multiple award-winning digital recruitment agency based in Manhattan Beach, California.
Check out the speakers company
10:15 am
11:00 am
(CET)
(CEST)
Diversity in Tech: How HR can be so powerful
Francesca Pollard
Co-founder of Women in DevOps
10:15 am
11:00 am
(CET)

Diversity in Tech: How HR can be so powerful

This quick we will be focusing on how important your HR is to your business. How diversity should affect your hiring strategy and people goals and just how big the impact is on the bottom line & culture for your teams. Join Women in DevOps speaking with Nancy Nemes, Kate Kosten and Ana Gospodinova to talk all things, diversity, inclusion and HR!

About the panelists

Francesca Pollard is the Co-Founder of Women in DevOps and unapologetically passionate about diversity in inclusion in the technology world. Francesca has a wealth of experience hiring for software engineers across Europe over the last 3 years for world-class start-ups, FTSE 100 and everything in between! With that brings intrinsic insight to how to hire diverse teams, and why they are so important!

Kate Kosten currently works as a researcher at the ZHAW and is jointly pursuing a PhD at the University of Fribourg. The main focus of her research is natural language query processing for databases. Before moving back to research, she worked in the innovation team at ABB developing chatbots and Machine Learning solutions for data quality improvement.

Nancy Nemes is a tech trendsetter, a global connector and a hands-on leader with 20 years of global experience in high tech across Europe, USA, Canada and South America. Her passion is in pioneering, implementing and optimizing the impact of mobile, digital, and social high tech aiming at enriching people lives through digital solutions.

Ana Gospodinova has over 15 years of experience mainly focusing on tech recruiting and company performance improvements. She gained her experience in both startup and corporate environments. Ana designed and implemented global tech talent sourcing strategies, long & short term approach to building external talent pipelines of “ready now” talent (strategy, structure, systems & programs), defined goal-setting approach and program efficiency metrics. She worked with businesses on focused initiatives with a world-wide impact. In the past 4 years, Ana is passionate about bridging technology and recruitment, aiming at improving the developers’ job-seeking experience.

Co-founder of Women in DevOps

Francesca is the Co-Founder of Women in DevOps and unapologetically passionate about diversity in inclusion in the technology world. Francesca has a wealth of experience hiring for software engineers across Europe over the last 3 years for world-class start-ups, FTSE 100 and everything in between! With that brings intrinsic insight to how to hire diverse teams, and why they are so important!

Register for Workshop
Diversity in Tech: How HR can be so powerful
Cancelled
This quick we will be focusing on how important your HR is to your business. How diversity should affect your hiring strategy and people goals and just how big the impact is on the bottom line & culture for your teams. Join Women in DevOps speaking with Nancy Nemes, Kate Kosten and Ana Gospodinova to talk all things, diversity, inclusion and HR!
About the speaker(s)
Francesca is the Co-Founder of Women in DevOps and unapologetically passionate about diversity in inclusion in the technology world. Francesca has a wealth of experience hiring for software engineers across Europe over the last 3 years for world-class start-ups, FTSE 100 and everything in between! With that brings intrinsic insight to how to hire diverse teams, and why they are so important!
Check out the speakers company
11:30 am
1:00 pm
(CET)
(CEST)
Workshop by Google – #iamremarkable
Judith Dobretzberger
Retail Lead & IaR facilitator at Google Switzerland
11:30 am
1:00 pm
(CET)

Workshop by Google – #iamremarkable

What is #IamRemarkable?

#IamRemarkable is a Google initiative empowering everyone, particularly women and underrepresented groups around the world to speak openly about their accomplishments and promote themselves in the workplace and beyond. It’s one step in breaking through modesty norms and company glass ceilings. The #IamRemarkable workshop is an interactive, small-group digital session that runs live for 90 minutes and is hosted via Google Meet.

How #IamRemarkable works

  • Self-promotion matters – Many of us struggle when it comes to talking about our personal accomplishments. Cultural and gender modesty norms as well as impostor syndrome can prevent a person from acknowledging their remarkable attributes and expressing their greatest achievements.
  • #IamRemarkable goals – (1) Improve the self-promotion, motivation and skills of women and underrepresented groups. (2) Challenge the social perception around self-promotion.

The workshop

During the 90-minute workshop, you’ll be encouraged to challenge the social perception around self-promotion. You’ll explore the importance of self-promotion in both your personal and professional lives. Finally, you’ll leave the workshop equipped with the tools to develop this crucial skill.

Thanks for registering. The workshop is already fully booked!
Retail Lead & IaR facilitator at Google Switzerland
Register for Workshop
Workshop by Google – #iamremarkable
Cancelled
The #IamRemarkable workshop is an interactive, small-group digital session that runs live for 90 minutes and is hosted via Google Meet.
About the speaker(s)
Check out the speakers company
2:30 pm
3:30 pm
(CET)
(CEST)
Improving developer happiness with GitOps
Lars Hesel Christensen
Solution Architect at Helvetia
2:30 pm
3:30 pm
(CET)

Improving developer happiness with GitOps

In this talk, we will explain how Helvetia Versicherungen is dramatically improving internal processes and increasing developer happiness. This is achieved by automating manual work as well as reaping the benefits of moving to the cloud where we can quickly and efficiently deploy and provision services using a GitOps based approach.

Solution Architect at Helvetia

Lars Hesel Christensen has been working with software professionally for almost two decades in a broad range of fields and project types ranging from small resource-constrained embedded systems over fintech projects to large highly available and scalable backend systems. Currently, he's working as a DevOps Solution Architect at Helvetia Versicherungen where he's working on the next-generation integration platform. In his spare time, he likes to spend time with his family and occasionally sneaks off to go rock climbing or ride his mountain bike in the hills around his home in the canton of Basel-Country.

Register for Workshop
Improving developer happiness with GitOps
Cancelled
In this talk, we will explain how Helvetia Versicherungen is dramatically improving internal processes and increasing developer happiness. This is achieved by automating manual work as well as reaping the benefits of moving to the cloud where we can quickly and efficiently deploy and provision services using a GitOps based approach.
About the speaker(s)
Lars Hesel Christensen has been working with software professionally for almost two decades in a broad range of fields and project types ranging from small resource-constrained embedded systems over fintech projects to large highly available and scalable backend systems. Currently, he's working as a DevOps Solution Architect at Helvetia Versicherungen where he's working on the next-generation integration platform. In his spare time, he likes to spend time with his family and occasionally sneaks off to go rock climbing or ride his mountain bike in the hills around his home in the canton of Basel-Country.
Check out the speakers company
3:30 pm
4:30 pm
(CET)
(CEST)
Progressive Web Apps – The next big thing!
Nico Martin
Co-founder of Say Hello
3:30 pm
4:30 pm
(CET)

Progressive Web Apps – The next big thing!

"Progressive Web Apps" describe a set of new browser features that allow us to develop app-like experiences using web technologies. This talk will give you a brief overview of the exciting new possibilities (like offline capabilities, push notifications and an integrated UX), as well as their risks and do’s and don'ts.

Co-founder of Say Hello

I'm a self-taught web-developer from Switzerland focused on modern frontend development. I'm also one-third of say hello, a digital agency where we create custom Web Applications for our clients and I'm currently freelancing for Valtech, where I work on a larger React Application. I also contribute a lot to Open Source projects and I love to play around with all kinds of web stuff.

Register for Workshop
Progressive Web Apps – The next big thing!
Cancelled
"Progressive Web Apps" describe a set of new browser features that allow us to develop app-like experiences using web technologies.
About the speaker(s)
I'm a self-taught web-developer from Switzerland focused on modern frontend development. I'm also one-third of say hello, a digital agency where we create custom Web Applications for our clients and I'm currently freelancing for Valtech, where I work on a larger React Application. I also contribute a lot to Open Source projects and I love to play around with all kinds of web stuff.
Check out the speakers company
4:30 pm
5:30 pm
(CET)
(CEST)
Cloud-native applications: What's the buzz about?
Jens Eickmeyer
Cloud Architect and Full-Stack Engineer at Accenture
4:30 pm
5:30 pm
(CET)

Cloud-native applications: What's the buzz about?

Everyone talks about Cloud-native Application Development nowadays. But what does it actually mean? In this talk, we want to try to define what the characteristics of Cloud-native Applications are and what benefits they offer. In some specific examples, we try to show how to implement Cloud-native principles.

Cloud Architect and Full-Stack Engineer at Accenture

Jens Eickmeyer is a passionate cloud architect and full-stack software engineer. His focus is on the development of modern cloud-native applications, especially on the Amazon Web Services (AWS) platform.

Register for Workshop
Cloud-native applications: What's the buzz about?
Cancelled
Everyone talks about Cloud-native Application Development nowadays. But what does it actually mean? In this talk, we want to try to define what the characteristics of Cloud-native Applications are and what benefits they offer. In some specific examples, we try to show how to implement Cloud-native principles.
About the speaker(s)
Jens Eickmeyer is a passionate cloud architect and full-stack software engineer. His focus is on the development of modern cloud-native applications, especially on the Amazon Web Services (AWS) platform.
Check out the speakers company
5:30 pm
6:30 pm
(CET)
(CEST)
Functions triggers using Azure Event Grids in Azure Blob Storage
Menaka Baskerpillai
Senior Programmer at Kumaran Systems
5:30 pm
6:30 pm
(CET)

Functions triggers using Azure Event Grids in Azure Blob Storage

In this session am going to explain about how to work with Functions Triggers using Azure Event Grids in Azure Blob Storage.

Senior Programmer at Kumaran Systems

Menaka Baskerpillai working as a Senior Programmer at Kumaran Systems is a tech enthusiastic blogger and an international speaker who speaks about cloud and .NET Core. Menaka spends her time learning and sharing her knowledge with the community. She is also a former Microsoft Student Partner and Mozilla Firefox student Ambassador. She is a Microsoft certified Resource in Azure and programming in C#. Menaka recognized as the Most valuable professional by the C# corner community.

Register for Workshop
Functions triggers using Azure Event Grids in Azure Blob Storage
Cancelled
In this session am going to explain about how to work with Functions Triggers using Azure Event Grids in Azure Blob Storage.
About the speaker(s)
Menaka Baskerpillai working as a Senior Programmer at Kumaran Systems is a tech enthusiastic blogger and an international speaker who speaks about cloud and .NET Core. Menaka spends her time learning and sharing her knowledge with the community. She is also a former Microsoft Student Partner and Mozilla Firefox student Ambassador. She is a Microsoft certified Resource in Azure and programming in C#. Menaka recognized as the Most valuable professional by the C# corner community.
Check out the speakers company
6:30 pm
7:30 pm
(CET)
(CEST)
Work efficiently with Architecture Decision Records (ADRs)
Johannes Dienst
Software Architect at DB Systel
6:30 pm
7:30 pm
(CET)

Work efficiently with Architecture Decision Records (ADRs)

Documentation is not one of the favorite tasks in everyday software development. Either there is hardly any documentation or too much. This makes it difficult to find information. A lightweight approach is the arc42 template. It also documents design decisions that shape the software architecture. Undocumented design decisions can lead to incorrect follow-up decisions that can cause the project to fail. But how can many decisions be documented efficiently and comprehensibly? This presentation will introduce a compact format called Architecture Decision Records (ADR) and show how they can be used efficiently. In addition to small details such as title assignment, a proposed solution is shown for dealing with a large collection of design decisions (>50). The Docs As Code approach is used. Through tagging and an efficient search, the documentation becomes a daily work tool.

Software Architect at DB Systel

Johannes Dienst is a computer scientist and software crafter with 8 years of professional experience in the development of complex IT systems with all kinds of other languages. His other interests are broadly diversified with a focus on software quality and software architecture. He likes to share and expand his knowledge as a speaker at conferences and professional articles.

Register for Workshop
Work efficiently with Architecture Decision Records (ADRs)
Cancelled
Documentation is not one of the favorite tasks in everyday software development. Either there is hardly any documentation or too much. This makes it difficult to find information. A lightweight approach is the arc42 template.
About the speaker(s)
Johannes Dienst is a computer scientist and software crafter with 8 years of professional experience in the development of complex IT systems with all kinds of other languages. His other interests are broadly diversified with a focus on software quality and software architecture. He likes to share and expand his knowledge as a speaker at conferences and professional articles.
Check out the speakers company
2:00 pm
3:00 pm
(CET)
(CEST)
The massively scaled Blockchain to meet developer needs
Steve Shadders
CTO at nChain & Technical Director at Bitcoin SV Node Project
2:00 pm
3:00 pm
(CET)

The massively scaled Blockchain to meet developer needs

In this presentation, learn why Bitcoin SV is the massively scaled blockchain to meet developer needs, re-invent the Internet, and open career opportunities for developers (such as a new job category: Bitcoin script engineer). Bitcoin SV is the only project that adheres to Satoshi Nakamoto’s original protocol, design and massive scaling vision for Bitcoin to become a global data ledger for enterprise, in addition to a peer-to-peer electronic cash system. By solving the scaling problems other blockchain platforms (like Ethereum) are facing, Bitcoin SV enables greater data, micropayments and technical capabilities. The Bitcoin SV Blockchain has seen application development explode globally, with now over 400 known ventures and projects. By learning about Bitcoin SV, developers can prepare themselves to build powerful enterprise applications, launch their own start-up ventures, and be at the forefront of new blockchain jobs.

CTO at nChain & Technical Director at Bitcoin SV Node Project

Steve Shadders has been involved in Bitcoin infrastructure since early 2011. As one of the first authors of open-source mining pool software "PoolServerJ," he was at the forefront of implementing new features like merged mining and local coinbase generation that are in common use today. Steve was actively involved in BitcoinJ project as one of the earliest contributors and still uses it today as his staple Bitcoin library. Today, Steve heads up nChain’s engineering team and is the Technical Director of the Bitcoin SV Node project. He is passionate about the future role of Bitcoin in reshaping the world. In his own words, it is disruptive technology with “more potential to change the world than the printing press.” In his role, he contributes his ecosystem-wide perspective to support building the mining and UX infrastructure needed to enable Satoshi’s Vision to be realized.

Register for Workshop
The massively scaled Blockchain to meet developer needs
Cancelled
In this presentation, learn why Bitcoin SV is the massively scaled blockchain to meet developer needs, re-invent the Internet, and open career opportunities for developers (such as a new job category: Bitcoin script engineer). Bitcoin SV is the only project that adheres to Satoshi Nakamoto’s original protocol, design and massive scaling vision for Bitcoin to become a global data ledger for enterprise, in addition to a peer-to-peer electronic cash system.
About the speaker(s)
Steve Shadders has been involved in Bitcoin infrastructure since early 2011. As one of the first authors of open-source mining pool software “PoolServerJ,” he was at the forefront of implementing new features like merged mining and local coinbase generation that are in common use today. Steve was actively involved in BitcoinJ project as one of the earliest contributors and still uses it today as his staple Bitcoin library. Today, Steve heads up nChain’s engineering team and is the Technical Director of the Bitcoin SV Node project. He is passionate about the future role of Bitcoin in reshaping the world. In his own words, it is disruptive technology with “more potential to change the world than the printing press.” In his role, he contributes his ecosystem-wide perspective to support building the mining and UX infrastructure needed to enable Satoshi’s Vision to be realized.
Check out the speakers company
3:00 pm
4:00 pm
(CET)
(CEST)
Smart Contract fundamentals – My first DApp
Tim Weingärtner
Professor at HSLU
3:00 pm
4:00 pm
(CET)

Smart Contract fundamentals – My first DApp

Blockchain Technology offers incredible use cases besides crypto-currencies. Applications in Supply Chain Management, Self-Sovereign Identity, Certificates, Escrow are all based on Smart Contracts. This session gives a brief introduction into Smart Contracts and take a first step towards DApp (Distributed App) development. Get to know some of the development tools and take a step into the Blockchain Ecosystem.  

Professor at HSLU

Prof. Dr. Tim Weingärtner is a lecturer at the School of Information Technology at the Lucerne University of Applied Sciences and Arts (HSLU), Switzerland. He is working on Blockchain Technology, and its application in IoT, identity and the energy sector. Furthermore, he organizes the International Blockchain Forum Rotkreuz. As a representative in the Smart-up Program, he supports the promotion of young start-ups from the HSLU. As a member of the project team, he played a major role in setting up the Central Switzerland Innovation Park in Rotkreuz.

Register for Workshop
Smart Contract fundamentals – My first DApp
Cancelled
Blockchain Technology offers incredible use cases besides crypto-currencies. Applications in Supply Chain Management, Self-Sovereign Identity, Certificates, Escrow are all based on Smart Contracts.
About the speaker(s)
Prof. Dr. Tim Weingärtner is a lecturer at the School of Information Technology at the Lucerne University of Applied Sciences and Arts (HSLU), Switzerland. He is working on Blockchain Technology and its application in IoT, identity, and the energy sector. Furthermore, he organizes the International Blockchain Forum Rotkreuz. As a representative in the Smart-up Program, he supports the promotion of young start-ups from the HSLU. As a member of the project team, he played a major role in setting up the Central Switzerland Innovation Park in Rotkreuz.
Check out the speakers company
4:00 pm
5:00 pm
(CET)
(CEST)
Can Blockchain change business? And how and why?
Paula Pettit
Business Development at Linum Labs
4:00 pm
5:00 pm
(CET)

Can Blockchain change business? And how and why?

Blockchain is not about money. But how does it influence business and does it have the stamina to also affect our society?

About the panelists

Paula Pettit is a serial entrepreneur who successfully exited her first two startups. She has been in the blockchain industry for the past 3 years, and began her journey by co-founding Bitfract, a portfolio management tool that was later acquired by ShapeShift. She now works as the Head of Business Development at Linum Labs, a global blockchain consultant and development company.

Steve Shadders has been involved in Bitcoin infrastructure since early 2011. As one of the first authors of open-source mining pool software "PoolServerJ," he was at the forefront of implementing new features like merged mining and local coinbase generation that are in common use today. Steve was actively involved in BitcoinJ project as one of the earliest contributors and still uses it today as his staple Bitcoin library. Today, Steve heads up nChain’s engineering team and is the Technical Director of the Bitcoin SV Node project. He is passionate about the future role of Bitcoin in reshaping the world. In his own words, it is disruptive technology with “more potential to change the world than the printing press.” In his role, he contributes his ecosystem-wide perspective to support building the mining and UX infrastructure needed to enable Satoshi’s Vision to be realized.

David Case is Chief Architect of Kronoverse. They are building a platform to bring blockchain gaming to the mainstream. Their first release is Cryptofights, which is currently in open beta. They have been building on BSV since just after the BCH fork, and working on taking advantage of it massive scaling capacity.

Business Development at Linum Labs
Register for Workshop
Can Blockchain change business? And how and why?
Cancelled
Blockchain is not about money. But how does it influence business and does it have the stamina to also affect our society?
About the speaker(s)
Check out the speakers company
5:00 pm
6:00 pm
(CET)
(CEST)
Build Your Blockchain Application in JavaScript
Nazar Hussain
Senior Backend Developer at Lisk
5:00 pm
6:00 pm
(CET)

Build Your Blockchain Application in JavaScript

The presentation will introduce the Lisk SDK and how it is used to build blockchain applications. We will give an in-depth explanation of the new Lisk SDK Architecture and the three ways to build, extend, and interact with a blockchain application built with the Lisk SDK. Therefore, the talk will cover aspects such as extending the distributed ledger-based on your business requirement, providing extended APIs for external third-party apps, or scripting some utilities to interact with blockchain application on the command line.

Senior Backend Developer at Lisk

Nazar has been in the software development industry for over 15 years. Prior to Lisk, he worked as a Senior Software Architect leading three products for eKomi. He has also worked in a range of industries, including education, finance and governmental services. Nazar had been looking into blockchain technology for over a year before he realized he was interested in pursuing a career in it. He loves learning how to harness new technologies and blockchain was at the top of the list. In his free time, Nazar enjoys writing poetry and prose. Nazar holds a Bachelor of General Science in Mathematics and a Bachelor of Computer Science from the Virtual University in Pakistan.

Register for Workshop
Build Your Blockchain Application in JavaScript
Cancelled
The presentation will introduce the Lisk SDK and how it is used to build blockchain applications. We will give an in-depth explanation of the new Lisk SDK Architecture and the three ways to build, extend, and interact with a blockchain application built with the Lisk SDK. Therefore, the talk will cover aspects such as extending the distributed ledger-based on your business requirement, providing extended APIs for external third-party apps, or scripting some utilities to interact with blockchain application on the command line.
About the speaker(s)
Nazar has been in the software development industry for over 15 years. Prior to Lisk, he worked as a Senior Software Architect leading three products for eKomi. He has also worked in a range of industries, including education, finance and governmental services. Nazar had been looking into blockchain technology for over a year before he realized he was interested in pursuing a career in it. He loves learning how to harness new technologies and blockchain was at the top of the list. In his free time, Nazar enjoys writing poetry and prose. Nazar holds a Bachelor of General Science in Mathematics and a Bachelor of Computer Science from the Virtual University in Pakistan.
Check out the speakers company
6:00 pm
7:00 pm
(CET)
(CEST)
Leveraging Blockchain technology for business
Marta Geater-Pierkarska
Director of Ecosystem at The Linux Foundation
6:00 pm
7:00 pm
(CET)

Leveraging Blockchain technology for business

Distributed Ledger Technologies are here to stay. What started as an enabling technology for Bitcoin has now become a core platform for businesses and organizations around the world. Applications range from food safety, through trading all the way to fighting COVID-19. Marta will discuss DLT adoption in the enterprise world and the use cases Hyperledger members are implementing today, in production.

Director of Ecosystem at The Linux Foundation

Marta serves as the Director of Ecosystem at Hyperledger. Marta studied in Warsaw and Berlin, obtaining a double Masters and a PhD in Computer Science. Her professional career started with Security and Privacy in the Telekom space. In 2015 she drunk the Kool Aid and joined Blockckstream, one of the more significant Bitcoin companies.  As part of her role in Hyperledger Marta evangelizes technology and Open Source at conferences around the world and helps enterprises with applying permissioned Blockchains to their use-cases. Marta is passionate about how Blockchain can help in non traditional spaces, such as identity, last mile aid and education delivery and sustainability. Leading the public speaking and outreach at Hyperledger, she has given numerous interviews, both written and in visual media. Marta also formed the W3C Blockchain community Group and Trustee and a Chair of the Sovrin Technical Governing Board, and part of the Cambridge Blockchain Society Committee.

Register for Workshop
Leveraging Blockchain technology for business
Cancelled
Distributed Ledger Technologies are here to stay. What started as an enabling technology for Bitcoin has now become a core platform for businesses and organizations around the world. Applications range from food safety, through trading all the way to fighting COVID-19. Marta will discuss DLT adoption in the enterprise world and the use cases Hyperledger members are implementing today, in production.
About the speaker(s)
Marta serves as the Director of Ecosystem at Hyperledger. Marta studied in Warsaw and Berlin, obtaining a double Masters and a PhD in Computer Science. Her professional career started with Security and Privacy in the Telekom space. In 2015 she drunk the Kool Aid and joined Blockckstream, one of the more significant Bitcoin companies. As part of her role in Hyperledger Marta evangelizes technology and Open Source at conferences around the world and helps enterprises with applying permissioned Blockchains to their use-cases. Marta is passionate about how Blockchain can help in non traditional spaces, such as identity, last mile aid and education delivery and sustainability. Leading the public speaking and outreach at Hyperledger, she has given numerous interviews, both written and in visual media. Marta also formed the W3C Blockchain community Group and Trustee and a Chair of the Sovrin Technical Governing Board, and part of the Cambridge Blockchain Society Committee.
Check out the speakers company
7:00 pm
8:00 pm
(CET)
(CEST)
Women in DevOps Happy Hour – BYOB!
Francesca Pollard
Co-founder of Women in DevOps
7:00 pm
8:00 pm
(CET)

Women in DevOps Happy Hour – BYOB!

Its been a long day of interesting talks and learning! We hope you have had fun. Tomorrow is DevOps Day! 2020 has meant we can’t all be together, but that doesn’t mean we can’t network with a beer!

Co-founder of Women in DevOps

Francesca is the Co-Founder of Women in DevOps and unapologetically passionate about diversity in inclusion in the technology world. Francesca has a wealth of experience hiring for software engineers across Europe over the last 3 years for world-class start-ups, FTSE 100 and everything in between! With that brings intrinsic insight to how to hire diverse teams, and why they are so important!

Register for Workshop
Women in DevOps Happy Hour – BYOB!
Cancelled
Its been a long day of interesting talks and learning! We hope you have had fun. Tomorrow is DevOps Day! 2020 has meant we can’t all be together, but that doesn’t mean we can’t network with a beer!
About the speaker(s)
Francesca is the Co-Founder of Women in DevOps and unapologetically passionate about diversity in inclusion in the technology world. Francesca has a wealth of experience hiring for software engineers across Europe over the last 3 years for world-class start-ups, FTSE 100 and everything in between! With that brings intrinsic insight to how to hire diverse teams, and why they are so important!
Check out the speakers company
10:00 am
12:00 pm
(CET)
(CEST)
DevOps 101 workshop: Powered by Women in DevOps and JFrog
Batel Zohar
Enterprise Solution Lead at JFrog
10:00 am
12:00 pm
(CET)

DevOps 101 workshop: Powered by Women in DevOps and JFrog

When you’re new to an industry, you encounter a lot of new concepts. This can make it really difficult to get your feet underneath you on an unfamiliar landscape, especially for junior engineers. What does DevOps really mean? What’s all this software? What’s all this jargon? Is DevOps a methodology, or a toolset? Is any of this actually going to make my life easier, or is it just a bunch of industry buzzwords? We'll answer all of these questions (and more) during this hands-on workshop, and get you set up with an end-to-end DevOps solution to automate your build artifact storage, vulnerability detection, testing, and deployment. For-profit and glory!

Prerequisites

  1. JFrog SaaS account – This is free, no credit card required. It includes access to Artifactory, Pipelines, and Xray, with a limited amount of storage, transfer, and build minutes.
  2. Docker – The Docker client should be installed and configured on your machine.
  3. Python3 – We will need to run a hello world Python application. Python 3.6 or higher is required.
  4. Code editor – Whatever you are most comfortable with. I will be using SublimeText.

Workshop course outline

  • Intro to DevOps: What is the definition of DevOps? What does DevOps mean for developers? What is all of this jargon?
  • Artifactory Module: Why do you need to manage your build artifacts? Binary repository setup in Artifactory (PyPi, Docker). JFrog CLI.
  • Pipelines Module: What is CI/CD? Pipelines integrations. Writing a "Hello world" pipeline. Deploying an application.
  • Xray Module: Why do devs need to worry about vulnerability detection and license compliance? What about security and license policies? How to scan a build. How to read the results.
  • Wrapping Up: What are the next steps?
Enterprise Solution Lead at JFrog

Batel is an Enterprise Solution Lead in the High Touch Solutions team in JFrog. This is a dedicated team that accompanies and assists Enterprise and customers through the architectural implementation of the JFrog platform. She also plays guitar and a fan of Marvel’s movies.

Register for Workshop
DevOps 101 workshop: Powered by Women in DevOps and JFrog
Cancelled
When you’re new to an industry, you encounter a lot of new concepts. This can make it really difficult to get your feet underneath you on an unfamiliar landscape, especially for junior engineers. What does DevOps really mean? What’s all this software and jargon? Is DevOps a methodology, or a toolset? Is any of this actually going to make my life easier, or is it just a bunch of industry buzzwords? We'll answer all of these questions in a hands-on workshop.
About the speaker(s)
Batel is an Enterprise Solution Lead in the High Touch Solutions team in JFrog. This is a dedicated team that accompanies and assists Enterprise and customers through the architectural implementation of the JFrog platform. She also plays guitar and a fan of Marvel’s movies.
Check out the speakers company
2:30 pm
3:30 pm
(CET)
(CEST)
Securing your web application pipeline from intruders
Milecia McGregor
Developer Advocate at Conducto
2:30 pm
3:30 pm
(CET)

Securing your web application pipeline from intruders

"During the life cycle of a project, it can be easy to build a CI/CD pipeline with just speed and resources in mind. This also makes it easy to leave the security of your pipeline as an afterthought because of how tedious it can be to build a pipeline to begin with. In this talk, we'll look into the different ways an intruder can compromise your pipeline and how you can build in security as you create and update your pipelines.

Some things we will consider include how easy it would be for an intruder to get your environment variables, how well defined your permissions are, and if there are any third party services or bugs that could be exploited. We'll look at a comparison of a few CI/CD tools and how you can handle these concerns in their respective ecosystems. By the end of this talk, you should feel comfortable doing a quick pipeline security audit and fixing some security concerns in multiple CI/CD products."

Developer Advocate at Conducto

Milecia is a senior software engineer that's worked with JavaScript, Angular, React, Node, PHP, Python, .NET, SQL, AWS, Heroku, Azure, and many other tools to build web apps. She also has a master's degree in mechanical and aerospace engineering and has published research in machine learning and robotics. She started Flipped Coding in 2017 to help people learn web development with real-world projects and she publishes articles covering all aspects of software on several publications, including freeCodeCamp. She also travels around the world speaking at tech conferences about various software engineering topics ranging from machine learning, PWAs, and managing a career in tech.

Register for Workshop
Securing your web application pipeline from intruders
Cancelled
In this talk, we'll look into the different ways an intruder can compromise your pipeline and how you can build in security as you create and update your pipelines.
About the speaker(s)
Milecia is a senior software engineer that's worked with JavaScript, Angular, React, Node, PHP, Python, .NET, SQL, AWS, Heroku, Azure, and many other tools to build web apps.
Check out the speakers company
3:30 pm
4:30 pm
(CET)
(CEST)
Shift observability left
Oriol Lluch
Cloud delivery Lead at Nexthink
3:30 pm
4:30 pm
(CET)

Shift observability left

Transitioning from delivering software to customer premises with little visibility on production systems to a proactive monitoring methodology of cloud environments provides substantial results: reduced system failures in production, issues being tackled before they can impact the customer experience, and shifting from a reactive approach to proactive observability.

Cloud delivery Lead at Nexthink

As Product Delivery Lead at Nexthink. Oriol is a driving force in helping redefine the digital employee experience with a cloud-native technology platform. Prior to his current mission he led a strategic AI innovation initiative at Cisco and held engineering roles at SpotMe and Nagra. Now a resident of Lausanne, Oriol originally hails from Catalonia and is still working on actively forgiving Neymar for his relocation to the French capital.

Register for Workshop
Shift observability left
Cancelled
Transitioning from delivering software to customer premises with little visibility on production systems to a proactive monitoring methodology of cloud environments provides substantial results: reduced system failures in production, issues being tackled before they can impact the customer experience, and shifting from a reactive approach to proactive observability.
About the speaker(s)
As Product Delivery Lead at Nexthink. Oriol is a driving force in helping redefine the digital employee experience with a cloud-native technology platform. Prior to his current mission he led a strategic AI innovation initiative at Cisco and held engineering roles at SpotMe and Nagra. Now a resident of Lausanne, Oriol originally hails from Catalonia and is still working on actively forgiving Neymar for his relocation to the French capital.
Check out the speakers company
4:45 pm
5:30 pm
(CET)
(CEST)
DevOps in the enterprise
Adrian Kosmaczewski
Developer Relations at VSHN AG
4:45 pm
5:30 pm
(CET)

DevOps in the enterprise

DevOps is not the realm of startups or Silicon Valley giants only. What are the strategies to keep in mind when introducing DevOps to a company with a vast digital portfolio? And more important: How do you stick with it and deal with different release cycles?

About the panelists

Adrian Kosmaczewski manages Developer Relations at VSHN, the DevOps company. He is a software developer since 1996, a trainer, and a published author. Adrian holds a Master in Information Technology from the University of Liverpool. When not coding or teaching, Adrian likes to spend time with his wife Claudia, his cat Max, and his Olivetti Lettera 22 typewriter.

Aubrey Stearn is a hands-on CTO; she's worked in Financial Service, Retail, Hospitality sectors. Frequently found speaking at DevSecOps events mostly in London, she keen to take the movement to the next level with continuous compliance and RegTech innovations.

Gregory Ouillon is the CTO for New Relic in EMEA. In this role, he supports customers across EMEA as they adopt modern technologies and transform digitally. Greg brings extensive experience as Engineering and Product leader, turning new technology into global services, developing high-tech innovations and scaling them up into profitable businesses. Greg worked in leadership roles at SITAONAIR, SITA, Orange Business Services and Equant, in the ICT and Aviation sectors.  He managed product P&Ls, strategy, innovation and transformation, engineering and software development, technology and product lifecycle, service creation and management.

Nočnica Fee is a hardware hacker, programmer, and writer living in Portland Oregon. She works as a developer advocate for New Relic specializing in serverless. She has 35 houseplants and loves woodworking, something she is not good at. Publications include The New Stack, Diginomica and Forbes.

Developer Relations at VSHN AG

Adrian Kosmaczewski manages Developer Relations at VSHN, the DevOps company. He is a software developer since 1996, a trainer, and a published author. Adrian holds a Master in Information Technology from the University of Liverpool. When not coding or teaching, Adrian likes to spend time with his wife Claudia, his cat Max, and his Olivetti Lettera 22 typewriter.

Register for Workshop
DevOps in the enterprise
Cancelled
DevOps is not the realm of startups or Silicon Valley giants only. What are the strategies to keep in mind when introducing DevOps to a company with a vast digital portfolio? And more important: How do you stick with it and deal with different release cycles?
About the speaker(s)
Adrian Kosmaczewski manages Developer Relations at VSHN, the DevOps company. He is a software developer since 1996, a trainer, and a published author. Adrian holds a Master in Information Technology from the University of Liverpool. When not coding or teaching, Adrian likes to spend time with his wife Claudia, his cat Max, and his Olivetti Lettera 22 typewriter.
Check out the speakers company
5:30 pm
6:30 pm
(CET)
(CEST)
Serverless can be hard to understand
Nočnica Mellifera
Senior Developer Advocate at Checkly
5:30 pm
6:30 pm
(CET)

Serverless can be hard to understand

Serverless is a powerful new offering from large cloud providers, but teams who have dived in discover real problems with team communication and collaboration when adopting serverless. I'll show you the techniques and planning you need to get your team ready to deliver serverless applications.

Senior Developer Advocate at Checkly

Nočnica is a dev advocate specializing in cloud applications, serverless, and containerization. She writes regularly for The New Stack and has been published in Information Age and Forbes. She blogs on dev.to, streams on LinkedIn and YouTube, and spends her weekends caring for her dozens of houseplants.

Register for Workshop
Serverless can be hard to understand
Cancelled
Serverless is a powerful new offering from large cloud providers, but teams who have dived in discover real problems with team communication and collaboration when adopting serverless.
About the speaker(s)
Nočnica is a dev advocate specializing in cloud applications, serverless, and containerization. She writes regularly for The New Stack and has been published in Information Age and Forbes. She blogs on dev.to, streams on LinkedIn and YouTube, and spends her weekends caring for her dozens of houseplants.
Check out the speakers company

Explore the program and speakers

The morning chapter (09:00 - 12:00 CEST) will be streamed online.
The afternoon chapter (12:00 - 20:00 CEST) will be a hybrid event full of activities: Join either online or attend the event on-site in Vienna and enjoy a get2gether before the event starts, 3 talks followed by a networking including food, drinks and a DJ - powered by Bosch Austria.

09:00 - 12:00 CEST: Morning Chapter (online only)

09:00 - 09:45
Coffee with Developers
Coffee with Developers is a talk show with fascinating personalities "behind the code". Listen to their stories and learn what they think about the future. Join a relaxed discussion with interesting insights and a lot of fun.
Sead Ahmetovic
CEO, WeAreDevelopers
Peter Kalt
General Engineering Manager
Bosch Austria
10:00 - 12:00
Workshop: On developing smartphones on wheels
Get a look behind the scenes of software engineering for modern and future vehicles in the automotive industry. Learn about the bits and pieces of modern vehicle systems and the shift from domain-specific E/E architectures to cross-domain architectures based on powerful vehicle computers.

Discover why future cars have more in common with smartphones than you might think. During this workshop we will examine some technical key questions and aspects in the biggest transformation of the autmotive industry ever seen.

Be part of this cool hands-on workshop, contribute on the impact of the mobility world and let’s work on your favorite future mobility use case. We will be using Miro, the online collaborative whiteboard platform. All registered participants will get access to the Miro board shortly before the workshop starts - simply check your inbox.

Miro Board Link for workshop participants: https://miro.com/app/board/o9J_lvWfpAI=/

Hans-Jürgen Eidler
Product Owner, SW Business Development for Vehicle Computers, Bosch Austria
Before becoming the Product Owner and Acquisition Manager for Vehicle Computers and E/E Architecture, Hans-Jürgen acted as Project Lead, SW & Function Developer (for hybrid and electrical vehicles) at Bosch Austria. He also gained experience as Development Engineer in the aviation industry, worked on HW development projects and acted as team lead.
Konstantin Selyunin
Development Engineer
Konstantin Selyunin develops embedded software for vehicle computer prototypes.

12:00 - 20:00 CEST: Afternoon Chapter (in-person and online)

12:00 - 13:00
Check-in & Welcome Drinks
13:00 - 13:15
Opening Remarks
Sead Ahmetovic
Moderator, WeAreDevelopers
Peter Kalt
General Engineering Manager
Bosch Austria
Josipa Basta
Moderator, Bosch Austria
13:15 - 14:00
Cyber Security: Small, and Large!
Security is a hot topic right now, with ransomware and nation-state hacking in the newspapers on AT LEAST a weekly base. This can include millions of damages for exceptional cases, and hot-patching systems at an absurdly fast pace. In this session, we will talk about some of the current challenges for development projects and developers in general, and how to keep an overview on what is going on security-wise.
Martin Schmiedecker
Security Engineer, Bosch Austria
Martin did his PhD at TU Vienna on digital forensics back in the days and is now assessing security risks for development projects at Bosch. He is interested in everything related to digital security and online privacy and is a proven expert in automotive security.
14:00 - 15:00
Getting Started with Machine Learning

Alexandra Waldherr
ML & Quantum Computing Enthusiast
What to say about this exceptional young person? She is a true Wunderkind! Alex developed an interest for science, programming, physics and chemistry since the early age of 12. Today, at the age of only 19, she already holds a Bachelor degree with distinction from the Technological University Dublin and is widely considered as one of the great generational talents. She was part of various programs at the MIT, CERN and IBM. She  has received various honors and accolades and besides studying Molecular Medicine she also speaks regularly about Quantum Computing and Machine Learning at international conferences.
15:00 - 15:15
Coffee break
If you are one of the luckies on-site, enjoy delicious coffee and snacks.
15:15 - 16:15
Why you shouldn’t build a microservice architecture
Learn about modern software architectures and get practical advice on reasoning about architectural decisions, using the example of microservice architectures.
Michael Eisenbart
Head of Business Digital Organization
Software Development & Data Platforms, Bosch
Michael is looking back to a long career in the tech world. He is the Head of BDO-DX at Bosch Austria and worked as the owner of various stunning projects in the world of Industry 4.0, big data platforms and logistics software products.
16:15 - 20:00
Final remarks, music, drinks, snacks and networking!
The perfect time for networking and connecting with new like-minded people in-person.

Explore the program and speakers

The morning chapter (09:00 - 12:00 CEST) will be streamed online.
The afternoon chapter (14:30 - 20:00 CEST) will be a hybrid event full of activities:
Join either online or attend the event on-site in Vienna and enjoy a get-together before the event starts, 3 talks followed by a networking including free food, drinks and a DJ - powered by Bosch Austria.

09:00 - 12:00 CEST: Morning Chapter (online only)

09:00 - 09:45
Morning Coffee with Developers
Coffee with Developers is a session with fascinating personalities "behind the code".
Listen to their stories and learn what they think about the future. Join a relaxed discussion with interesting insights and a lot of fun.
Sead Ahmetovic
CEO, WeAreDevelopers
Christine Thelesklaf
Director of Engineering, Bosch India
10:00 - 12:00
Workshop: The future of automotive mobility - Upcoming E/E architectures, V2X and its challenges
Bosch is observing huge upcoming mega trends in our today's world. These mega trends involve everything around us, including people, society, and environment. In this session we will present these mega trends and how they affect our lives and more specifically, the design of the E/E (Electric and Electronic) architectures in our cars. Furthermore, we will give insights about some real-world use cases developed by Bosch which drive this change, for instance Driverless Parking and Road Signature Service. A brief outlook about V2X (Vehicle to Everything) communication will be provided together with its possible impact on future E/E architectures. The second part of this session invites for an open discussion regarding these topics. The workshop closes, providing further insights on how Bosch is addressing these challenges and giving an overview of the Mobility Solutions developed in Bosch Vienna.
Georg Kühberger
Senior Software Expert, Bosch Austria
Lorem Ipsum
Manuel Pascual Garcia-Tubio
Scrum Master, Bosch Austria
Lorem Ipsum

14:30 - 20:00 CEST: Afternoon Chapter (in-person and online)

14:30 - 15:00
Check-in & Welcome Drinks
15:00 - 15:15
Opening Remarks
Sead Ahmetovic
Moderator, WeAreDevelopers
Josipa Basta
Moderator, Bosch Austria
Helmut Weinwurm
President, Bosch Austria
15:15 - 16:00
Talk: Architects - Key players for future products
The automotive industry is currently in a transformation driven by electrification, connected/autonomous driving and software defined vehicles. These market transformations require new products like vehicle computer, zone controller or integration platforms as well as changing business and cooperation models. High individualization, multi-party cooperation and a strong trend towards continuous development require a reliable and strong architecture for efficient development. In addition Bosch strives as market leader as TIER1 supplier to shape and maintain an evolvable and beneficial product line architecture allowing flexible, extendable and exchangeable software functionalities across these safety and real-time critical products. The key player in this future engineering setup are the architects which orchestrate the different businesses and technical targets via architecture driven development and management of technical debt.
Jochen Härdtlein
Chief Software Engineer, Bosch Germany
Sebastian Rausch
Lead System Engineer, Bosch Austria
5 years’ experience within research project with system test generation and technical system architecture focus, 4 years of architectural experience @ PS-EC/ECB; now team leader/lead system engineer of BMW and VW projects within PS-EC

Education – Master degree in Embedded Systems
16:00 - 16:45
Talk: Brave new world of Artificial Intelligence
Today's world of technology is full of buzzwords. No matter what role you play, from engineering to sales, your day-to-day discussions are filled with the cloud, IoT, microservices, and other abbreviated and non-abbreviated terms. The automotive industry is no exception. AI is probably very high on your list too. Various connected car scenarios revolve around getting the sensor data to one place, analyzing it, and learning from it so we can automate some part of the process (e.g., the car sees a stop sign on the road – what should it do?). The existence of AI is why we can build a smart car today. So, let's demystify it and answer the questions like what artificial intelligence is, explain the dominant approaches, where we are today and what's coming in the next 2-3 years, and the business implications. This session aims to clear the fog in front of technology that promises to change the world that we know today, once and for all. Welcome to the brave new world of AI-powered mobility!
Tomislav Tipurić
CTO and Partner, Nephos
Tomislav is CTO and partner in Nephos, a technology enthusiast with a focus on cloud computing, artificial intelligence, IoT and modern business models enabled through advanced application of technology.
TBD
TBD
TBD
16:45 - 17:00
Coffee break
If you are on-site, enjoy delicious coffee and snacks.
TBD
TBD
TBD
17:00 - 17:45
Talk: Building Connected Vehicles
In this talk, I will present several topics regarding vehicle connectivity. We will go through the basics of building up the connectivity architecture between vehicles and the cloud. Several cloud architectures and design patterns will be discussed. Finally, we will talk about some challenges in getting the data from a vehicle to the cloud, and how to apply AI model in a connected vehicle environment.
Kher Sham Lim
Cloud Solution Architect and Software Engineer, Bosch Germany
Kher Sham is software engineer and cloud solution architect for connected vehicle focusing on Microsoft Azure platform for whole Powertrain Solution business unit. Previously he worked as Data Scientist and Data Engineer in manufacturing use cases.He was a theoretical physicist in Particle Physics and Cosmology before joining Bosch.
17:45 - 18:00
Closing & Winner announcement
18:00 - 20:00
Get-Together & Networking
Network with music and drinks. The perfect time to connect with new like-minded people in-person.

The final program with all sessions and speakers will be published soon.

Save your spot - it's free

The event is public and free. Register your WeAreDevelopers account to get full access to all benefits of our community.
Instant on-demand access to all video sessions from our events
Career opportunities that fit your needs
Regular updates on trending topics from the developer world
Be the first to know about upcoming events and exclusive discounts
100% free for developers

Location: 

Geiereckstraße 6, 1110 Vienna
(Entrance via Gänsbachergasse)

Take charge of your dev career!

Great careers don’t happen by accident. Plan your personal career by taking the next step in the real life.
Pick the job that makes you happy.
Google Cloud System Integration Test Engineer (f/m/d)
E.ON Digital Technology GmbH
Munich
SW-Entwickler Echtzeitsysteme (m/w/x)
ZEISS Group
Oberkochen
Projektleiter-Bereiche Software&Automatisierung (m/w/x)
ZEISS Group
Oberkochen
QA Engineer (Quality Assistance) - Elvenar
InnoGames GmbH
Hamburg
Function Developer E-mobility (Vehicle Control)
Bosch-Gruppe Österreich
Vienna
Java Entwickler – Webanwendung / JEE (m/w/d)
L-Bank, Staatsbank für Baden-Württemberg
Karlsruhe
Java Software Engineer
InnoGames GmbH
Hamburg
PHP Developer (m/f/d)
METRO Markets GmbH
Düsseldorf, Palma
Java Engineer
CELUM
Linz, Vienna
Full Stack Developer (f/m/d)
Storyclash
Linz
Frontend Vue.js Developer (f/m/d)
compleet GmbH
Cologne, Fulda, Munich, Nuremberg, Stuttgart
C++ Developer
Think-cell
Berlin
Full Stack Developer (m/w/d)
Technoly GmbH
Berlin
Site Reliability Engineer (SRE) (m/w/x)
REWE Group Österreich
Vienna
Fullstack Entwickler (m/w/d)
NorCom
Munich, Nuremberg
Softwarearchitekt Tactical Data Management System(m/w/d)
HENSOLDT
Immenstaad
OpenStack/YAOOK Developer (m/f/x)
STACKIT
Berlin, Neckarsulm, Sofia
Kubernetes Platform Developer (m/f/d)
anynines
Remote, Berlin, Saarbrücken
Embedded Software Developer (m/f/div.)
Bosch-Gruppe Österreich
Vienna
Java Softwareentwickler (m/w/d)
Eucon GmbH
Remote, Münster
Java Developer
CGM Clinical Österreich GmbH
Linz, Steyr
DevOps Engineer (m/w/d)
Bundesdruckerei-Gruppe
Hamburg
Full Stack Developer / Project Management
coorum informationstechnologie gmbh
Vienna
PHP Backend Developer (m/f/x)
Plesk
Berlin, Cologne, Hamburg, Karlsruhe
Senior Software Engineer - Qt/QML (m/w/d)
Paessler AG
Nuremberg
iOS Developer (f/m/x)
diconium
Remote, Berlin
Softwareentwickler*in (Schwerpunkt Data Warehouse)
Wirtschaftsuniversität Wien (WU)
Remote, Vienna
Java Software Developer (m/w/d)
Objektkultur Software GmbH
Remote, Karlsruhe
DevOps Engineer (m/w/d)
Schoenberger Germany Enterprises GmbH & Co. KG
Remote, Munich
Java Entwickler (w/m/d) - Adobe Experience Manager (AEM)
E.ON Digital Technology GmbH
Essen, Munich
Software Test Engineer (m/w/d)
Bundesdruckerei-Gruppe
Hamburg
Atlassian Consultant - Fokus Development (m/w/d)
ByteSource Technology Consulting GmbH
Vienna, Wels
Senior AWS System Engineer (m/w/d)
Neofonie GmbH
Remote, Berlin
STACKIT Cloud Developer Go (m/f/x)
STACKIT
Remote, Berlin, Neckarsulm
Site Reliability Engineer
Intuition Machines
DevOps Engineer (m/w/d)
BusyLamp
Frankfurt
Softwareentwickler Input-Management-System (m/w/d)
SBK Siemens-Betriebskrankenkasse
Leipzig, Munich, Schwäbisch Gmünd
Frontend Architect
CELUM
Linz, Vienna
Scala Developer (d/f/m)
RISK IDENT
Remote, Hamburg
Google Cloud Data Engineer (f/m/d)
E.ON Digital Technology GmbH
Munich
Sr. iOS-Entwickler (m/w/d)
appDev
Frankfurt
PHP-Entwickler (m/w/d)
IBM Client Innovation Center Germany
Cologne, Frankfurt, Magdeburg, Munich
JavaScript-Developer (m/f/d)
METRO Markets GmbH
Düsseldorf
Angular Developer
Atos
Vienna
Java Full Stack Engineer
CELUM
Linz, Vienna
Ruby on Rails Developer (f/m/d)
PAIR Finance GmbH
Berlin
Lead Development - Unternehmensserviceportal (w/m/d)
The Austrian Federal Computing Center
Vienna
Java Backend Developer (m/w/d)
Bolinda Labs GmbH
Darmstadt
Go (Golang) Software Developer (m|f|d|*)
Geek Space 9 GmbH
Remote, Munich
DevOps Engineer / Cloud Engineer (w/m/d)
Wawibox
Heidelberg
Data Architect
Intuition Machines
Software QA Coordinator
Bitifeye
Böblingen
Scala Developer
Journi
Vienna
Funktionsentwickler E-Mobilität (Vehicle Control)
Bosch-Gruppe Österreich
Vienna
Cloud Engineer (m/w/x)
sevDesk GmbH
Offenburg
Fullstack Developer (all levels & all genders)
allUpp GmbH
Remote, Graz, Vienna
Software Developer (m/f/div.)
Bosch-Gruppe Österreich
Vienna
FRONTEND-ENTWICKLER*IN (m/w/d)
coding.powerful.systems. CPS GmbH
Berlin
Backend Entwickler (m/w/d)
PAQATO GmbH
Remote, Münster
DevOps Engineer (m/f/d)
Scoop & Spoon
Graz, Vienna
Mitarbeiter (m/w/d) IT-Testmanagement
PORR AG
Vienna
Frontend Developer (m/f/d)
Webgears Group
Berlin, Götzis, Vienna
JavaScript Software Engineer (m/f/d)
ottonova
Remote, Munich
Software Developer (m/f/div.)
Bosch-Gruppe Österreich
Vienna
IT Architect Innovation (all genders)
Accenture Deutschland
Berlin, Dresden, Düsseldorf, Frankfurt, Hamburg, Heidelberg, Hof, Jena, Munich, Stuttgart
Frontend Developer - Angular (all genders)
LucaNet AG
Remote, Berlin
Fullstack Developer (m/f/x)
metamagix Software & Consulting GesmbH
Vienna
DevOps / Cloud Platform Engineer (m/f/d)
anynines
Remote, Berlin, Saarbrücken
C#/.NET Softwareentwickler (m/w/d)
Quanos Solutions GmbH
Remote, Amberg, Fürth, Inning am Ammersee
Backend Developer (f/m/d)
Storyclash
Linz
C++ & C# Software Entwickler:in (m/w/d)
Haufe Group
Freiburg im Breisgau
Data Analyst (w/m/d)
coeo
Vienna
PHP Developer
CONDA
Remote, Vienna
Digital Designer focus on UX (f/m/d)
Storyclash
Linz
Oracle Developer (m/w/x) (TZ, VZ, standortunabhängig)
REWE Group Österreich
Remote, Vienna
JAVA BACKEND ENTWICKLER * - REMOTE MÖGLICH
procilon Group
Remote, Berlin
Spieleentwickler / UX- und Game-Designer (m/w/d)
SET COMMUNICATIONS GmbH & Co. KG
Bad Homburg
SAP PI / PO Entwickler / Consultant (m/w/d)
PORR AG
Vienna
Web Developer | Marketing (f/m/d)
Speech Processing Solutions
Vienna
Mobile Application Developer (m/w/x)
BOOM SOFTWARE AG
Graz, Leibnitz
Full Stack Java Developer (m/w/d) Cloud Native
Bundesdruckerei-Gruppe
Hamburg
Full Stack Software Developer (all genders)
Accenture Deutschland
Kaiserslautern
BACKEND SOFTWARE DEVELOPER*IN (m/w/d)
Pocket House GmbH
Vienna
Full-Stack Developer (m/f/d)
shopware AG
Remote, Schöppingen
Software Architect in the field of E-mobility
Bosch-Gruppe Österreich
Vienna
Java Software Engineer (m/w/d)
BettercallPaul
Remote, Berlin
PHP Software Engineer (DevOps)
myTV AG
Zürich
Frontend-/Webentwickler:in (w/d/m)
Haufe Group
Remote, Freiburg im Breisgau
Java Entwickler (m/w/d) Microservices
ING Deutschland
Frankfurt
Mobile Developer iOS (m/f/d)
Bike Citizens Mobile Solutions GmbH
Remote, Graz
DevOps Engineer (f/m/d)
Mimi Hearing Technologies GmbH
Berlin
Programmierer/ Anwendungsentwickler (m/w/d)
Freeworker GmbH
Gilching, Munich
Backend Developer IoT web application
Kinexon
Munich
Java Developer
CGM Clinical Österreich GmbH
Linz, Steyr
Scala Software Engineer (f/m/d)
E.ON Digital Technology GmbH
Essen
Function Developer E-mobility (Vehicle Control)
Bosch-Gruppe Österreich
Vienna
DevOps Engineer (m/f/d)
ottonova
Remote, Munich
C# Developer Backend (w/m/d)
Endress+Hauser GmbH & Co KG
Gerlingen
Java Developer (DEEP TECH Senior)
Automated Software Testing GmbH
Remote, Linz, Vienna
Software Developer for Customer Projects (f/m/d)
CELUM
Linz

Save your spot - it's free

Date: April 26th, 2022
The morning chapter (09:00 - 12:00) will be streamed online.
The afternoon chapter (14:30 - 20:00) will be a hybrid event full of activities: Join either online or attend the event on-site in Vienna.

Join IN-PERSON

Register now to join in-person! Limited number of seats!
Join the morning chapter (9:00 - 12:00) online and the afternoon chapter (14:30 - 20:00) in-person.

Benefits to join ONSITE - LIMITED SEATS!
  • Learn from top speakers & level up your skills
  • Meet & greet our speakers face to face 👀 in a relaxed atmosphere
  • Connect with other great minds 🤝
  • Cool location at the Bosch Fahrzeughalle
  • Event bag with awesome goodies 🛍
  • FREE food & drinks
  • Try your luck on the Bosch wheel of fortune and win some additional goodies
  • Win Tickets to the WeAreDevelopers World Congress Berlin
Location: Robert Bosch AG, Geiereckstraße 6, 1110 Vienna (Entrance via Gänsbachergasse)
Check-in for the afternoon chapter starts at 14:30.

Join ONLINE

Join both the morning chapter (9:00 - 12:00) and the afternoon chapter (15:00 - 20:00) online from anywhere around the globe.

Benefits to join ONLINE
  • Learn from top speakers & level up your skills
  • Manage your event experience with the official Event App
  • Connect virtually with other great minds 🤝
Covid-19 information
Attendees do not have to provide proof of G for event attendance. The FFP2 mask requirement in closed rooms is no longer applicable, but wearing masks is still recommended.

bonus content

Call for Speakers

You have the talk. We have the audience! We are always looking for curious minds sharing their knowledge with the developer community. Apply as a speaker and become part of our awesome dev community.
Green Event
We aim at organising the event according to the Austrian Ecolabel for Green Events. This means that in the course of our event planning we pay special attention to:

an environmentally compatible travel, CO2 reduction, regional & seasonal catering, environmentally friendly procurement and waste management and social aspects. 

With these efforts, we not only generate added value for our guests at the event, but also for future generations to implement sustainable changes in our fast-paced world.

Support us in this effort and help us work towards a more sustainable future!

Do you have any questions about the Austrian Eco-label or Green Events?

Feel free to contact our Green Events Officer Nina Witti at witti@putzstingl.at! She will be happy to answer your questions before, during and after the event!
Directions
Please think about our environment and travel climate friendly!
Our event times have been chosen so that your travel by public transport is possible without any problems or longer waiting intervals! The tram line 6, station Geiereckstraße, is about 120 meters away from our premises. Bus 69A stops about 240 meters from the premises at the Geiereckstraße station. The S-Bahn 7 stops at the Geiselbergstraße station about 600 meters from the site. You can also find all information about the timetables at https://www.wienerlinien.at/web/wl-en/timetables.

If you can't do without your car, consider carpooling!
This not only saves emissions, but also provides you with conversation partners, so that no boredom arises during the drive! Please note, however, that there are no parking spaces available on the premises and that the 11th district is a short-term parking zone! 

You like it sporty? Then come to us by bike!
On the premises are about 30 bike racks available for you!

Accessibility
If you need a barrier-free parking space, please let us know in advance! We will then organize parking for you in the immediate vicinity of the event hall. You can find more information about accessibility in our Access Statement. If you have any questions, please contact Nina Witti at witti@putzstingl.at or +43 699 1234 24 34.
Access Statement & Accessibility
In order to make your journey to and stay at our event as pleasant as possible, you will find here all important information about the accessibility of our event on April 26, 2022. Should you require any further information, please do not hesitate to contact Ms. Nina Witti at witti@putzstingl.at or +43 699 1234 24 34.

Public transport
Tram line 6, Geiereckstraße station, is located about 120 meters from the site. In addition, bus 69A, Geiereckstraße station, stops about 240 meters from the site. The S-Bahn 7 stops at Geiselbergstraße station, about 600 meters from the site.

Parking facilities
If you need handicapped parking, please let us know at +43 699 1234 24 34 and we will be happy to organize parking directly on our premises. Our premises are accessible at ground level and are asphalted throughout.

Entrance area & event hall
Entrance to our event hall is through a 3.9 x 4.9 meters (width x height) roll-up door, which will be open throughout the event. There is ample moving space both before and after the entrance gate, as well as in our event space. There are no level jumps. Sufficient turning circles of at least 150 cm in diameter are given throughout the event area. We are happy to provide our own wheelchair spaces as well as height-adjustable tables. Our buffet area is designed so that all food and drinks are accessible at a height of 85 and 110 cm. All dishes offered are labeled in sufficient size and any allergens are also listed. 
Barrier-free WC
A barrier-free WC is available near the event hall. The WC has a door that is at least 80 cm wide and opens outward, smoothly. The room size is 150 x 197 cm and offers 84 cm of space to the right of the WC bowl. The WC bowl is located at a height between 46 and 48 cm. In addition, there are stable grab handles on both sides and an emergency call device connected to the security service at the reception (available 24 hours). Both the handles and controls are designed with high contrast. The sink is accessible from underneath and is equipped with a single-handle mixer. Soap dispenser and towels are within reach at a maximum height of 110 cm.

Staff
Our staff is familiar in dealing with people with disabilities, as we ourselves employ people with disabilities.  

Print material
When designing our printed materials, we emphasize legible, sufficiently large type. In addition, we use matte paper to make it easier to read.

Join our upcoming online events

Code of Conduct
WeAreDevelopers welcomes everyone and is dedicated to defending anybody from harassment, regardless of gender, gender identity, and expression, sexual orientation, disability, physical appearance, body size, race, age or religion.
Read more
Diversity & Inclusion
At WeAreDevelopers events we empower underrepresented groups by giving them the stage to share their knowledge and experiences. It is crucial for our international events to bring together the perspectives of people with different backgrounds.
Read more