Determining Code Coverage With PHPUnit

by · March 27, 2023

0
 

There are lots of ways that we can judge other developers’ code. A lot of them are subjective like spacing, function names, and class names. When we do code reviews these are not helpful methods to judge the code and we instead need to use a better method. We need to use non-subjective metrics like […]

php[podcast] Episode 23.3.1

by · March 26, 2023

0
 
php[podcast] Episode 23.3.1

John and Eric share more of the day to day behind the scenes work that goes on at php[architect]. This includes a lot of talk on php[tek]. They also talk about the latest edition of the magazine “Box of PHP”. Join the Discord at https://phpa.me/discord Get your early bird php[tek] tickets before the price goes […]

Automated Testing Using PHPUnit

by · March 20, 2023

0
 

As developers, we spend a lot of time testing the code that we’ve written. Generally, this is a manual process where we write a little code and then manually enter some inputs to verify we get what we expect. What if instead of doing the same manual testing over and over again, we used a […]

Serializing Data In PHP

by · February 27, 2023

0
 
php[architect] YouTube

One of the more annoying problems when working with data is creating a system to save data from RAM into long-term storage so it can be loaded back into RAM and processed at a later time. There are thousands of different file formats that allow us to take structured data, write it to storage, and […]

Everything You Need to Know About Pair Programming

by · February 23, 2023

0
 
php[architect] YouTube

Onboarding a new developer to our team can be a complicated process. They need to fill out HR paperwork, get a development environment, and find a comfy place to work (along with a caffeinated beverage). Then someone needs to fill their head with all of the institutional knowledge they need to do their job. There […]

php[podcast] Episode 23.2.1

by · February 14, 2023

0
 
php[podcast] 23.2.1

 Join the Discord at https://phpa.me/discord Get your early bird php[tek] tickets before the price goes up at https://tek.phparch.com   Subscribe to the Magazine Today https://phpa.me/signup Join us at php[tek] 2023 php[tek] 2023 Twitter @phparch @phptek @johncongdon @shocm Mastodon phparch.social@editor phparch.social@tek phparch.social@john phparch.social@eric

Creating a PHP Library With Packagist

by · February 2, 2023

0
 

One of the most powerful parts of writing web applications in the modern era is how we can quickly create an application that does a lot with just a little bit of our code by using open-source packages. Have you ever wanted to contribute a package to the community for others to use? Maybe you […]

Getting Out of PHP Dependency Hell With Composer

by · January 24, 2023

0
 

In the darker days of web application development, we essentially had two options for working with dependencies. The first is that we could put all the dependencies in a directory of our application and use them from there. This worked but could cause our application to balloon in size. The other option was to rely […]

php[podcast] Episode 23.1.1

by · January 18, 2023

0
 

Subscribe to the Magazine Today https://phpa.me/signup Join us at php[tek] 2023 php[tek] 2023 Twitter @phparch @phptek @johncongdon @shocm Mastodon phparch.social@editor phparch.social@tek phparch.social@john phparch.social@eric

Queues With PHPs SplQueue

by · December 21, 2022

0
 

As developers, we have times when we get to process a lot of data. Sometimes it’s a few kilobytes of data and we don’t need to worry about the performance because computers are so fast. When we’re looking at gigabytes or more of data then we need to be aware of the performance of our […]

« Previous Page Next Page »