Monday, January 7, 2019

The Education of Software Developers

When I first entered the ‘professional workforce’ years ago as a software developer, it was not a requirement to have a 4 year degree to be able to get a job. Several things have changed along the way that have made it more difficult for high school students to get ‘formal educational’ training and to then be able to go out and successfully apply for and land a software development job. I don’t believe all of these were good things.

  1. Many high schools that used to teach computer science (programming courses) stopped doing so.
  2. State educational departments made rules that disallowed many teachers who had been teaching programming from teaching those classes at high schools
  3. State educational departments made rules that disallowed many working professionals from teaching computer science at community colleges

Combined, these rules limited the ability for students to explore software development as a profession and limited the ways in which students could get formal education on how to become a software developer.

On the plus side, several things have happened that have made it easier for young students to explore software development. If only these things would have been around when I was a kid:

  1. The internet … boom!
  2. Open source development tools – languages, compilers, frameworks, editors, IDEs, test automation frameworks
  3. On-Line tutorials
  4. On-Line college level programming courses
  5. On-Line help forums
  6. GIT – online source control and sharing of code
  7. Bootcamps teaching programming (primarily Web and Java)
  8. Scratch online programming educational tool for students in K-8 – developed by MIT Media Lab
  9. Lego Mindstorm competitions

The problem, we don’t talk about the learning opportunities early enough in school to attract students to the idea that they can become software developers. In many school districts, students have no insight into any of this until they graduate high school. That is too late. We need to be exposing kids to the idea of software development very early in their educational career – think grade school. Then we need to reinforce those opportunities with additional educational opportunities thru middle school and high school. The goal should be to allow those interested in pursuing this to potentially get out of high school and find entry level software development roles. Not every student would be able to do this, some will need additional education, or may want to pursue additional education to perform within specialized areas – artificial intelligence, data analytics, etc.

I would also argue that we need to rearrange graduation requirements at the high school level – computer science classes should be counted as part of the core curriculum, either as language classes replacing Spanish, French, German, etc., or as math and science classes. Additionally, every high school should be offering computer science classes – either locally or thru remote class arrangements with the nearest community college. I know of high schools teaching Java, C++, C#, and networking (providing CISCO certifications at the end of the class). These kids are old enough to understand these concepts and get a jump start on their post high school education or prepare themselves for direct entry into the workforce. There is no reason not to provide these learning opportunities and have students work ready for entry level programming positions by the end of high school.

Can it be done? Yes, even with the constraints that were in place when I was a kid – no internet, no open source software, no PC’s, I was able to learn enough that I was doing contract programming by the time I was in high school. I personally have hired kids that were graduating from high school that showed they had the chops and the passion to be a developer. Does it take a little extra hand holding? Yep – it sure does, but it’s worth it.

I’m not trying to devalue a college education. There are reasons to pursue a 4 year degree, but we also must be cognizant of the challenges we face today as employers:

  1. There is currently a shortage of skilled software developers that will only get worse as the baby boomers retire – some sites are reporting a shortage of at least 220,000 software developers in the US.
  2. Currently colleges are graduating approximately 30,000 computer science majors each year.
  3. Unemployment for folks in the software development role is currently running around 1.9% (mid 2018 stat)

We need to think outside the box on what we are doing and how we are making this career path accessible to young students. The big boys on the block are starting to change their hiring methods – no longer requiring degrees. 



Be nimble, look for ways to help out your local schools, find ways to let kids explore opportunities in software development. Encourage your kids to go online and find coding learning opportunities. If we don’t figure it out, we are going to be at a disadvantage as we attempt to find bodies to fill the jobs that we need to be successful.

If you'd like more information on my background: LinkedIn Profile

Wednesday, December 5, 2018

Our Future in Software Development

My profession has changed significantly over the years. I entered this profession back when I was a teen – doing contract jobs for companies near where I lived. Mind you, during that time, the internet did not exist and contracting meant going on-site to the company that needed my services and actually working on their equipment. There was no PC being used in business back then – the Apple II and the TRS-80 were state of the art for enthusiasts, but rarely used in business. Even if a company did have an Apple II, it was limited to single station processing as there was no such thing as a network, wired or wireless. I personally never witnessed anyone using a TRS-80 for business. I’m not saying it didn’t happen, I just never witnessed it.

Yep, we were carving symbols out on rocks!

