The large PHP community in South Florida has organized its seventh annual PHP developer conference in Miami, and you're invited! We will host some of the best speakers, latest technology, and up to date news in the industry. And did we mention it is in Miami, in February? #warm #sunny

Thursday 7th February 2019

09:00 Practical Object-Oriented Design Principles
Workshop by Brandon Savage in Grand Ballroom (3 hour)

Figuring out the best way to apply object-oriented design principles to your code is a challenge for even the most experienced developers. In this tutorial we’ll dive deeply into exactly how to apply object-oriented design principles to the software we’re writing, including an in-depth analysis of the SOLID patterns and practices.

7
PHP Code review
Workshop by Damien Seguy in Key Biscayne 1 (3 hour)

To improve your code base, you run an audit. Now, with so many diagnostics, the situation appears to be overwhelming. If you have a mere million lines of code, it may display thousands of errors, in various orders. And with that, the market leaves no time to reduce technical debt before the next feature: we’ll do it when pressure gets lighter, right? WRONG! Code quality starts with a daily review. Learn how to navigate in the results of code audits that actually find more issues than you want. During this workshop, we’ll check PHP classic traps, architecture errors, security vulnerabilities and logical bugs. We’ll see how to detect those bugs, how they happen, and how to prepare a fix (or not). By the end, you’ll be able to set up your own coding reference, the one that reflect your style of coding in your projects.

3
The MySQL Document Store
Workshop by Dave Stokes in Key Biscayne 2 (3 hour)

