Address
Whiteland, IN 46184

Work Hours
Monday to Friday: 9AM - 5PM
Weekend: 1PM - 3PM

Shootfish

Shootfish

Recovering from project setbacks

Setbacks are a normal part of the path to success. Unless your role is to serve as a mindless cog in a wheel of predictable work, you will encounter setbacks – many of them – throughout your career. Even the…

Algorithm sorting

This is a continuation of Algorithms Sorting, in this write up we will introduce our last basic sorting algorithm which is the insertion sort. Insertion Sort The insertion sort builds up the sort by gradually creating a larger left portion…

AUTOMATION IN PROJECT MANAGEMENT

Project management is always challenging, in an increasingly competitive environment where customers are constantly demanding for deliveries, less time and efficiency of operations, automation has been an ally of companies. At its core, automation is about solving a problem and…

Data Structures Introduction

Data structures are collections of values, the relationships among them, and the functions or operations that can be applied to the data. The most common data structure that people are most familiar with is the array. It is a data…

Hybrid vs Native: Making a choice

I have met several developers and startups out there interested in developing an app and one somewhat tricky decision they find themselves making is usually on the technology to be employed in the development of their project. The fact that…

Automation in Project Management

Project management is always challenging, in an increasingly competitive environment where customers are constantly demanding for deliveries, less time and efficiency of operations, automation has been an ally of companies. At its core, automation is about solving a problem and…

Algorithms (Sort)

What is Sorting? Sorting is the process of rearranging the items in a collection (e.g. an array) so that the items are in some kind of order. Examples Sorting numbers from smallest to largest Sorting names alphabetically Sorting movies based…

Algorithms (Search)

WE BEGIN Before you begin this article do make sure you have read the article on BigO notation cause this takes some things from there, this article assumes you have read the BigO Notation article. This Algorithm series will be…