I still remember the day a friend of mine got an Apple II computer. We were stunned that he had this in his house and was able to create programs in BASIC and store them to a floppy disk. Not only that, but he create a program that he could run to actually open and close the shades in his bedroom. How cool! Another buddy of mine had a TRS-80 and the storage system on his computer was a cassette drive – for those that don’t remember, this was a painfully slow way to load data/programs into memory. Additionally, the TRS-80 regularly lost information on the cassette tapes. It was not uncommon that you had to store something on 3 or more different cassettes to actually ensure that you had a copy that worked.

Today, I wear more computer power on my wrist then what was available on the mini-computers that I was programming back in the day. Seriously, my Apple Watch 3 has 768MB of RAM and 16GB of storage. The S2 processor on the Apple Watch 3 runs at 780 Mhz. As a reference the IBM 5110, which was the first computer that I professionally programmed on, had 32K RAM (could be expanded to 64K), with two 1.2Mb floppy drives and a processor that ran at 1.9Mhz. The IBM 5110 had a retail price of $10-20k depending on options, it had a 5 inch black and white screen (16 lines of 64 characters) and weighed over 40 pounds. And yet, somehow we made things work!



My how times have changed!

One of the first professional programs that I wrote managed a customer list for a business using the IBM 5110. The customer information was spread out over multiple 8” floppy disks (side note: I still have copies of the original programs and data on the 8” floppies – not sure I could even find the equipment to read them at this point). During processing of the list, the computer would prompt you to change the floppy disks so that it could continue processing the data. It was clumsy to say the least and meant that someone had to babysit the programs when they were running, changing disks back and forth as needed. And to complicate matters further, there was no such thing as a database – your data was written to fixed length ASCII files and you had to manually read/write and manipulate the data off the floppy disks. All those fancy things that SQL does for you in retrieving, manipulating, sorting, summarizing and managing data, had to be done by hand. I remember spending huge chunks of time writing generic BASIC PROCs to handle common functions that can now be done with a single line of SQL.

Creating the programs was interesting to say the least – there was no internet to look things up or to turn to when you needed help. You pulled out the programming manuals from IBM and you were on your own to plow thru the manuals and piece information together. The IBM 5110 could be programmed either in APL or BASIC – you literally had to flip a switch on the front of the computer to tell it whether the programs you were running were written in APL or BASIC. I wrote the programs in BASIC and they were not structured – lots of GOTO and load PROC statements. I think back on how I created those programs now and shivers run up and down my spine. But, that was just the way it was done. That was cutting edge back then – remember, the IBM 5110 was the precursor to the IBM PC.

If you want a blast from the past, check out the IBM Reference Manual for creating BASIC programs on the IBM 5110: http://www.bitsavers.org/pdf/ibm/5110/SA21-9308-0_IBM_5110_BASIC_Reference_Manual_Jan78.pdf

Today, I don’t program during the day. My role is different, and that’s ok. I’m leading 120+ team members, ranging from our Enterprise Architect and Tech Leads, to Software Engineers, to Quality Assurance Analysts and Test Automation Teams. So my coding is limited to my playing around at night to keep my skillset relevant and to ensure that I can still engage in technical conversations with my teams. Occasionally, I will do some volunteer work – coding where I can make a difference for a non-profit or helping out when a business owned within my family needs some coding done.

Lately, I’ve been creating an application using Ruby on Rails with the backend database running on MySQL. What a leap from the old days! Ruby, used correctly, is a dynamic, interpreted, object oriented programming language. The addition of Rails provides a full Model-View-Controller framework that can be used to quickly build sophisticated web applications. It provides the underlying framework for accessing various databases, providing the web services layer and generating the web pages for the application. What used to take me hours or days to accomplish writing out programs on the IBM 5110 I can now do in a matter of minutes. I spend a few minutes describing an underlying table, then I tell Rails to generate the scaffolding around that table to create a base controller and view that I can then tweak that controls all of the standard Create-Read-Update-Delete (CRUD) activity. The screens generated are not pretty, but they get the job done and I can then go back in and tweak them to give them the look and feel needed by the app. I can also tweak the controller to add additional business logic where it is required to meet the needs of the business.

I’ve also been playing around with a personal application I’m writing for the iPhone and Apple Watch. I’m using Swift for that particular effort. I’m conflicted here, I love Swift, but I absolutely detest the Apple tool to create the UI/UX. The tool included in Apples development environment is not intuitive and is over complicated. I consistently get that feedback from other developers that I talk to. They love Swift, but can’t stand the way that you have to create the UI/UX for an app. In fact, I have to say that my distaste for the UI/UX development interface has caused me to walk away from the app several times, I do eventually come back to it because I really want to make this app work, but I’m looking forward to third party tools that may allow me to replace the Apple UI/UX builder. (Yesterday, Google announced that Vesion 1.0 of Flutter is now available, providing a write once deploy to both Android/iOS tool – this may be my option, although the Watch interface will still most likely have to be done in Swift.)

