Source Allies Logo

Blog Insights

  • Woman in suit sits with resume in-hand

    10 Tips to Prepare for an Interview

    In nearly a decade of experience in recruitment, I’ve been fortunate to work with several adept hiring managers and skilled technical people. Working with these people has provided me the opportunity to gain various insights into the interview process from both parties as interviewer and interviewee. The focus of this...
  • Two men sawing wood on home improvement project

    Can You Use Agile Techniques with Non-Software Projects?

    As an Agile coach, I am always reflecting on my experiences and looking for ways to help others improve. Recently I hired a contractor to complete a home improvement project. It didn't go very well. Let me share what went wrong and how I think using Agile techniques would have...
  • Passengers riding on rollercoaster

    What Did You Do This Summer?

    As I head back to school at Northwestern this fall, I am sure I will hear, “What did you do this summer?” 100 times. My response will be "Well, let me tell you about my experience as an apprentice at Source Allies." From day one, myself and four other apprentices were...
  • culture icon

    Introduction to Pair Programming - Infographic

    In our previous blog post, Pair Programming 101, we outlined the roles and responsibilities of pair programming. We also discussed the rotating roles, how to pair in different environments and the pitfalls. Since collaboration is in our DNA, we decided to take this topic one step further by creating an infographic....
  • Teammates having discussion around desk with laptops

    Giving Back Through #dsmHack

    This time of the year I get truly inspired by the Des Moines technology community. Blown away actually. Did you know that over the last 3 years more than 255 technology professionals donated over $494,000 of in-kind services to area nonprofits? Yep! Right here in our community. This is a community that comes...
  • Woman looking at code on computer

    Build a RESTful Service with .NET Core

    Build an API backend for your application using the newest version of .NET that can be developed anywhere and run everywhere. This tutorial walks through the process to build a production-ready service to perform CRUD operations on a "Pokemon." Download and Install the .NET Core SDK from https://www.microsoft.com/net/core. If you are...
  • Teammates smiling and having discussion

    7 Ways To Go Beyond Your Agile Process

    Now that Agile has become mainstream, teams are looking to go beyond their Agile process to find ways to improve. There has even been recent use of the term "Antifr-Agile", where process is secondary to product validation and customer learning (AgileDayChicago, 2016). Here are 7 ways that your team can...
  • Teammates talking at desk with laptop

    The Day-to-Day Proof of Concept

    In the software world, there are often new technologies coming to market, new fields to explore, new techniques to use, etc. Filtering through these in itself can be a challenge. Deciding when to move forward with one in practical applications can be even harder. Many times as developers, we will...
  • community icon

    Coming Soon: TechCamp2016

    Source Allies is proud to be involved in many charitable endeavors such as dsmHack, Hyperstream and Tech Journey. Tech Journey is a 501c(3) non-profit founded in 2013 by my friend Tony Kioko and my teammate David Kessler. Tech Journey was created to inspire youth with limited resources in Des Moines...
  • Teammate points at code while other teammate listens

    TypeScript: a Superset of JavaScript

    class Car { numberOfWheels: number; color: string; } function describeCar(car : Car){ return "Number of Wheels: " + car.numberOfWheels + " Color: " + car.color; } var car = {numberOfWheels: 4, color: "Red"}; document.body.innerHTML = describeCar(car); That’s...