Downloads
Letters
NHA CommendationCustomer Review
Another Positive Review
Managerial Letter of Reference
Software
My GithubCheck Witness
Warranty Lookup
Cyclic Redundancy Check
Fraction Class
Commendations and Letters of Reference
Network Health Assessment
As Thrive Networks is a consulting company, they are often asked to come in an audit companies' systems and networks and highlight any weak spots. While this is not my primary duty, I have been needed in a few cases to assist with these assessments due to staff shortages. On the left, you will find an E-mail from the manager of the consulting services team commending me on a well done assessment which generated $8650 dollars of revenue for Thrive Networks.Customer Reviews
While at F5, I frequently recieved perfect 10 customer surveys and maintained close to a 10/10 average. In fact, I never experienced a single quarter with less than an average of 9/10. These are E-mails from two different customers who were very happy with their service..
Managerial Letter of Reference
Chris Deehan, one of my Managers at F5 was kind enough to provide me with a letter of reference upon my departure.
Programming Portfolio
PHP/Web
Check Witness
While working at F5, when an engineer was of shift customers would often update their tickets. In the event of an extended absence, this could become an issue because no one responds to the customer. To solve this problem, I wrote a program which would automatically check our workforce management system and then set up E-mail notifications in our E-mail notification system which would be sent to our ticketing routing team. This allowed them to watch for activity on cases that were assigned to an absent Engineer and re-assign them to an engineer who was on shift if necessary. This project is coded in node.js, Non-blocking (eg, doesn't pause for I/O operations, so is very event-driven)) server-side jQuery based language.
Warranty Lookup Utility
Thrive Networks utilizes tools from managed services products such as Kaseya and N-able. Thrive is able to utilize these tools to obtain the serial number and manufacturer of workstations and servers that are monitored using these tools and then transmits them to a Warranty Lookup utility via the SOAP protocol. This php program accepts data in SOAP format using the open source NuSOAP library by NuSphere.
This utility then goes the manufacturer's web site and queries their warranty lookup form using page scraping techniques, formats the data in a standard format and then returns the data using the SOAP protocol.
You can download a copy of the source code on the left. Unfortunately, most of these websites have changed their layouts so the warranty scrapes no longer work and with PHP5 the split() function has been depricated in favor of explode(), but this is still a good example of my php programming skill.
C++
Cyclic Redundancy Check
When data is transmitted across a network, there can often be times in which there are problems at the physical layer (E.g.: electro-magnetic interference, Locked up circuitry, Etc.) Therefore, networking equipment needs a way to verify that the data recieved matches the data transmitted. This is traditionally done using an algorithm called a Cyclic Redundancy Check.
This algorithm works by dividing the data by a polynomial and appending the remainder to a footer of the frame/packet. The data is then transmitted and the recipient divides the data using again using the same polynomial. If the remainder is 0, then the statistical likelihood that the packet is unmodified is extremely high (>99.9%). The larger the polynomial (32 bits, 64 bits, etc.) the higher the statistical likelihood that the packet is un-modified.
This is done in a binary system by taking the powers in the polynomial, converting them into a binary number and XORing the resulting number with the data stream if the leading digit is a 1. If the leading digit in the data stream is a 0, then we XOR the data with 0. We then append the remainder of the division to the packet/frame footer.
On the left, you will find my implementation of a CRC. This was a problem assigned as a problem in my 400 level telecommunications class (I received an A) and accordingly, you will find 3 functions in the sample code: 1 to generate the hash, 1 to verify the data and 1 to randomly inject errors into the data stream during "transmission" as required by the professor in the assignment.In the zip file, you will find the source code and an EXE that can be run to see the code in action.
Fraction Class
This C++ class can be included as a header to any program in which you would like to be able manage fractions. The data is stored in this class as a numerator and a denominator. The class will automatically calculate the greatest common denominator and store the fraction in a reduced format (therefore 2/4ths automatically becomes 1/2, etc.) and standard arithmatic operators are overloaded so that fractions can be added, divided subtracted or multiplied. Furthermore, there are functions which will coerce the fraction into various datatypes for times in which you need to deal with the decimal value of the fraction.
You will find the source code for this program on the left and will find a driver for this program, a header file containing the class and an EXE with an implemention of the header for demonstrative purposes