Think about all of this – the first programs I wrote back in the day were massive, thousands of lines of code written in a messy BASIC with undecipherable GOTO or LOAD proc commands sprinkled liberally thru the code. Additionally, variable names were limited in size and were generally cryptic – where today, you can have variable names that are very descriptive and don’t leave the next person touching the code guessing as to what a variable is being used for in the program.

Time has allowed us to mature how we approach software development. We now have languages, frameworks, tools and integrated development environments that allow us to create code that is easier to read, is more elegant in the way that it handles data and processing and also is easier for the next person to pick up, understand and modify. We have developed tools to share code that is being developed and that allows groups of distributed developers to easily understand what has changed since the last time they pulled a copy of the code – I remember sharing code by exchanging floppy disks, yikes! We have backend data storage SQL/NoSQL that allow developers to store millions of records and quickly access, manipulate and change the data. We have developed new languages that allow us to do things with a few lines of code that used to take pages of code to accomplish. The code is now written using Object Oriented models that allow us to more accurately describe the things that an application is manipulating and gives developers a better way to create and manipulate those things. We have moved to development paradigms that make us more productive – test driven development, WAGILE (Agile-Waterfall Hybrid), Agile. We have introduced tools that allow developers in disparate locations to interact and solve problems in real time – SLACK anyone?

As a profession we need to continue to challenge ourselves in how we create software. Ultimately, it is about solving real problems for people. I don’t necessarily care how sexy a new tool/language/framework is, if it doesn’t allow me to streamline how I design, code, test and deliver the solution to the customer, I have a tough time justifying using it either personally or within the teams I am lucky enough to lead.

The current state of software development has advanced significantly from the late 1970’s and early 1980’s. That said, we can’t afford to stand still, we must understand the new waves that are heading our way. How will machine learning and artificial intelligence allow us to change the way we design, develop, test and deliver software. Will AI augment or replace roles within our teams? What pressures will the cloud continue to put on us? Today you can spin up a company without having to purchase the underlying hardware to deliver your services – you can use AWS and do a pay as you go based on the actual usage of your application. Where does it make sense to put infrastructure in the cloud? Has your organization begun using containers to deliver applications and services? How is your organization dealing with the pressure to deliver features faster – sprints anyone?

Last year, over Christmas, my son wanted to explore Artificial Intelligence. So my wife and I purchased several books on the topic. After opening these on Christmas, he holed up in his room one day and came down proclaiming at the end of the evening that he had built his first AI engine to recognize numbers in images. Uhm, what? Over the summer, before entering his first year of college, he took on-line courses to further his knowledge of machine learning. He as able to do all of this by reading some books, going on-line to do research and get questions answered and then taking some on-line courses to push himself. He is much further along the curve than I was, and has access to tools that I could only dream of. His generation will be the ones leading the wave of new paradigms into the companies we all work for today. What change will they bring with them and are we preparing ourselves?

I’m excited to see where the future takes us as a profession and how it will change what we do as developers. One of my challenges will continue to be to identify how we integrate these new ‘things’ into the legacy applications we support (and, yes, that means all that fancy code you are writing right now will be legacy code that has to be retrofit tomorrow)! 

Welcome to the future …

If you'd like more information on my background: LinkedIn Profile

Wednesday, November 21, 2018

Follow The Data ... Software Design, Development and Testing

‘Follow the data!’ I have preached this for years. If you truly want to be a great developer, you learn the data flows!

As a software engineer, we want to be recognized as exceptional in delivering code that functionally delivers against the user needs and doesn’t introduce performance issues or defects into the production environment. We want our code to elegantly solve the problem that has been described and delights the user. If the code that we develop is a smaller slice of an overall application or platform, we want to ensure that our integration points are rock solid, that we are doing nothing to impact the ability of the larger application or platform to successfully process and perform the function as it was designed.

It is critical that as a software development professional, we teach ourselves how data flows thru the system. How does the data flow into the application function that we are developing, how does the data get manipulated by the function we are creating and what happens to the data when it leaves our function. This means breaking the data down into its discreet elements and understanding how they are manipulated ahead of us, what we are going to do with them as we execute the new or changed functionality and what happens after it leaves us.

Let’s take a small scenarios (and I’m oversimplifying the scenario to make the point) … a Cardholder walks up to an ATM and inserts their card into the machine to request a $100 withdrawl. Behind the scenes the machine captures information off of the card to send to the financial institutions Processor. The Processor receives the information off the card and checks the balance in the bank account and spits out the $100 to the Cardholder.  Mission accomplished – right? Nope!

