PLAY PODCASTS
The PHP Roundtable

The PHP Roundtable

93 episodes — Page 2 of 2

Ep 42043: A Lone Star PHP 2016 Special

E

We record live from Lone Star PHP 2016 in Dallas, TX. We discuss what DI Containers aren't, tradeoffs to making things easy, how to improve your dev skills, repercussions of depending on Composer, PHP 7.1 features and we give away a white Confoo elePHPant.

Apr 9, 20161h 1m

Ep 41042: Staying Relevant For Web Development

The technologies that run the web are constantly changing. We discuss strategies for staying on top of the constant flux with continuous learning throughout your career, having mentors, engaging regularly with your peers, contributing to open source projects, voracious reading, and travel to programming events.

Mar 22, 201659 min

Ep 40041: The PHP-FIG: Past, Present & Future

The PHP-FIG has really helped the PHP community get onboard the collaboration train with really great standards like the PSR-4 autoloading standard and the PSR-7 HTTP message interfaces. We discuss PSR-0 through PSR-13 and the process they go through to become standards. We also discuss where the FIG came from and the possible big changes coming to the organization soon.

Mar 9, 20161h 20m

Ep 39040: Graph Databases

Traditional relational databases like MySQL or Postgres are really good at providing many solutions to the problem of persisting state. But these types of database are really horrible at querying highly connected models in an efficient way. Graph databases like Neo4j and OrientDB excel at highly connected data. In fact, graph technologies are the backbone of social networks like Facebook and Twitter. We discuss how to think about our data using the graph model and what tools we can use in our PHP projects to interface with them. We also discuss the considerations we'll need to make when deciding whether or not to use a graph database in our next project.

Feb 24, 20161h 24m

Ep 38039: From Idea To Production: Part 2

We get an update on status of the project we discussed in part 1 and discuss next steps to take our dance event management app idea to production.

Feb 22, 20161h 4m

Ep 37038: RFC Show & Tell

E

New features of PHP get added via the request for comments process. We chatting with a few RFC authors about what features they are proposing for the next major version of PHP.

Feb 18, 20161h 19m

Ep 36037: An ORM Discussion

Object-relational mapping (ORM) tools are a great way to model relational databases in your codebase. We discuss the benefits that ORM tools can add to our apps, some problems with the ORM model and where the PHP community seems to be heading when it comes to persisting data. We'll also discuss the opposing active record & data mapper paradigms.

Feb 3, 20161h 21m

Ep 35036: A Room 11 Special

E

We bring room 11 chat room from Stack Overflow to the Roundtable. We discuss security, PSR-6, Magic the Gathering, PHP 7 and kittens.

Dec 11, 20151h 26m

Ep 34035: Immutable PHP

Immutability plays a huge role in functional programming and many languages support immutability directly; like the readonly keyword in C#. It is possible to create immutable objects in PHP, but the language lacks inherent immutable features for scalar variables and class properties. We discuss how to bring functional programming concepts to PHP and brainstorm some features that could possibly be added to future versions of PHP to offer better immutability support.

Nov 24, 20151h 26m

Ep 33034: Debugging is more than var_dump()

Believe it or not, there's a lot more to debugging your PHP code than var_dump()'ing all the things. We discuss how to use debugging tools to help us comprehensively debug our codebase.

Nov 16, 201559 min

Ep 32033: Design Patternmania

With a new design pattern coming out every week it can be easy to get caught up in all the hype. If you frequently try to implement the latest-and-greatest design pattern and feel constantly paralyzed by the thought, "I know I'm doing this wrong," this episode is for you. We discuss how "not seeing the forest for the trees" might be a good thing as we try to narrow our focus in order to write better code without thinking of patterns first.

Oct 25, 20151h 10m

Ep 31032: Running A Rockin' PHP User Group

User groups are core to the strength of the PHP community. We discuss what it takes to run a solid user group in your area; finding food & venue sponsors, finding speakers, dealing with money & expenses, and all the details that go into making a rockin' user group. And if you don't have a user group in your area, hopefully this episode will inspire you to take Cal Evans' advice and start one!

