2 min read 0 Programming Javascript Function Usage Patterns March 26, 2017 In programming, patterns mostly apply to code design. However, patterns may also apply to usage of language specific functionality, either…
3 min read 0 Programming PHP 7 Object Properties Type Safety with Setters and Getters March 26, 2017 PHP 7 introduces scalar type definitions: your function parameters can be of a given type, and function return type declarations…
2 min read 0 Programming Useful JavaScript Frameworks and Libraries March 26, 2017 This post presents a set of useful JavaScript frameworks and utilities, designed either for the browser or node.js. EnvyoJS Site: http://enyojs.com/…
2 min read 0 Programming Useful web ecosystem tools March 26, 2017 Here are a couple of tools, useful for a web based ecosystem. Papetrailapp Site: https://papertrailapp.com/ Description: Web log management service. Librato…
5 min read 0 Programming Notes on PHP Design Patterns, Part 2: Patterns for Performing And Representing Tasks March 26, 2017 In a previous notes entry I wrote about patterns used for Generating Objects, and facilitating Flexible Object Programming. In this entry…
2 min read 0 Programming JavaScript Object Creation Patterns Part 1 March 25, 2017 To continue the series on Object Oriented Patterns, here is the first entry covering JavaScript; focusing on Object Creation Patterns.…
5 min read 0 Programming Notes on PHP Design Patterns, Part 1: Generating Objects and Flexible Object Programming March 25, 2017 Design patterns are streamlined solutions to common problems. They provide guidelines that can be translated into code. This entry will…