Programming
An example of when being to clever can come back to bite you…
As part of a test I had to ensure only two alphabetical characters would allowed. So I used `chr(rand(97,122))`; which on a OSX machine is letters a->z. However, this character… Read More »An example of when being to clever can come back to bite you…
So youre using Docker in dev, but how do you get deploy?
Asmir Mustafic (@goetas_asmir) did a 10 minute presentation over at NomadPHP on how to deploy your PHP (or really any process) using docker. https://nomadphp.com/deploy-php-app-docker/?utm_source=rss&utm_medium=rss&utm_campaign=deploy-php-app-docker
Hackathons…an honest opinion.
When taken as a hole a hackathon is a marketing, networking, and possibly hiring event. Engineers and developers of all levels attend with the award of getting to demo a cool /… Read More »Hackathons…an honest opinion.
A prime example of why automated testing works…
Today I got to a change request that read something to the order of ‘move all this code from place X, the new namespace Y. By the way, it is… Read More »A prime example of why automated testing works…
Out of the box performance: PHP + PDO + MariaDB
Backstory: Another week, another evening at the Pub with some friends and colleges. Somehow or the other we got on the topic of database insert performance and how long it would… Read More »Out of the box performance: PHP + PDO + MariaDB
PSA: Do not use Codeception DB and Yii2 modules together…
…specifically the Yii2: ORM and DB module and transactions. The Yii2 $I->seeRecord() & related methods do NOT use the same connection ID as the DB module. So doing actions such… Read More »PSA: Do not use Codeception DB and Yii2 modules together…
Did a thing today, ‘nother new package.
New Package: Stripe + CommandBus + Yii2 I got tired of writing out the entire Stripe class requirements coupled with the need to trigger stripe events from different areas of the… Read More »Did a thing today, ‘nother new package.
Yii2 Database Schema Builder…o, thank you!
Came across this in the Yii2 news feeds. Built on Gii it is a UI for building out the database schema. Think MySQL Workbench / PhpMyAdmin but as a Yii2… Read More »Yii2 Database Schema Builder…o, thank you!
Checkout my latest OSS contribution!
A very early alpha release but as I am a fan of the command bus design pattern I thought this would be a nice addition: https://packagist.org/packages/davidjeddy/stripe-command-bus-interface GiutHub, Download, Tweet, Comment, Follow! PS: Again,… Read More »Checkout my latest OSS contribution!