Oct 20, 201558 min

Ep 30031: Checking in with PHP & HHVM internals

We chatting with some PHP & HHVM internals folks to learn what's been going on in the world of internals.

Oct 6, 20151h 9m

Ep 29030: SOA and Microservices

SOA (Service Oriented Architecture) is an architecture that shifts our focus from one big monolithic web app to smaller connected web apps. We discuss what an SOA app looks like in the real world and how it affects our codebases, deployment & DevOps.

Sep 1, 20151h 3m

Ep 28029: The Only Girl In The Room

Inspired by a panel discussion at Midwest PHP 2015, we discuss what barriers exist for women in the PHP community and what we can all do to remove gender bias.

Aug 25, 20151h 1m

Ep 27028: The Alcoholic & Unfit PHP Culture

E

The PHP community has its fair-share of devs struggling with alcohol & weight loss and it doesn't help that there is a strong culture around alcohol consumption at nerd events. For some, the bottle is just a fun weekend with nerds. For others, it's a vice & deep struggle affecting them both mentally and physically. We'll be discussing the alcoholic culture in the PHP community as well as our struggle with weight loss.

Aug 20, 20151h 21m

Ep 26027: A Laracon US Special

E

A live recording from Laracon US in Louisville, Kentucky.

Aug 11, 201551 min

Ep 25026: Documentation & Developer Experience

Documentation can make or break a project but it's often completely overlooked until the very end. And if we don't think about how developers will interact with our project before writing our opening php tag, we could end up with a very ugly API. We'll discuss some strategies we can take to improve the overall developer experience with "good" documentation and clean API's

Aug 4, 20151h 3m

Ep 24025: PHP7 Release Management

We've seen 2 alpha releases of PHP 7 so far and the first beta release became available this past Friday, July 10th. We might not put too much thought into what goes into each release of PHP so for this episode we take a closer look at the release management processes for PHP 7.

Jul 14, 201551 min

Ep 23024: Becoming A PHP Entrepreneur

So you have a 9-5 job but want to start your own business... where do you start? We discuss what realistic first-steps you'll need to take in order to transform yourself from a PHP employee to PHP entrepreneur.

Jul 9, 20151h 15m

Ep 22023: PHP's Major "Bus Factor" Problem

Inspired by a lively Open Spaces session at php|tek 2015, we discuss how PHP's ecosystem could be threatened by a not-so-obvious bus factor and what we can all do to keep things thriving.

Jun 22, 20151h 6m

Ep 21022: All About PSR-7

PSR-7 is the latest accepted member to the PHP FIG's standards library. We discuss what PSR-7 is, how it utilizes streams, immutability & middleware, and how it will affects you as a developer.

Jun 11, 20151h 15m

Ep 20021: From Idea To Production: Part 1

We discuss an idea for a web app and identify ways to turn it into a real-life product on the web. We start with describing the domain and the problems the app should solve. Then we identify the personas that will interact with the app. We discuss the features features the app should have to fix the problems and we sort all the features by priority. Finally we talk about timeline, deliverables and next steps. The app we discuss will be launched to production by the next airing of this multi-part series of taking an idea to code.

May 28, 20151h 14m

Ep 19020: A Loosely Coupled Mashup @ php[tek]

E

A special live mashup recording with Loosely Coupled from php[tek] in Chicago, IL. We talk #phptek, Open Source, and eat some PSR-7 cake.

May 21, 20151h 22m

Ep 18019: The Business of PHP

We discuss freelancing as a PHP developer, managing client expectations, niches, good customer service, project scope & scope creep, hourly rates vs value based pricing, and whether or not to run a SaaS.

Apr 30, 20151h 24m

Ep 17018: F8 Afterglow & The PHP SDK

A short afterglow discussion about the 2015 F8 Facebook Developer Conference in San Francisco, CA & a look at the new Facebook PHP SDK and where it's headed.

Apr 22, 201534 min

Ep 16017: Modernizing Legacy Codebases in PHP