The ATM in the above scenario is not owned by the financial institution where the Cardholder has their money deposited. So, somehow we have to settle the money between the two financial institutions. The withdrawl is one distinct component of the overall transaction. We need to follow the data from the original transaction to the end of the day when the money actually moves between the financial institution that dispensed the $100 from the ATM they owned and the financial institution that holds the Cardholders funds. Whew, done! Not exactly.

At the end of the month, the Processor must bill for the services provided to the financial institution that holds the Cardholders funds. There are specific transaction fees that get charged based on volume.
Now, let’s think about the software engineer that works for the Processor. Not only do they have to see the data in real-time and make authorization decisions, but they need to move the money at the end of the day and ensure that the financial institution is billed properly at the end of the month.

To follow the data, the software engineer needs to understand what data is read by the card reader at the ATM and is transmitted into the data center for authorization. They must understand how to match the card data up to the financial institution cardholders account to check balances, they must understand the authorization cycle and how the individual data elements in the card data are used to detect fraud and either accept or decline the transaction, they must understand how that data moves thru the system and is stored to ensure that the money moves between financial institutions at the end of the day, and they must understand how the data is used at the end of the month to properly bill the financial institution based on the type of transaction and other factors.

The software engineer cannot be sure that the functionality that they changed is working properly until they’ve tested the data all the way thru the transactions lifecycle to ensure that it settled at the end of the day and that the financial institution was billed properly at the end of the month. Testing should be designed with the full data flow in mind, not just the partial discreet transaction where the money was dispersed to the Cardholder. Again, I’ve oversimplified, but this scenario does describe the breadth of understanding that a developer must have before they can claim success.

Now add in some side scenarios – let’s say the data is used in web and mobile applications where the Cardholder can view transaction history data and initiate fraud claims. Those data usage scenarios introduce additional data flows that the software engineer must understand and validate before they can claim success.

Understanding how the data flows, where it is stored, how it gets manipulated prior to, during and after the function you are working on, is critical to understanding whether you actually can design, develop, test and deliver the functionality correctly. Knowing how to code is the simple part, understanding how the data moves and is manipulated is the hard part.

If you'd like more information on my background: LinkedIn Profile

Thursday, November 15, 2018

Code Reviews - A Must For Any Team!


As professional coders, we should be concerned about the cost to remediate ‘bad requirements’ or ‘defects introduced into the code’ thru the development process. Over the years studies have shown that there is a significant increase in cost to remediate these code issues the deeper into the development lifecycle that you go. One of the most recent published studies completed by NASA broke it down as follows:

Phase
Cost to
Remediate
Requirements
1x
Design
5x - 7x
Build
10x - 26x
Testing
50x - 177x
Production
100x - 1000x

In other words, if a bad requirement is not caught before design, by the time it makes it all the way into the production environment, there is a cost of 100x to 1000x the original cost to remediate the requirement. Yikes! Now, if a developer makes an error in building the feature/function described in the requirements or introduces a defect into the code unrelated to the feature/function being built, the cost to remediate that when found in production would be 10x to 100x if it was caught and remediated during the build process.

From a pride perspective, no coder wants to be seen as the one that introduced the bad code or broke current functionality. Beyond the pride factor, though, there are real hard costs being spent by organizations to remediate these issues, as well as the reputational impact with customers.

There are things that developers can do to lower the risk of introducing defects into the code base and to limit the exposure of the additional costs needed to remediate these bugs. Code Reviews are a proven paradigm that developers can use to catch these issues early and to remediate them during the build process.

Code Reviews: The intentional and systemic check of code by other developers to identify and remediate mistakes or security threats. The practice has repeatedly shown that it can accelerate and streamline the software development process and reduce the number of defects that reach production. In its simplest terms, a code review simply means that the person developing the code shares that code with other developers who review the code to:
  • -        Ensure that team coding standards are followed
  • -        Look for errors that can be remediated.
  • -        Look for ways to ensure the integrity and security stance of the application
  • -        Look for ways to simplify algorithms
  • -        Look for ways to remove code that is not needed

As much as we like to think we aren’t the ones that introduce defects into the code base, we are humans and therefore the code will contain errors – those errors may be small, or they could be significant show stoppers. As professionals, we should acknowledge that fact and look for ways to mitigate these issues early. And that, my friends, is why Code Reviews became a thing!

