Categories
Integration web development tools

continuous integration: Jenkins Automated Deployments with a Private git server

What is Jenkins? A continuous integration tool written in Java. Continuous integration is the process of merging development work among multiple developers. It also serves to automate unit testing and I am certain other types of testing in test driven development. To simplify all that, it is build automation and in my opinion an automated […]

Categories
GNU/Linux

Demystifying Unix File Permissions

Never really understood what was going on with Linux File Permissions and chmod? If you understand binary then this will be a piece of cake. Here is a simple blog post to demystify Unix File Permissions: Ever seen: -rwxr-xr– 1 dgerman staff 823 Dec 16 15:03 findPhoneNumbers.sh Operations: r – Read w – Write x – […]

Categories
tutsplus

Tutsplus Magento Fundamentals Changes to keep in mind (Updated 11-2014)

Keep in mind that the Tutsplus Magento Fundementals course is old and needs a few changes to get things to work I think the course has been updated subsequently please check it on the following link to Tutsplus Episode 10: Creating our First Controller Remember to type it word for word, I used <uses> instead […]

Categories
Uncategorized

Email Signature Thunderbird

Save it as a file first, copy and paste. More info

Categories
Rest

Headers sent but not received by Application, Shopify and Restful API’s

I was tasked with creating a service (app) that would interact with the ShopifyAPI. To create the service the flow would be: Authenticate (Oauth) Register the Service with callback url Return relevant data when Shopify makes the external call (webhook) This is the first time I had worked with Oauth and a Restful API. What […]