We discuss practical ways of dealing with legacy codebases and address the question of, "to rewrite or to refactor"? We also talk about how we should manage client expectations when working with a legacy codebase. And finally we discuss some general strategies for refactoring a codebase to good, clean, modern PHP.

Apr 15, 20151h 10m

Ep 15016: Contributing To PHP 7

You don't need to be a C programmer in order to contribute to PHP internals. We'll be discussing how you can get involved with PHP internals, the GoPHP7-ext project and how you can help get PHP 7 ready for release.

Mar 30, 20151h 9m

Ep 14015: SemVer, Licensing & OS Support Expectations

Part 2 of an on-going series on open source. We discuss a number of open source topics including what the expectations are for support of an open source project. We also discuss how to use SemVer to successfully maintain an open source package and what we can do when SemVer is not an option. And finally we take a look at licensing and discuss why we need to be concerned with it.

Mar 18, 20151h 5m

Ep 13014: A Midwest PHP Special

E

A live recording from Midwest PHP in Minneapolis, MN. We talk about developer burn-out, the GoPHP7-ext project, why eval() is bad, the cons of the reflection class and announce the voting phase for an RFC for PHP7.

Mar 14, 20151h 28m

Ep 12013: TDD & BDD In PHP

We focus our discussion on two ideologies within the testing realm: test-driven development (TDD) and behavior-driven development (BDD). We talk about how these two methodologies bring a unique angle to testing software and how we can use them in tandem in our own PHP projects.

Feb 23, 20151h 9m

Ep 11012: A PHP Town Hall Mashup at Sunshine PHP

E

A live mashup of PHP Roundtable and PHP Town Hall at Sunshine PHP in Miami, Florida.

Feb 7, 20151h 16m

Ep 10011: Accessibility On The Web

Accessibility is an important and often overlooked aspect of web development. In this episode we'll discuss why web accessibility is so important and how we can make the web more accessible.

Jan 26, 20151h 11m

Ep 9010: ReactJS and the Flux architecture

ReactJS is not just another JavaScript framework. It's not a replacement for jQuery, Ember or Angular. But it's a library that's got one wild and crazy way to render the DOM using something called JSX. You'll hate it. Then you'll love it. Then you'll be an annoying fan-boy of it.

Jan 19, 20151h 3m

Ep 8009: Coding Securely In PHP

With big security breaches becoming the norm these days, security is something we simply cannot ignore. In this discussion we'll ask the experts how we can become more responsible developers by learning about specific security threats we should be most concerned with.

Jan 12, 20151h 11m

Ep 7008: Domain-Driven Design In PHP

Discussing domain-driven design concepts in PHP.

Jan 5, 20151h 18m

Ep 6007: Git & Git-Flow - Open Source Part 1

Part one of a multi-part series on open source. Today we discuss open source & code management with a version control system & explore the concept of git-flow.

Dec 16, 20141h 29m

Ep 5006: Faceoff: Taylor Otwell vs Phil Sturgeon

E

Taylor Otwell & Phil Sturgeon go head-to-head debating all the things.

Oct 30, 20141h 14m

Ep 4005: PHP Internals - Past, Present & Future

How the sausage is made. Taking a look at PHP's history and where it's going in the future.

Oct 19, 20141h 14m

Ep 3004: All About API's

All about web API's: designing your API with RAML, authentication with OAuth and discussing the hypermedia-constraint (HATEOAS).

Sep 22, 20141h 28m

Ep 2003: A #WurstCon Special

E

Drunken chatter from #WurstCon Chicago 2014.

Sep 20, 20141h 50m

Ep 1002: Functional Programming In PHP

We explore what functional programming looks like in PHP. We also touch on non-blocking, asynchronous, & event-driven concepts.

Sep 8, 20141h 24m

001: The PHP Community, PHP CLI, & ElePHPants

A discussion that examines the zeitgeist of PHP. From elePHPants, to user groups, to PHP internals, to testing, to the awesome people in the community.

Aug 25, 20141h 18m