Posted in API Development API Testing Development Testing

Developing or testing APIs?

I recently found POSTMAN to be very useful for testing APIs, just download, unzip and your away.

Posted in Chef DevOps git

Pulled your chef cookbooks from git over https only to find you need to push them over SSH?

for I in $(find ~/chef-cookbooks -type d -name “cookbook*”); do cd $I NAME=”$(basename ${I}).git” git remote set-url origin git@github.com:project/${NAME} git…

Posted in git

Don’t want to have to type your GIT credentials in every-time?

To cache your credentials for 24 hours:- git config –global credential.helper “cache –timeout=86400”

Posted in Development Learning

Production Grade Applications and Libraries

When producing apps and libraries for use by the public you must have at least the following five concerns. It…