Middleware, Serializing Objects,
This episode looks at the September 2020 issue, Under the Scope. Topics covered Using middleware, especially in legacy applications. Use cases for serializing PHP objects. Cleaning up directions and cleaning up data sets. Development tools you should have, like Mailhog and ngrok. Development environments with WSL and Docker. Using Mozilla Observatory to assess site security. […]
Interview with Terri Morgan
Eric and John chat with Terri Morgan about her article on project metrics in the September 2020 issue. Topics Covered Providing valid metrics for project managers. Establishing “where you want to go” as your project goal. Defining deliverables and when you’ll have them. Managing scope creep. Speaking and attending conferences. Being a polyglot programmer.
Community Corner: PHP 8 Release Managers: Interview with Sara Golemon and Gabriel Caruso, Part Three
By Eric Van Johnson Part three concludes my interview with the PHP 8 Release Managers about PHP Internals. We touch on getting started contributing to internals via RFCs, becoming release managers, the commitment required by that role, and how the project’s release cycles have evolved. Being a Release Manager I have to be honest Gabriel, […]
PHP and Database Access
In its early days, the Internet was all about sharing static data like images, flat text files, and downloadable binaries. The early Internet’s static nature was useful in for sharing information. In many ways, the ability to tie static web pages to the dynamic content resident in enterprise databases allowed us to build new kinds of applications. This is where, in many respects, PHP shines.
Document databases, MySQL, JSON-Schema validation, and PHP types
In this Episode Eric, John, and Oscar discuss the August 2020 issue, Data Discipline. Topics Covered Using SQL with non-relational databases. Data integrity with UUIDs and primary keys. Connecting and working to databases directly. Rolling dice with PHP Thinking about data types. Using Windows or Linux as your daily driver.
Interview with Dave Stokes on JSON-Schema, and MySQL
In this Episode Dave Stokes joins Eric Van Johnson and John Congdon to talk about MySQL and databases. The correct pronunciation(s) of MySQL. The impact of open-source software on their careers. Upcoming EOL support for MySQL 5.x and upgrading to MySQL 8. Working with JSON documents and the value of validating data early. When and […]
Education Station: Writing Concise Code
By Chris Tankersley There is a huge emphasis put on the code maintainability, and for a good reason. The programming industry is rife with what we like to term “legacy code,” which boils down to code that solves a business problem, but we, as the current maintainers, do not understand. No language is safe from […]
Education Station: Calling All Callables
By Chris Tankersley When facing a challenging problem, you want a flexible codebase that adapts quickly. Object-oriented programming facilitates it by giving you the power through inheritance, encapsulating code in reusable objects, and generally making them work for your application as you see fit. However, we can find flexibility in other programming approaches. Languages such […]