Episode 14 – Prototyping with PHP
In this Episode Eric van Johnson and John Congdon wrapped up recording on episode 14. Share your thoughts on the topics covered and leave a comment below. Topics Eric and John talk about stickers (again), PHP internals, understanding framework trade offs, John explains MySQL 8 window functions, burning out, sub-domain takeovers, and more. Oscar shares […]
The Dev Lead Trenches: Burning Out
The tech industry is a double-edged sword. On the one side, we (generally) have well-paying jobs with nice perks, but on the other, we can easily slip into not only boring, repetitive work but figurative death marches. The former is used by most companies as an offset to the latter, but that rarely works out well. This leads many developers to come face-to-face with burnout.
PHP 7.3 is On Track
PHP 7.3 successfully passed the “feature freeze” deadline. On Aug. 1st, 2018 all features for PHP 7.3 were identified. This triggered the first PHP 7.3 beta, on the following day, and, from there, we’ll reach RC in September. It is time to review what this new PHP version has available for us, help test PHP 7.3, and get ready.
Pro Parsing Techniques With PHP, Part Three Using Regular Expressions
Regular expressions, or sometimes simply called regex, represent a powerful set of tools which allow developers to split strings, perform character substitutions, and extract text based on matched patterns. The patterns, used in regular expressions, are an actual language that describe combinations of type castings and values that match the text you want to split, substitute, or extract. Regular expressions are an enormously powerful tool for the developer who understands them.