by Sourcetoad | Nov 14, 2016 | App Development, Code, Cool Tools
Yii and Yii2 utilize various magic methods within the framework, the implementation of which can be found in the Object class, which most of the framework extends off of. These magic methods __get, __set, __isset, __unset, and __call enforce a set of standards...
by admin | Sep 19, 2016 | Cool Tools, Dev Trends, Web Design
In a quickly mutating world of web software development, preprocessors are rapidly becoming the new emperors of the land. And they are steadily carving a grand new path out of a somewhat ancient and rocky past. Let’s talk about how preprocessors are reinventing the...
by Sourcetoad | Aug 30, 2016 | App Development, Cool Tools, Web Design
For those of you unfamiliar with pattern libraries, I’d recommend reading Paul Boag’s excellent blog post on the subject. Basically, a pattern library is a type of style guide for a software application; usually a large web project. They’re essential...
by Sourcetoad | Aug 8, 2016 | Cool Tools, Security
If you’ve ever used web platforms such as Uber, Kickstarter, or Elance, then you’ve seen split payments in action. Each of these websites use a type of transactional functionality more broadly known as third party payments. Stripe, Braintree, and Paypal are three...
by Sourcetoad | Aug 1, 2016 | App Development, Cool Tools, Programming
Is PhpStorm the best PHP IDE out there? In my last blog post, I talked about switching from my long-time editor of choice, Coda, to PhpStorm. I wrote about some of the issues I had with the switch. Complicated, and seemingly endless, preference menus made the...
by Sourcetoad | Apr 5, 2016 | App Development, Cool Tools, Programming
I’ve been thinking about micro-services lately as a way to organize projects. I think I understand the concept better when I think of them like dynamically-linked libraries. At first, it seemed inefficient to have different services communicate through...