Upgrade Wamp Server to PHP 7

We recently upgraded our development and production servers to PHP 7. We develop locally using Wamp Server so we needed to install PHP 7 on our computers as well. After digging around and some trial and errors I found the youtube video below. Install Microsoft Packages Install both of the following packages from Microsoft https://www.microsoft.com/en-us/download/details.aspx?id=48145 […]


Using Google Fonts for web.

Google fonts are a great free resource for web designers. Using them however, wasn’t straight forward for me at first. I’ve created a quick step by step guide for new web designers to use as reference. Enjoy!   How to run a google font on a site. First, go to https://www.google.com/fonts and select the fonts you […]


FTP via Windows Explorer

1 – Go to Start > Computer or use the shortcut Windows Key + E to start Windows Explorer. 2 – Type ftp://yourdomain.com into the top address bar. 3 – Input the full username and password for the ftp account and click Log On. 4 – You now have an open FTP connection. You can […]


JQuery Multi Email Validator

Used JQuery to create a custom email validator. Problem: A single text-box which allows users to type in multiple email addresses. Example: test1@somedomain.com, testA@somedomain.org https://github.com/RaviRamDhali/programming-procedure/blob/master/Snippets/JavaScript/JQuery/emails-array-validator    


API Employment Tax Careers examples

API Employment Tax Careers examples / instructions Get all jobs https://api.employmenttax.com/jobs/{APIKey} https://api.employmenttax.com/jobs/e49f639223e8407583f95d1dd8867de0 Return: { “GUID”: “64406b3e-3e5c-4da1-a543-856fe6d4a72d”, “Title”: “Dietary Supervisor”, “FacilityTitle”: “Liberty Terrace H & R”, “PostDate”: “2014-04-10T10:03:33.247”, “ExpiredDate”: “2014-05-10T10:03:33.247”, “FacilityState”: “MO”, “FacilityCode”: “S290C”, “FacilityCodeID”: 57009 }, (more…………) ———————————————————————– Get jobs by facility (filter by facility) https://api.employmenttax.com/jobs/{APIKey}/{FacilityCodeID} https://api.employmenttax.com/jobs/e49f639223e8407583f95d1dd8867de0/57009 RETURN: { “GUID”: “979cb022-a109-4e28-aa95-fb6580892739”, “Title”: “Dietary Cook”, “FacilityTitle”: […]