When Code Reviews are done properly, they will address all of the above items, they will reduce time needed in later stages of the lifecycle, they will deliver hardened code into the production environment, they will reduce ongoing maintenance costs, they will foster communications within the development team, they will provide a means for more experienced engineers to mentor those engineers not as familiar with the code and they will ultimately increase the confidence and trust of the customers using the application. With all the positive impacts that code reviews can have for the developer, the team, the organization and our customers, why wouldn’t we use this well-defined paradigm to improve the quality of what we deliver downstream and ultimately to our customers.

Let’s quick review how this process looks:
  1. Code Submitter (the software engineer changing the code) checks the code into the repository and makes the Code Reviewer(s) aware of the code requesting a review take place.
  2. Code Reviewer opens up the code and begins to check the code:
  3. Does the code do what it is actually supposed to do based on the requirements/user stories?
  4. Looking for obvious defects in the code that might produce errant results.
  5. Does the code adhere to the established coding guidelines that the team uses (there are tools that can automate this)
    1. Code Formatting
    2. Variable Naming Conventions
  6. Is there Automated Test Coverage for the code being reviewed?
    1. Have the tests been written in a way that is easily understood and provides clear results?
    2. Have the tests been written to provide red route/green route testing – is the sample of tests broad enough to fully test the functionality?
  7. Does the code adhere to the security/regulatory guidelines used by the team (OWASP for web)?
  8. Does the code fit into the overall architecture of the application?
  9. Does the code introduce potential performance issues that need to be addressed.
  10. Is the code in the right place, are the services and methods grouped into the right places to easily be found by other developers?
  11. Did the code introduce ‘duplicate functionality’ that should be removed?
  12. Has the code been written in a way that is easily understood?
  13. When the new code fails, do the exception messages provide clear direction on what failed and why?
  14. Reviewing complex algorithms to see if they can be simplified.
  15. Identifying chunks of code that are not needed anymore that should be removed.
  16. Code Reviewer identifies recommended changes to the code that was submitted and documents the changes for the Code Submitter.
  17. Code Reviewer discusses the recommended changes to the code with the Code Submitter in a respectful manner.
  18. Code Submitter makes agreed upon changes to the Code.
  19. Code Submitter circles back to Step 1.
That’s a lot of stuff! But the benefits are huge if done correctly. The beauty, I’ve seen interns and new engineers perform successful code reviews and give feedback to seasoned engineers, just as I’ve seen our most experienced engineers give guidance to our newest team members. This process in itself fosters communication within the team and opens up doors that allows the team as a whole to raise the bar and create high quality code. This becomes the expectation within the team, nobody wants to be seen as the coder that introduced a bug, they all want to be seen as experts in their chosen profession. Additionally, it gets developers talking to each other and opens up opportunities not seen in the code review process where they will begin to discuss challenges in real-time as the code is being created and not wait for the code review process to catch the issue.

I’m not saying that this will catch everything, again, we’re all human. But by using code reviews properly, we enhance our ability to catch issues early and remediate them before they impact our user community and potentially damage our reputation.

If you'd like more information on my background: LinkedIn Profile



Tuesday, November 6, 2018

Students - Getting Noticed By Hiring Managers!

One of the great parts of my role here at SHAZAM is the time that I’m able to take to go out and visit with many of the local middle school, high school and collegiate students interested in careers in technology. My being able to talk about the ins and outs of this industry, how it has kept me engaged over my career and to get feedback from these students lifts me up. I enjoy talking to them about the opportunities that they will have and the changes that they will be able to make along the way. 

Invariably, during these discussions, someone will ask, “but, how do I get noticed?”

Great question, how do you get noticed among the many students graduating and entering the work force. Let me walk thru what I tell students, and by the way, I’ve given this same advice to my youngest son, as he is pursuing a career in technology. This will be focused on software development and test automation.

First Focus on Your Grades: The grades you earn are important for that first professional job as you enter the working world. It is an indicator that you paid attention and took the time to understand the material presented in the classroom and that you were able to translate that into working knowledge on individual and group assignments. While a low grade will not be a disqualifier in the process, it is a barrier that you’ll need to explain. Show me where you went above and beyond on classroom assignments. Did you ever take on an extra project and share it with the class or the instructor?

