Posts

What is Encryption and Decryption?

As developers, there are going to be times when we need to be able to keep digital information secret from individuals who we don’t trust. Encryption gives us the ability to keep our secret information secret and allows us to keep our jobs if we work with sensitive information.

In this article, we’re going to go over what encryption is, why we need it, and discuss the major types.

Read More

Superfans Update: November 2021

Checkout out Superfans Update on our YouTube Channel using the link above or using the embedded video below.

Superfans Update: October 2021

Checkout out Superfans Update on our YouTube Channel using the link above or using the embedded video below.

Superfans Update: September 2021

Checkout out Superfans Update on our YouTube Channel using the link above or using the embedded video below.

Read More

Link Post and Podcast Roundup: September 2021 Edition

September’s links.

Read More

Test-Driven Development with PHPUnit

In our previous 2 articles (“What is Test Driven Development?” and “Introduction to PHPUnit”), we discussed what Test-Driven Development is and why you should use it and we gave a very basic intro to PHPUnit. In this article, we’ll work through how to use PHPUnit to develop some new features using TDD.

Read More

Introduction to PHPUnit

As developers, we spend a lot of time testing code that we’ve written. Generally, this is a manual process where we write a little code and then type in some inputs to verify we get what we expect. The downside to this process is that it’s very time-consuming to manually enter a bunch of input to see if one of them now fails after we’ve made a change.

What if we could use an automated testing tool to do the hard work for us? That’s where PHPUnit comes into the picture.

Read More

What is Test-Driven Development?

As developers, a large portion of our time is spent testing code that we’ve just written. In a traditional testing cycle, we’ll write some code and then manually test. We’ll enter some inputs and find that it causes an error so we’ll write a little bit more code to fix that error and test again only to find another set of inputs that fails. We’ll slowly work through this process until we feel confident that everything is operating correctly. But how do we know that the first set of bad data we found is still error-free? How do we know it’s still error-free a year from now?

We could continue to manually test all these permutations but almost all of the time they’re going to continue to run perfectly. Because it’s very time consuming to run through all these permutations we’re not going to keep this up. Using tools like PHPUnit we can create automated tests that will make testing our code infinitely more repeatable. Embracing Test-Driven Development (TDD) will allow us to quickly build a suite of automated tests that will allow us to improve the maintainability and reliability of our code.

Read More

Link Post and Podcast Roundup: August 2021 Edition

August’s links.

Read More

Link Post and Podcast Roundup: July 2021 Edition

July’s links.

Read More
RSS

Join Our Mailing List!

View previous campaigns.

Top Posts

  1. Working With Soft Deletes in Laravel (By Example)
  2. Fixing CMake was unable to find a build program corresponding to "Unix Makefiles"
  3. Upgrading to Laravel 8.x
  4. Get The Count of the Number of Users in an AD Group
  5. Multiple Vagrant VMs in One Vagrantfile
  6. Fixing the "this is larger than GitHub's recommended maximum file size of 50.00 MB" error
  7. Changing the Directory Vagrant Stores the VMs In
  8. Accepting Android SDK Licenses From The OSX Command Line
  9. Fixing the 'Target class [config] does not exist' Error
  10. Using Rectangle to Manage MacOS Windows

subscribe via RSS

All content copyright This Programming Thing 2012 - 2021
Blogging about PHP, MySQL, Zend Framework, MySQL, Server Administration and Programming in general