The MySQL Document Store is a JSON based NoSQL database does not require the use of Structured Query Language (SQL) to interact with the database. No more embedding ugly strings of SQL in your beautiful PHP code. The new API calls (via the MySQL X Devapi PECL extension) follow modern programming design for all the CRUD functions of the document store. Each document has a payload of 1GB (compared to MongoDB's 16mb) and runs on proven, reliable MySQL technology. And if you have older relational data, the MySQL Document Store lets you access them plus the new document store data at the same time. This is a hands on workshop (please load MySQL 8 on your laptop!) for those wishing to switch over to the MySQL Document Store with plenty of programming examples.

13:00
11
Start testing your PHP code
Workshop by Jason McCreary in Grand Ballroom (3 hour)

In this workshop we’ll cover different ways to test your PHP code. Our focus will be the tools and writing tests - we won’t get caught up in all the testing dogma. Instead, we’ll create a foundation in tools like PHPUnit, Mockery, and Codeception so you can make the decisions about what testing tools and strategies work best for you and your code. So if you’re looking to start testing your PHP code, or learn other PHP testing tools, this workshop is for you.

Pentesting for Developers
Workshop by Chris Cornutt in Key Biscayne 1 (3 hour)

While secure development practices are an important part of keeping your application and its data protected, you also have to prove your defenses are working. Developers are used to things like unit testing and even functional testing but some feel out of their depth when it comes to security testing. Effective security testing, or pentesting, is easier than you might think. We’ll start by introducing some of the techniques and tools you can use to test your own applications and finish with a contest to see how much you’ve learned.

3
REST API Workshop
Workshop by Mike Stowe in Key Biscayne 2 (3 hour)

Create beautiful RESTful APIs designed to meet your customers needs while also being agile enough to meet the demands of ever changing platforms and businesses. Along with learning about the different types of API formats, you’ll learn how to take a user first approach, take advantage of modern design techniques, and leave with a strong understanding of API design and development – including HATEOAS/ hypermedia usage.

Friday 8th February 2019

09:00 Confessions Of a Not-So-Accidental Leader
Keynote by Chris Hartjes in Grand Ballroom (1 hour)

During a lunch break at a job in 2003 a co-worker looked me straight in the eye and told me "I think you should take a leadership course because I see something in you. Stop laughing! I'm serious!" I told that person they had the wrong impression of me. But ultimately they were right. 16 years later I can look back at a successful series of events and organizations (both inside and outside of programming) that I have been a part of. In this talk am I going to share my journey from frustrated developer to confident organizer, navigating my way through and around obstacles to help create the groups I wanted to be part of doing the things I wanted to do.

10:15 The Ten Commandments of Object-Oriented Code
Talk by Brandon Savage in Grand Ballroom (1 hour)

Writing object-oriented code can be a challenge. Which rules do you follow, and when? Come learn about ten rules that will make your object-oriented code better, more beautiful, and easier to maintain in this talk.

The Sodium crypto library of PHP 7.2
Talk by Enrico Zimuel in Key Biscayne 1 (1 hour)

Have you ever wondered about any of the following security concerns? - How to store user passwords - How to encrypt/decrypt sensitive information - How to authenticate users The Sodium crypto library, offered as a core extension of PHP since 7.2, is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing, and more, solving each of the above problems. We will demonstrate each during this session, as well as present advanced features such as authenticated encryption, anonymous public-key encryption, and elliptic curve cryptography.

Performance optimisation: how do I go about it?
Talk by Kat Zien in Key Biscayne 2 (1 hour)

How do I know if my program will perform well in production? What does it mean to “perform well”? How much memory will it need? How much traffic can it serve? Are there any memory leaks or race conditions? What part of processing takes up most of the time? Can I optimise it? Every developer should be able to answer those questions about their code. But most of us don’t bother. Why? Because analysing performance is hard and as a result it is often skipped in the development process or ignored until things get really slow. Or we may simply not know where to start. Writing efficient code is a valuable skill that takes time to learn. Being able to analyse performance can not only prove that our code is efficient and safe to run in production, but also teaches us what to avoid next time. It may seem daunting at first, but with the right tools at hand it is a highly rewarding process. In this talk, we will analyse and optimise the performance of a simple PHP application. By demonstrating how to use some of the excellent open source projects such as xdebug, xhprof or php-meminfo, I hope to give you a good idea of where to start with analysing and optimising your PHP code.

0
You can speak at a conference
Talk by Beth Tucker Long in Key Largo 4 (Uncon) (1 hour)

Uncon talk

11:30 Introduction to Serverless PHP
Talk by Rob Allen in Grand Ballroom (1 hour)

APIs and microservices are how we build modern web applications and serverless technologies make this easy. This session will show you how serverless applications are built and how you can leverage your PHP skills to build APIs of all shapes and sizes. We will cover how to use your current knowledge to build applications in PHP within Apache OpenWhisk or AWS Lambda, leveraging the API Gateway to build robust APIs quickly and easily. By the end of the session, you'll be well placed to design and build your own microservices that take full advantage of the power of serverless technologies.

PHP Internals for the Inquisitive Developer
Talk by Jeremy Mikola in Key Biscayne 1 (1 hour)

Even if you have no intention of becoming a PHP core developer or creating a PECL extension, cursory knowledge of PHP's inner workings can prove useful. This session will examine the lifecycle of a PHP request and equip you with essential knowledge and tools that can be used to diagnose the occasional segfault or language bug, decipher what a poorly documented SPL class actually does, and confidently answer why a PHP or C implementation is most warranted for a given problem.

5
How does PHP static analysis work
Talk by Damien Seguy in Key Biscayne 2 (1 hour)

Static analysis is an emerging field, in particular in the PHP world. Reviewing source code at the speed of a computer requires powerful theoretical tools: control flow diagram, abstract syntactic trees, acyclic dependency graph. If all this seems far and remote from PHP, come and learn how they apply to your favorite language! They are all useful when it comes to detecting early those errors that end up in production, and sometimes, even before the code may compile. We’ll see how to combine all those aspects to build a useful auditing engine.

1
10 Minute Meeting
Talk by Missy Miller, Lisa Bock in Key Largo 4 (Uncon) (1 hour)

Uncon talk

13:30
11
Welcome to the PHP community
Keynote by Nara Kasbergen in Grand Ballroom (1 hour)

Congratulations! By attending SunshinePHP, you are now a full-fledged member of the PHP community. Your attendee badge is your membership card, proving your acceptance into this global society. My goal is to make that seem exciting instead of intimidating, especially if this is your first PHP conference (or perhaps even your first tech conference altogether!). But even if you’ve attended SunshinePHP before, there is probably more you can get out of the conference and give back to the community. The theme of this talk is leveling up: approaching membership in the PHP community to a degree that's appropriate for you based on your prior involvement. If this is your first conference, you'll learn how to get the most out of it, including navigating the talk schedule, the official and unofficial after-hours events, and how to keep in touch with the people you meet afterwards. We’ll also discuss the importance of giving feedback on the sessions you attend using joind.in and review best practices for how to write constructive comments. If you've been here before and/or are already a regular attendee at your local meetup, I'll go over how to deepen your involvement, including how best to support your user group, take a more active role in the conference scene, and start making tiny but meaningful contributions to the open source ecosystem. Finally, for the longtime members looking to make a lasting impact in the community, I’ll go over the highest tier of community contributions, which includes running a user group, technical blogging, contributing to open source, and speaking at meetups and conferences — and why the latter isn’t nearly as scary as you might think, even if you're a shy introvert like me!

14:45
4
PWA for PHP Developers
Talk by Ben Marks in Grand Ballroom (1 hour)

Progressive Web Apps are an emerging approach to solving the problem of having the Web, everywhere: different mobile devices, IoT devices, and areas with low bandwidth or poor connectivity. For developers accustomed to PHP and server-side rendering, there are several factors to consider. Drawing on our experiences working with Google to build a PWA development experience for Magento, this talk introduces the elements of PWA, the challenges of providing online+offline functionality, and the limitations of this nascent approach.

Dependency Injection for Mere Humans
Talk by Ian Littman in Key Biscayne 1 (1 hour)

What's the difference between service location and dependency injection? Why is this dependency injection thing such a big deal anyway, and how do you use that tool correctly? I'll answer these questions and more, including real-world examples of refactoring an application toward the more explicit, testable, closer-to-SOLID applications.

6
Device Independent API design
Talk by Amrita Jain in Key Biscayne 2 (1 hour)

With the explosion of consumer devices, designing flexible and device-independent optimized APIs has become increasingly challenging. This talk covers API design best practices and core principles for microservice architecture, demonstrates them using a custom PHP framework, and summarizes the lessons learnt. Additionally, the talk covers highly optimized API design using graphQL to address versioning issues and device resource constraints.

16:00 Securing Legacy Applications
Talk by Chris Cornutt in Grand Ballroom (1 hour)

It’s common to hear people preach "plan in security from the start" and in an ideal world, you can. Here in the real world, though, we have legacy code that’s gathered over time and comes with a host of problems – (in)security included. What do you do when you’ve been commissioned with securing an application that’s showing its age? Follow along with me as I step you through a list of tips and tricks you can use to discover security issues in your application and effectively fix them and secure your application. Topics will include some of the most common vulnerability types, key places to look for potential issues and arm you with the tools and knowledge you’ll need to refactor that legacy application into something secure.

5
The MySQL Document Store
Talk by Dave Stokes in Key Biscayne 1 (1 hour)

The MySQL Document Store is a JSON based NoSQL database does not require the use of Structured Query Language (SQL) to interact with the database. No more embedding ugly strings of SQL in your beautiful PHP code. The new API calls (via the MySQL X Devapi PECL extension) follow modern programming design for all the CRUD functions of the document store. Each document has a payload of 1GB (compared to MongoDB's 16mb) and runs on proven, reliable MySQL technology. And if you have older relational data, the MySQL Document Store lets you access them plus the new document store data at the same time. This is a through introduction for those wishing to switch over to the MySQL Document Store with plenty of programming examples. Slides at https://slideshare.net/davidmstokes

Accessibility for Everyone
Talk by Beth Tucker Long in Key Biscayne 2 (1 hour)

It is important to reach every last customer, but there are a lot of customers out there for whom the web is not an easy quick-stop. Your target audience contains people who need visual or motor assistance whether they have a specific condition that affects them or are just part of the very large and aging Baby Boomer generation. Learn some tips for evaluating the accessibility of your site, and find out how to broaden your site's appeal while making the web a more accessible place for everyone.

2
Laravel for the PHPurist
Talk by James LaChance in Key Largo 4 (Uncon) (1 hour)

Uncon talk

17:15 Swoole 4: Introducing the New Coroutine Design Pattern in PHP
Talk by Demin Yin in Grand Ballroom (1 hour)

Swoole is an event-driven asynchronous and concurrent networking communication engine for writing high-performance HTTP and WebSocket services in PHP. It changes the way how we write and build PHP applications like before. With supports of coroutine (like goroutine in Go), non-blocking IO, connection pool, and many more, we can build better scalable and fast web applications. In this talk, I will dig into the latest changes and technical details in Swoole 4 to demonstrate how it breaks the limit of PHP, using a variety of examples.

4
Essentials of blockchain technology
Talk by Lisa Bock in Key Biscayne 1 (1 hour)

Blockchain technology was originally developed to protect financial data, such as bitcoin mining, to securely send transactions. In addition to using blockchains for financial transactions, we are now starting to see solutions that include using blockchain technology to secure communications between devices. Researchers are finding that we can use blockchains to provide authentication between devices and in any application that requires data integrity as it prevents spoofing. In this presentation, learn the history of blockchain, how blockchains work, along with some practical applications of blockchains.

4
PHP + nginx + Redis = Ludicrous Speed
Talk by Jason McCreary in Key Biscayne 2 (1 hour)

Nearly ever app has an API. The next step is "scale". But what you really mean is speed - Ludicrous Speed. Let's explore a super fast API with native PHP (no frameworks) running atop nginx, and using Redis as our runtime database. We'll take a peak at how underneath this may be a traditional PHP application. Yet, on the surface it's a high-performance, horizontally scalable API.

1
What's New in PHP 7.3
Talk by Ian Littman in Key Largo 4 (Uncon) (30 minutes)

Reading the PHP 7.3 release notes so you don't have to :)

Saturday 9th February 2019

09:00 Think Like a Trainer: Strategies for Improving Your Communication Skills
Keynote by Olivia Liddell in Grand Ballroom (1 hour)

Think back to a time when you were in a conversation that could have gone better. Perhaps you said something the wrong way, or you walked away from the conversation not fully knowing if the other person even understood what you were trying to convey. Technical trainers rely on effective communication as the foundation of everything that we do. We help end users to learn how to use software and adjust to new workflows, through the process of constantly adapting to different backgrounds, skill levels, and learning styles. In this session, you’ll learn actionable strategies to begin thinking like a trainer, including: - Using active listening techniques to communicate with empathy. - Best practices for explaining technical concepts in non-technical terms. - Adjusting your communication approach for different communication styles. Using problem solving skills to help you get unstuck during difficult conversations.

10:15
7
Performance Tuning Your Progressive Web App (PWA)
Talk by Josh Holmes in Grand Ballroom (1 hour)

Your users deserve a fast and responsive web app and PWAs help you step that up a notch through notifications, offline support and more. There’s a lot that goes into that from understanding how the DOM tree works and how that plays with CSS and JavaScript to how to leverage the ServiceWorker for cashing and push notifications. In this session, we’ll build a PWA that show cases many of the things you need to keep in mind when building a great and fast progressive web app.

Xdebug will forever change the way you debug your PHP code
Talk by Tim Bond in Key Biscayne 1 (1 hour)

We've all used echo, printr, and vardump to figure out why our code doesn't work. But did you know there's an easier way? This talk will demonstrate the use of two popular PHP tools: Xdebug and PhpStorm. Instead of littering your code with statements to send variable values to the browser, using these tools it's possible to pause script execution on a specific line, allowing you to view and edit any variable as well as arbitrary code. Never again will you forget to remove test code before sending it to production!

Applying SOLID and supercharging your testing suite
Talk by Korvin Szanto in Key Biscayne 2 (1 hour)

You've heard of SOLID and maybe have even integrated it into your development process, but how do you leverage those patterns to simplify your testing suite? In this talk I will cover the basic concepts of SOLID and show how they can apply to unit testing.

0
Updating your PWA
Talk by Mike Price in Key Largo 4 (Uncon) (1 hour)

Uncon talk

11:30 Unlock The Mystery of PHPUnit
Talk by Brian Johnson in Grand Ballroom (1 hour)

You know you're supposed to write unit tests, but you're not quite sure where to start. This session is for you. We will start from ground zero and go from zero unit test writing experience to functional test-driven developed code. Using the current version of PHPUnit we will cover: * writing basic test cases * simple assertions and constraints * mocking and data providers * testing exceptions and errors * and more! You will leave this session fully ready to write tests for your own code.

Working with Webhooks
Talk by Lorna Mitchell in Key Biscayne 1 (1 hour)

In an increasingly connected world, APIs are key to great tools and effective workflows. What is better than an API? A webhook of course! Webhooks are a key building block of a modern application, allowing systems to exchange data in response to events. This session gives examples of webhooks currently in use "in the wild", and examines both when a webhook is useful and the internal design and structuring of webhook payloads. We'll discuss how to work with webhooks in a scalable way regardless of technology stack; how to recieve and process incoming webhooks from an external system and how to design and publish your own for use by partners or consumers. This session is recommended for anyone interested in teaching their applications to play nicely with others.

4
Driving Innovation with MySQL 8.0 and Docker
Talk by Kathy Forte in Key Biscayne 2 (1 hour)

You as a MySQL architect are wondering about how you might make use of running MySQL in a container. You also are aware that the MySQL team at Oracle has recently released a new version of MySQL 8.0 with many advantages for both developers and DBAs. This talk will cover test driving MySQL 8.0 within a Docker container. We'll go over why a container is perfect for testing MySQL, how to set up your MySQL 8.0 container, some tricks on which features within MySQL 8.0 are perfect for containers, and best practices for incorporating this new technology into your DevOps environment.

2
Call Center App with Twilio
Talk by Jonathan Eastman in Key Largo 4 (Uncon) (1 hour)

Uncon talk

13:30 Dealing With Development Overload
Keynote by David Bisset in Grand Ballroom (1 hour)

Sides PDF: https://www.dropbox.com/s/6j7oo2shlt4hyou/sunshine_php_developer_overload.pdf?dl=0 The options, tools, and technologies available to developers seems to be ever increasing in today’s development world. In fact, it's become almost overwhelming, even for those focused just focused on a particular area of development. Anxiety and confusion can effect one's professional career and mental health. What People Will Learn This talk will walk through simple but important steps that can apply to both beginner developers and senior developers in terms of how to determine what areas that they might want to focus in, and where they can go. Those that manage remote teams can also learn how to encourage developers and individuals on their teams. Why It’s Important Work/Life balance is important, but the "fear of missing out" is a powerful and many times an overwhelming emotion. Especially since many developers appreciate that they can't learn everything, especially if they have a family and social life. So many in our industry are overworked, fearful on some level, and feeling they are not putting the right priorities first. My Experience With This Topic It's simple - as a developer for 11+ years in the PHP, JavaScript, WordPress, tech conference, and other communities (and 25+ years in general)... as someone who has a family of three children and other responsibilities... I can personally relate.

14:45
1
Call... Text... Video Me Maybe?
Talk by Mike Stowe in Grand Ballroom (1 hour)

Have you ever wondered how you could add voice, telephone, SMS, MMS, messaging, video, meeting, or fax (yes - I said fax) capabilities to your web app? Learn how easy it is to build in all of these with HTTP based APIs and take your application beyond the browser. For this session we'll focus on using the RingCentral APIs (although you can easily use any other vendor as the process is nearly the same).

4
Get started with Vue.js
Talk by Matt Trask in Key Biscayne 1 (1 hour)

Vue.js is gaining popularity for its clean api, easy to read docs and solid ecosystem. Let's dive in and build a simple SPA with Vue, Vue-router, Vue-resource and Vuex and look at the different moving parts of a Vue.js SPA. We will also look at some the new ES6 features out in the wild that you can use to write clean JS!

Creating a job/queue system from scratch, it’s not that hard
Talk by Doug Steinberg in Key Biscayne 2 (1 hour)

A common problem we face as web developers is providing a good user experience while running a time-consuming process. A great solution to this problem is background jobs, to run in a queue and let users continue with the flow of the app. Popular PHP frameworks have built-in solutions for this, but what if we needed to implement a queue in plain old PHP or an application we hobbled together using components? This talk will show you how to set up a queue system that’s perfect for any PHP application, using tools already available in the language. No frameworks or packages required!

0
12 years in the life of elephpant
Talk by Damien Seguy in Key Largo 4 (Uncon) (1 hour)

Uncon talk

16:00 The Recommendation Engine: A case study on an application of a recommender system
Talk by terry chay in Grand Ballroom (1 hour)

One of the surest ways to start down that path of making your data science and machine learning work for you is to find low-hanging fruit. Recommender systems have proven to be one of the most useful applications of data science to the consumer-facing web since the earliest days of the internet. This talk covers why and how one was built to recommend colleges to prospective high school students, the application of popularity tables and collaborative filters, as well as other approaches and the reasons for doing them sparkled with some war stories about their success and failures. Hopefully after this you can find how your data can work for your users to transparently improve their interaction with your websites instead of sitting in the back office somewhere helping some executive add graphs to their TPS reports.

3
Immutability to Save an Ever-Changing World
Talk by Andrew Cassell in Key Biscayne 1 (1 hour)

Want to build software that is more testable, easier to modify, and has fewer lines of code? Architecting with more immutable objects that are always in a valid state is the most important lesson I have learned in building better software applications. Using immutable value objects will lead to less checking, fewer bugs, more DRY code, and help avoid the “spooky action at a distance” problem in PHP. We will also learn how to use immutable objects and immutable collections to improve design of our mutable entities. Lastly, we’ll see how immutable objects and functional programming can reduce complexity.

CI/CD for PHP on AWS
Talk by Michael Moussa in Key Biscayne 2 (1 hour)

Working in shorter development cycles has a tendency to result in faster, less-risky delivery of changes to our production applications. Extensive automation is a key part of achieving this, but where do you begin? If you’re currently hosting on AWS, you’ll be happy to know that there’s a full suite of developer tools available to accomplish just that. In this session, we’ll explore using AWS CodePipeline, CodeBuild, and CodeDeploy to set up continuous integration, continuous delivery, and zero-downtime deployment of our PHP applications!

Introduction to Event Sourcing + CQRS
Talk by Miro Svrtan in Key Largo 4 (Uncon) (1 hour)

Uncon talk

17:15 Docker Alphabet Soup
Talk by Dana Luther in Grand Ballroom (1 hour)

If you’re new to docker, the lingo can be more than a little daunting. Containers? Stacks? Images? Services? What’s the difference between docker stack ls vm vs docker service ls? What are all those toggles and do I need them? Where did all my logs go, and what the heck is a swarm?? In this presentation we’ll go over the lingo and explain some of the hidden gems in the list of commands that every developer should know.

Year with event sourcing and CQRS
Talk by Miro Svrtan in Key Biscayne 1 (1 hour)

For the last few years, the PHP community has been buzzing about ES/CQRS, and there was a talk at every conference. So now I will share how it worked out for me in practice. ES/CQRS is a different approach to building applications from what we've done for years. I'm not going to introduce Event Sourcing and Command Query Responsibility Segregation (ES & CQRS) but instead will speak about my experiences in developing and running it in production. I implemented it in a few projects: in some I ran it as a part of bigger application, while in others it's the core where everything is event driven. The shift in architecture and mindset is pretty big: while code structures and logic became simple, the amount of code and workflows became complicated to the point of "where did I loose this input?". We also discovered the need to learn many DDD practices I feel have made me a better developer, and now I use some of the knowledge gathered through this projects in 'everyday' code.

Promises and Queues: Using Unlikely Suspects to Handle Asynchronous Parallel Processing
Talk by Jacob Mather in Key Biscayne 2 (1 hour)

My last job was with a distributed manufacturing platform for turning digital ideas into physical products. They enabled customers to upload 3D models, have the models manufactured into physical goods, and delivered into the customer's hands, all within 24 hours. Every time a digital model is uploaded, we processed the file with an array of tools that inspect the model and make determinations about its manufacturability, size, and perhaps most importantly price. One of the very first things I did there was to completely overhaul this process, converting it from a mystical black box to a clear set of discrete processes with copious amounts of highly visible logging. While there are many possible ways to do this, I chose Jenkins, and in supporting this system for over a year, while I may use different tools to do it now, Jenkins bought us a lot of time in the interim, and I left them with quite a bit of runway before any changes would be required. In this talk I will cover where we started, why I chose Jenkins, why it works so well for this use case, and how to use these same patterns to solve your asynchronous parallel processing problems, regardless of your platform. Our use patterns showed us that managing jobs in Jenkins can be a very similar experience to managing code deployed to server-less solutions such as AWS Lambda. Let me show you how.

5
Slide Deck Karaoke in Key Largo 4 (Uncon) (1 hour)

Uncon Talk

18:30
4
Pop Songs and Programming for Fun and Profit
Keynote by PJ Hagerty in Grand Ballroom (1 hour)

Ever wonder what it takes to live in the world of an open source developer? What if everything you can learn comes from the world of pop songs? We can learn a lot of from music, but in this talk, let's listen and see how we can be better developers. Through a series of pop songs we’ll look at what it’s like to: - Start out on your own as a programmer - not sure where to go or to get involved in open source - Work on a team dedicated to Open Source in the crazy world of SV/SF - Open Source at a big blue company, and how large corporations view Open Source - Sharing your knowledge with the next line of new folks looking to get in on OSS - Going out on your own - giving a conference talk - being the expert and sharing what you know