tools that work for you…
“We engineer software to reform how you accomplish everyday tasks while maintaining your privacy.”
~ Highlights ~
JobTrac.io
In today’s job application culture, most job applications are filed online with the major job search companies like Linkedin, Monster, Indeed, etc… One of the challenges that applicants can face is keeping track of all of the job applications that they submit across these websites. This is where JobTrac.io comes in. JobTrac is a free tool that is designed to help you manage your online job applications in one centralized place.
Your Privacy
Trac your life without worrying about who is tracking you!
~ Posts ~
SOLID – Liskov Substitution Principle
This is the first post in a series on the SOLID design principles for object oriented programming. The acronym SOLID represents five principles that are considered best practice for designing object oriented solutions. Robert Martin is credited...
Code Tests – Alphanumeric Filter Sort Problem
Here is another post about a recent code test that I also struggled with. This was a timed take home test in which I had 60 minutes to solve this problem. I was unsuccessful in completing this test in the time frame in part due to some issues I had getting used to the...
Adapter – Using Incompatible Interfaces
This is the third post in our Software Design Pattern series. The Design Pattern that we will be looking at today is called the Adapter Pattern. It is a member of the Structural Patterns as defined in the GOF Design Pattern book. The Adapter Pattern allows a...
Code Tests – Airplane Itinerary Problem
This post is about a code test that I recently encountered and struggled to solve during the interview. The problem isn’t actually that difficult but when under the pressure of a paired coding test, I sometimes freeze up. What I typically do when I struggle to solve...
Automate Ubuntu System Updates
Security is such an important thing these days and one of the best ways that you can protect yourself is by ensuring that your system is always up to date. A large part of updates that you apply to your system is security patches. This post is a “quick...
Observer – A Tool for State Management
This is the second in our Software Design Pattern series of posts and today we are going to take a look at the Observer pattern. The formal intent of the Observer Pattern as defined in the GOF Design Pattern book is, “Define a one-to-many...