Source Allies Logo

Blog Insights

  • 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...
  • 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...
  • 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...
  • infrastructure icon

    Microservices in Practice: Challenges

    In a previous article we discussed some of the positive characteristics of microservices that we've found while implementing them in a production setting. Two of the primary benefits we discussed are the architectural agility and enforcement of api boundaries. While you may find those and many more benefits from using microservices, you will also find that the positives don't...
  • development icon

    Microservices in Practice: The Positive

    A recent topic grabbing the stage in the software community is the use of Microservice Architectures. Microservice architectures are often sold as a great way to enhance a project's agility over a standard, monolithic architecture. While this can certainly be the case, and there are indeed many benefits from using microservices, the...
  • development icon

    Java 8: Parallel vs Sequential Stream Comparison

    Motivated by the introduction of Lambdas in Java 8, I wrote a couple of examples to see how difficult it would be to follow a functional programming paradigm in real production code. I will demonstrate using some features from Java 8 with a simple and fun example. The application basically gets the...
  • development icon

    6 Concerns Before Using an Open Source Library

    During my career, I've worked at various organizations that had different stances toward open source frameworks and tools. Some of these organizations absolutely did not want  anything open source near their code base. Others had a small set of "blessed" open source frameworks we were allowed to use. Some of...
  • development icon

    Java: An Oriented Object Language

    Java is an object oriented (OO) language. It internally embraces the best practices commonly accepted in OO programming. During this article we will be addressing two of the key concepts of OOP, Encapsulation and Inheritance. So let’s get started. What is the core defining concept of any OO language? The creation...
  • development icon

    Neatly Clean Up Your CSS Layout

    Recently I started to use a more minimally-responsive CSS framework called Neat, since I was unhappy with the total offerings of so many others. This article will explain how to start using the basics of Neat in order to better understand how the framework works before using it in projects. Before...
  • development icon

    How We Improved Our Productivity 500% for $800

    I convinced a partner to upgrade the computers we were using for software development. Maybe this article will help you convince your manager to do the same! The cost for this improvement was $2,500 - $1,700 = $800. If you assume a developer has a $75,000 salary, it would take...