talks & speakers

online
 | 
 - 

15 years in the life of elephpant

The last ones who told me I could learn from a plush toy were my daughters. Of course, I acknowledged. Yet, it dawned on me: after ten years of life, the PHP plush has achieved so much! It went to the White House and Antarctica; it spawned forty thousand offspring and a jet-set generation of collectors; it built bridges within and outside the community. The PHP elephpant is the living symbol of the PHP community, straight from the genius of Vincent Pontier. It is a whole character, running across the world and changing colors all the time. Everybody need elephpant love ! Nowadays, it is alive and kicking. It still reviews my code, casting an odd look to me, once in while. No one can have enough elePHPant.

Damien Seguy

CTO @ exakat

Damien Seguyis CTO at Exakat Ltd., a company specializing in PHP code quality solutions for the industry. He leads the development of the exakat static auditing, that review code for migration, security and clear code. Over the last 15 years Damien has contributed to the PHP, as documentation author, elephpant raisers, User group animator on several continents. He also enjoys gremlin, 狮子头 and camembert.

 - 

What's new in PHP 8.1

During this presentation, we are going to look at the new features that are going to be introduced in PHP 8.1. Join me to have a look at how the type system is strengthened with Enumerations and 'never', Fibers, a new closure syntax, and other new smaller features. At the end you will have a good understand about all the new and exciting features that are likely going to be part of the PHP 8.1 release.

Derick Rethans

Xdebug Author

Derick Rethansis a PHP internals expert, author of Xdebug and an OpenStreetMap and mapping enthusiast. He has contributed in a number of ways to the PHP project, including the Xdebug debugging tool, and various extensions and additions. He's a frequent lecturer at conferences, the author of php|architect's Guide to Date and Time Programming, and the co-author of PHP 5 Power Programming. He works as an independent contractor and consultant on PHP extensions and related projects, including Xdebug.

 - 

Sustainable open source contributions in your business

A lot of companies think contributing to open source is hard, but is it? In this talk you will hear about how Ingewikkeld, a small Dutch development and consultancy company, has built a sustainable model for both making a profit and also doing solid contributions to open source projects.

Stefan Koopmanschap

Co-owner @ Ingewikkeld

Stefan KoopmanschapBetween having a family life, doing a weekly radio show and attending conferences and user group meetings, Stefan tries running a company called Ingewikkeld and organizing WeCamp. Having worked with PHP and several of its open source products since the late 90s, he still likes it for getting the job done.

 - 

PHP ❤️ types

PHP is widely known for its dynamic typing features. Still in its latest releases it introduced many features for improving the typing of our applications and many are already planned for future versions. Yet, comparing for example with what Typescript provides for the Javascript ecosystem, many relevant features are still missing from the language. Luckily, in PHP we can emulate features like union types and generics using libraries like Psalm or PHPStan. In this talk we will see how we can use the type system provided by such tools not only to prevent bugs, but also to help us modelling our domain making its invariants explicit in the type system itself. If you are interested in creating safe and reliable software, let's see together how types can help you!

Marco Perone

Software Developer @ Soisy

Marco PeroneI am a software developer, grew up as a mathematician. I love to bring in my code the same formalism and precision you can find in math. I am particularly interested in functional programming and how to introduce and apply its ideas in non-functional languages and its links with domain modelling.

 - 

PHPUnit 10: The new Event Subsystem

First, there was the TestListener interface for extending PHPUnit. But it was abused, because it allowed more than just listening. Then came the TestHook interfaces, but they were inconvenient to use. Now PHPUnit 10 introduces a new event system for developing extensions and for in-depth analysis of your testsuite, hoping to overcome the shortcomings of its predecessors. Join Arne Blankerts, one of the two developers behind PHPUnit's new event system, and learn how easy it can be to extend PHP's popular test runner as well as getting new detailed insights to the test execution.

Arne Blankerts

Co-Founder The PHP Consulting Company

Arne Blankertshas already dealt with computers when networking was still an adventure. As long-standing head of development of an internet agency, he has created solutions far ahead of the times already years ago. As Co-Founder and Principal Consultant of The PHP Consulting Company (thePHP.cc), Arne helps his clients to develop software successfully. He is author and maintainer of various Open Source development tools, and is a regular presenter at conferences. In his free time he reads fantasy novels and likes to cook.

 - 

Never* use arrays

PHP loves its arrays. Arrays are the uber-data structure. They're a list, a map, a stack, a queue, everything in one! Which is the problem. Modern PHP grossly over-uses arrays. In most cases there are better options today, and when you find yourself reaching for 'oh I'll just make this an associative array', stop. An extra 60 seconds of thought and code will often give you a more readable, faster, more memory-efficient, more flexible alternative. Classes, iterables, and collections can and should replace arrays in most of your day to day coding. This talk will go through what PHP arrays actually are (hint: they are not, in fact, arrays at all), why they're so problematic, and what to do instead. By the end, you should find yourself (almost) never reaching for arrays to solve a problem.

Larry Garfield

Staff Engineer

Larry Garfieldis an aspiring blacksmith who moonlights as a long-time PHP developer. When not trying to hand-forge his own medieval armory from scratch he tries to teach developers and development managers the skills of yesteryear that the industry has forgotten. He is the author of several books on PHP, including 'Thinking Functionally in PHP' and 'Exploring PHP 8.0.'

online
 | 
 - 

Security: From basic principles to PHP specifics

During numerous code reviews I've found that many projects sharing alike security flaws despite being developed by experienced teams. In the talk I'd cover both security basics, PHP specifics and some extras such as common errors in server configs.

Alexander Makarov

Project lead, Yii framework