Programming Experience: Doing your homework is the bare minimum. You’re going to need to explain group projects, your role in those projects, how you overcame conflict in the group and how you got people to work together. If you want a step up on other candidates that your competing with, you should look to do projects outside the classroom. Let me give you some examples:


  • Expand your knowledge. Find a technology that you want to play with and start to learn it. You may not become an expert on it, but it is going to teach you knew concepts and new techniques. Are you interested in big data – show me something that backs up that statement? What about machine learning – instead of just saying you want to learn it, have you taught yourself Python and PyTorch. Even if you haven’t successfully gotten your first engine up and running, what have you learned, what can you show me, what challenges have you encountered?
  • Recreate a game you like. Bring that with you to the interview and talk about the choices you had to make, what you learned from the experience and how it made you better as a developer. My son, one day announced that he was going to recreate the game ‘2048’ on his own and to one up the normal game, he was going to create an AI behind the game that would play it for him. Mind you, this was during his first semester at college, he was taking general education classes and wanted something technical to play with.
  • Build a mobile app. We are all carrying around smart phones. The cost of entry for development is $0 – you can download the software development kits off the internet. A couple of years ago, we were looking to hire some new team members. I remember the hiring manager walking into my office after one of the interviews talking about how they had just completed an interview with a candidate. He walked into the interview pulled out his smart phone and started talking about an app that he had just created. So, this candidate showed he was passionate about coding, that he geeked out along with the best of them and that he could learn new technology. Winner!
  • Stretch Goal – Contribute to an Open Source Project. Find an open source project that you care about, study the code and start submitting changes to correct features that aren’t working correctly. Your changes might not get accepted at first, but you will learn a lot along the way and maybe one day you will have a change submitted that gets accepted.
  • Stretch Goal - Contract Program. Are you good enough that you can actually go out and take on small contracts? Maybe build a web site or a mobile app and get paid for it? This is not for everyone – you better be able to back up your claim as a developer and be able to deliver within the constraints given by the company that your taking on the effort for. There are plenty of web sites out there that allow you to bid on contract jobs.
  • Stretch Goal - Volunteer Programming. Find a non-profit that needs help. These small non-profits in your community typically need help to track donors, track the details of programs they are running. Can you help them out

Use Git: As a student, you have the ability to use Git Education for free and get a bundle of software/tools that will help you as a developer. If you don’t know, Git is a versioning system that allows you to manage changes to your code and allows you to recover code when you break something. Load your assignments into Git, load the projects you created for yourself into Git. Do not share code you created under contract – that is owned by the company that paid you. Use this code repository as a portfolio that you can make available to hiring managers to show them your capabilities. Be prepared to talk about these projects in the interview. Which ones were assigned projects, which ones did you take on just to learn and explore? What choices did you face along the way? How did you resolve issues? How did you test?

Understand Testing: Whether you work in an Agile or Waterfall environment, you need to understand the components of software development and the responsibilities on the person creating the code. I’m over simplifying here, but you should be able to talk thru how you design, how you plan for testing, how you code and how you test. If you don’t understand why you should figure out how you’ll test code before you actually write the code, repeat this step as often as needed. Truly gifted developers understand the need to plan their test strategy and write their tests before they code.

Join your schools Computer Club: Take on an active role in the club. Become an officer, help run events. Has the club sponsored a hacking event? Can the club sponsor a hacking event? Can the club take part in competitions at other schools? Be able to talk about your experiences in the club, what you did with the club how you helped the club meet its mission.

Establish Relationships with your Professors/Instructors: Everyone is going to need to have a set of references when they apply. As an applicant for a job, your ability to identify instructors that you’ve had along the way who will speak positively about your participation in class and with the assigned work is a net positive for you. Remember, people like myself have relationships with many of the local instructors and we’ll ask them about your participation in class, how you worked in collaboration with other students on team projects. Many times, I’ll have instructors send me a note or stop me after I’ve met with their students and they’ll tell me students that I should get in touch with, who are the ones going above and beyond on their assignments, who works well in class and is always paying attention and helping others out.

Research Companies: As a Freshman, start figuring out what kinds of companies you want to work for after you get out of college. Do you want to work for large multi-national companies? Do you want to work for a smaller company? Do you want to live in the country? Do you want to live in a large metro area? Do you want the opportunity to telecommute? Start creating a list of companies that you’re interested in and make sure you look for opportunities to connect with those companies. Follow them on LinkedIn. Regularly visit their web site to see what the company is doing. Follow them in news articles to understand what they are doing. If they have a recruiting department – connect with their recruiters or with people in HR via LinkedIn. Find out thru your research what skills and experiences that they want students to have. As an example, one of the companies that my son eventually wants to work for leans towards hiring students with collegiate research experience.

Attend All Job Fairs: Even as a Freshman in college, you should be going to job fairs to introduce yourself to potential employers. Let them know upfront that you’re a Freshman and understand that you’re probably not eligible for internships, but that you’d like to learn about their company, what they are looking for and ask them how to stand out as an applicant. Connect with corporate recruiters from these job fairs via LinkedIn. Send them a note after the job fair telling them what you heard about their company and what they are looking for and then let the recruiter know that you’ll keep them updated on your progress. Then actually stay in touch as you move thru your educational career.