Alexander MakarovYii framework lead and co-author of Yii 2. Yii representative in PHP-FIG. Additionally to developing Yii framework worked in companies such as Skyeng, Wrike and Stay.com and battle-tested whole generations of various technologies.

 - 

Introduction to Timeseries Databases

As our applications gather more and more data, ever more quickly, both developer and application can become overwhelmed in no time. Recognising when data would be best handled as time series data (spoiler: events, logs and metrics all work pretty well), and knowing how to adapt your application to work this way can really help. This session introduces time series data concepts, and discusses the situations where the aptly named databases are a useful tool - as well as when they are not! You will learn about handling large data volumes and some of the open source tools available, such as InfluxDB and M3DB. We'll look at examples of implementing time series databases in real world applications, and give resources that you can try out yourself.

Lorna Mitchell

Developer Advocate @ Aiven

Lorna Mitchellis based in Yorkshire, UK; she is a Developer Advocate at Aiven as well as a published author and experienced conference speaker. She brings her technical expertise on a range of topics to audiences all over the world with her writing and speaking engagements. Lorna has a strong background in open source, and a passion is for better Developer Experiences for developers everywhere. You can find out more about Lorna on her website https://lornajane.net.

 - 

Debugging With PhpStorm And Xdebug

Debugging with Xdebug is not everyone's favorite topic. It takes some time to get it all set up, and then you also need to get familiar with the given features and make it work with PhpStorm. Still, Xdebug provides a lot for debugging your applications, and you shouldn't miss out on that. Let me demo you the excellent combination of Xdebug and PhpStorm and show you how it will boost your debugging skills.

Christoph Rumpel

One-Man-Show @ Christoph Rumpel

Christoph Rumpelis a web developer from Vienna. For the last eight years, he has been working as a backend developer using PHP and Laravel daily. Since 2018 Christoph is operating on his own as a freelancer, consultant, and teacher. Next, to his first ebook about building chatbots in PHP, he is also the author of Laravel Core Adventures and the Mastering PhpStorm video course. Christoph loves coding, teaching, surfing, bouldering, and his Nintendo Switch.

 - 

Programming Elasticsearch with PHP

In this presentation, we will show how to use Elasticsearch with PHP. We will give a short introduction to Elasticsearch showing how PHP developers can benefit from its usage. We will present how to connect to Elasticsearch, how to index data, how to search and aggregate information. We will also present some advanced features, such as fuzzy search, highlighting and the recent schema on read available from Elasticsearch 7.12.

Enrico Zimuel

Principal Software Engineer @ Elastic

Enrico Zimuelhas been a programmer since 1996. Principal Software Engineer at Elastic is the maintainer of PHP and Perl libraries. Open source contributor and co-author of many PHP projects: Apigility, Expressive, Zend Framework, etc. TEDx and international speaker in 100+ conferences. Author of programming books, such as 'Sviluppare in PHP 7' by Tecniche nuove. Professor at ITS ICT Piemonte of Torino (Italy). For more information zimuel.it.

 - 

Rewriting Legacy Code

Did you ever have to maintain a 15-year-old application? Dead code everywhere, hard dependencies, null pointer exceptions, database queries mixed with HTML, no tests and most libraries have been discontinued. This presentation will show you how to modernize your application using a variety of strategies. You will learn how to avoid common pitfalls, automate legacy testing, manage your development environment and overcome various challenges that arise from dealing with legacy.

Anna Filina

Problem Solver

Anna Filinahas been a developer since 1997. She likes robust architectures, automated testing, eliminating process waste and celebrating the success of others. She has a knack for breathing new life into legacy code and teaching developers of all levels.

 - 

Communication - the Crucial Key to Success in Uncertainty

Today we all live, work and strive for success - in a world full of uncertainty, the VUCA world. As things around us are changing ever faster, we do not have time to waste with lots of misunderstandings caused by poor or insufficient communication and lack information flow. This applies to managers and leaders as well as employees, to developers as well as operations or support. Communication comes into play long before a project even starts and is the crucial key to success along the whole value stream - within the teams, the companies and also with externals. All agile methods, frameworks and methodologies will only work well with the right communication. This talk will not only show which impact poor communication has on motivation, on solutions and on success; it will also show the importance of good communication for business agility. Furthermore you will learn about helpful techniques for better communication and more shared understanding. Even if you need more communication in some companies, it is better to pay attention to more quality in it. Believe it or not, this will save time in the end! So if you want to be successful in the uncertainty of a fast changing world, take a closer look on your communication habits and start to improve for being better!

Sabine Wojcieszak

Enthusiastic Agile & DevOps Enabler @ getNext IT

Sabine Wojcieszakis passionate about human interaction, team culture, leadership and communication. For her it is somehow natural to work and think in an agile and cross-disciplinary way. That's why she is assertor of the DevOps methodology. As the Enthusiastic Agile & DevOps Enabler at getNext IT she is an expert in supporting companies and teams - especially in tech industry - to evolve their soft and social skills in order to foster collaboration for more quality and success. For her motivated people are a necessity for companies to stay competitive! Communication is crucial for success - individual as well as organizational. You will find a lot of her work as an author all over the web and in printings. She has spoken at a lot of international tech conference about those 'soft' topics. Sabine is also one of the organisers of the DevOpsDays Kiel 2016 and 2018 and the co-organiser of the meetups Lean/Agile and Software Craftsmanship in Kiel. As community manager she helps the open source research project 'titan - the Industrial DevOps Platform for agile process integration and automation' to grow. Sabine is lecturer at a University in the fields of DevOps, Working in Open Source and Agile Project Management. Her 'eat your own dogfood' approach is seen as innovativ by others.