Use LinkedIn: Do not wait – as a Freshman, create a LinkedIn account. Begin following companies you are interested in. Begin following people at the companies you are interested in. Specifically, follow the companies you are interested in, find managers that might potentially hire you someday, find the recruiters in the company and connect with people in HR. Build these connections so that you can see what they are posting. When you see something posted that you can contribute to in a meaningful way, jump into the conversation. Don’t reply to a post just to reply, be thoughtful and add to the discussion.

I’m not saying every student should hit every one of the above items, but if you are just going to class, doing the bare minimum to get buy on homework, that is not how you’ll get noticed by employers and find internship opportunities, let alone job opportunities when you graduate. If this is going to be your career, take it seriously and invest the time needed to not only tackle your education, but to prepare yourself for when you want to get hired!

If you'd like more information on my background: LinkedIn Profile

Tuesday, October 23, 2018

Communication - Key To Your Success!

I’m a big B-52s fan. Lately I’ve been thinking about communication and thought about lines from one of their songs:

The B-52s: Communicate (Lyrics)

Boy you better communicate
Before it's too late
You better start talking
You better talk
Let loose
Before it causes problems

I look back at the days where I was pounding out code on a daily basis to where I sit today, leading a very talented team of architects, tech leads, development engineers, quality assurance analysts, test automation engineers and certification experts. Along the way, I’ve seen all kinds of challenges.

Here’s a good one from my early days …

I had recently taken a role within the company that I was working for to manage the technology within a specific department, this included not only overseeing the custom code used to manage the operations of the department, but also included purchasing millions of dollars of hardware on an annual basis to handle the growth of the department. Today, everyone takes conference calling for granted, but back then, this was relatively new technology and the company I worked for was providing teleconferencing capabilities for governmental agencies and many large corporations. I was buying conferencing bridges as fast as I could and continuing to customize our conference reservation and management systems. It actually was a pretty fun gig.

So about a year into the job, I get a new boss – a VP that flew into town every couple of weeks. The company I worked for felt that every 6-12 months they needed to shuffle the VPs around to give them exposure across different operational areas within the organization. I had already gone thru 2 different bosses at this point, so getting a 3rd one really didn’t faze me. Up until he arrived.

He walked into my office and said the following: ‘I don’t know what it is you do, I don’t want to know. If you need something, tell me who I need to talk to and what I need to say.’ With that, he walked out of my office back to his office, walked into his office and closed the door. I didn’t see him for the rest of the week and then he flew out of town, not to be seen for another couple of weeks.

Yikes! For about 7 months, I worked for someone that I rarely saw and with whom I rarely ever had a conversation. When he did fly in, he walked thru to his office and closed the door behind him. I was spending money that wasn’t budgeted, but he never even questioned me – granted, we were growing way faster than projected and even with the money I was spending, we were still way ahead on revenue. Still, you would have thought at some point, someone, especially my boss would have questioned the money that was being spent. Conference bridges weren’t cheap and the money needed to be spent to keep up with the call volume growth, but not a single question.

I left that job for a couple of reasons – first, he eventually came to me and told me that he wanted to move me out to the East Coast. I had no warning of this conversation. He just dropped it on me and expected me to jump thru hoops to make it happen. Uhm, no. He had never spent any time with me to understand what my goals where, what was happening in my personal life and where I wanted to go and what I wanted to do. He had never taken time to talk with me about what his goals were for me, where he saw me going and how I fit into the overall picture of where he was headed, what the team was headed and the expectations of the company. Second, I had already been looking at joining up with a couple of friends to begin our own consulting firm. My old boss and his boss. Well, the way he approached me on the move, sealed the deal. Within a month, I was gone and the 3 of us began building a successful consulting firm.

I don’t know if the cards would have been played differently if he had spent more time with me during those 7 months. If I had gotten to know him better and he had sold me on his vision, the overall company vision, I might have reacted differently and ended up out on the East Coast. Hindsight being 20/20, I’m ultimately glad that I stayed in Iowa. I often wonder how many other people this guy lost because he didn’t know how to build relationships and connect with the people who worked for him. I have also never been able to figure out how he managed to become a VP.

Our willingness and ability to communicate can solve the challenges we face on a daily basis. I’m constantly telling people, get out of your chair, go find the person you need and have a discussion. Don’t wait! If they’re not in the same building, ping them via our IM tool or video conference them in for a conversation. Take 15 minutes today, will save us hours/days/weeks down the road vs letting something get thru and then having to back up and do a total redesign.

If you'd like more information on my background: LinkedIn Profile

Tuesday, October 16, 2018

Bosses - One Flew Over The Cuckoo's Nest!

Bosses can be interesting people – I say that tongue in cheek knowing that this is a role I’ve now played for the vast majority of my career. Some bosses teach you what to do, other bosses teach you what not to do. This memory is going to reflect on things I learned not to do after one particularly interesting boss.

In one of my roles I ended up working for a great team. I really mean this, I loved the people and spent a lot of time with them outside of work. Anything from getting together for drinks, to grilling out to playing on rec sports teams. We all enjoyed being around each other. We celebrated life’s successes with each other and we were there for each other in the difficult moments of life. These were great people, they really did care and they weren’t afraid to show it.

Due to nature of our personal relationships, it made work a lot easier. We were all comfortable with each other and it allowed us to not only get a lot of work done together, but to have fun while we were doing it. Practical jokes were played in and out of the office, nothing disruptive, but enough to let the target know that they had been had! I got stung more than once by these friends, and we still laugh about it to this day. I don’t really recall there being a lot of formality in the office, you could approach anyone with an issue and count on them to help you push thru it and find an answer. There are many times I’ve thought about being back with that group of friends/team mates. Everyone, except ‘The boss’.

‘The boss’ wasn’t my official boss, but effectively ran the place. The owner lived out of town and ‘The boss’ had official free reign across the entire organization. ‘The boss’ was also disruptive! Promises were made to customers without ever checking internally to see if it could be done or when it could be done. Decisions were made without any input and without any reason, sometimes reversing the decisions that were made the prior week. ‘The boss’ would play people in the office off against each other. While I was not an official direct report of ‘The boss’, I ended up in many meetings to discuss customer issues, project issues and what was being done to resolve said issues.

These meetings typically devolved into shouting matches, with the end result being who could yell the loudest, the longest and wear the other side down. Or ‘The boss’ would make demeaning statements about your ability to do your job’ To say it was stressful would be an understatement. You would walk out of some of those meetings completely mentally and physically worn out. You never knew when these meetings would occur, your day could be going well and boom – you get called into a meeting with ‘The boss’. There goes the day!

You always knew when ‘The boss’ was back in the office, suddenly office doors closed and the attitudes of everyone changed to sullen and silent. This was no way live and work.

After a couple of years of this insanity, I decided that it was time to move on, working in that environment was not how I wanted to live my life. While I loved the people, ‘The boss’ made it untenable. It was weird, I was on a business trip with a peer taking phone interviews and trying to figure out how to ‘hide it’ so that he wouldn’t know what I was doing. It was toward the end of the trip when we both figured out that each of us were doing the same thing.

While I was glad to get out of that experience, I also look back and realize what I gained out of the experience. I learned a lot of things that I tucked away as examples of how not to treat people:


  1. It is not ok to yell at people in the work place.
  2. It is not ok to promise customers stuff when you haven’t reviewed with your internal teams and have no clue what you are promising.
  3. It is not ok to schedule multi-hour meetings with the express purpose of just using the meeting to wear your opponents down just because you can.
  4. It is not ok to jerk your team around with ping-pong decisions that can’t be explained.
  5. It is not ok to belittle people in front of their peers.


I probably learned a lot more during that experience than I’m remembering at this moment in time. I left because it was the right thing for me to do. I miss the daily interaction with the friends I made, but do not miss the insanity of the situation.

I will forever remember the day I got word that I was selected for one of the jobs I’d been applying and interviewing for, that finally would allow me to get out of the situation – I had been in a meeting that lasted the entire day. ‘The boss’ was in fine form and it was a true death match between development and ‘The boss’. I didn’t say much the entire day as the head of development took the brunt of the heat that washed across the room. That said, the end of the day hit and I was completely spent. I drove home wondering how much more I was going to be able to take.

When I arrived home, my wife asked me what was going on and I started to describe the day – in brutal detail. Part way thru the conversation, the phone rang, I looked at my wife and told her that it was probably ‘The boss’ and to tell her I wasn’t home. My wife answered the phone and told me that I needed to take the call as it was one of the companies I’d been interviewing with. I sat on the phone as the job was offered to me and didn’t hesitate to say yes when asked if I wanted the job. The funny thing, when I handed in my resignation, ‘The boss’ tried to get me to stay. Didn’t happen!

What have you learned from your bosses along the way?

If you'd like more information on my background: LinkedIn Profile