Practices Articles

We’re curious people by nature. And we love to teach others what we’ve learned. So explore our blog to gain fresh insights from our expertise in areas ranging from culture to AI.

SEP Wins TechPoint’s 2024 Innovation Service Partner of the Year Mira Award

SEP Recognized as Indiana’s Top Innovation Service Partner, Winning TechPoint’s Prestigious Mira Award Westfield, Indiana - SEP has been named the Innovation Service Partner of the Year by TechPoint at the 25th annual Mira Awards. The Mira Awards, Indiana’s largest…
Read Full Post

What’s the Deal with Kanban?

“What’s the Deal with Kanban?” is presented by Chris Shinkle, Director of Innovation at Software Engineering Professionals (SEP).
Read Full Post

Personal Meditations on Software

I’ve been reading Marcus Aurelius’ Meditations. I haven’t gotten far, but I like the concept of “thoughts addressed to yourself”. So when I came across Sean Cassidy’s post on collecting reminders to himself, I decided to take 15 minutes and do the same. Some of this list is very personal, other items are widely applicable. […]
Read Full Post

6 Steps to Better Innovation

Chris Shinkle, Director of Innovation at Software Engineering Professionals (SEP), presents “6 Steps to Better Innovation”
Read Full Post

Builds should fail sometimes

Reposted from my personal blog “Well, you don’t want your builds to succeed all the time…” I remember hearing that for the first time a year or two ago and thinking to myself “that’s probably one of those counter-intuitive truths that make a lot of sense in the context of Agile. This guy is probably some kind […]
Read Full Post

Running Lean Startup Experiments Internally

When building a business or software, it is easy to make assumptions about what the market will want or how users will interact with your product. Recently, the concept of the Lean Startup Experiment has emerged to help us explicitly acknowledge these assumptions and construct small experiments to validate our assumptions. Here at SEP, we […]
Read Full Post

Striving to Be Replaceable

In the book, The Passionate Programmer, there’s a section about making sure you’re replaceable. Several of us here at SEP read that book during a book club. When my group first started this section we were taken aback. Finally, I think we teased apart two different ways of being replaceable. Bad Replaceable: Basically just be a cog in […]
Read Full Post

Building an API with Node, Express, and Mongoose

The first step in creating the example application is to create an API for the application to interact with. Node, Express, and Mongoose are used to create a REST API. In addition to the example code below, the full code for the API is available. Environment setup To support the API, Node and MongoDB need […]
Read Full Post

Human Complexity: It’s Not Just for Psych Majors Anymore!

There are complex systems, and then there are Complex Systems. And nothing makes a system more complex than dealing with people. People make things complicated. Let’s look at an example. I’ve recently been working on an employee time tracking tool. One of the tasks that this tool does is verification of a timesheet: are the minimum […]
Read Full Post

Jasmine – a Whole New World of Javascript Testing

[Jasmine](https://jasmine.github.io/): a headless Javascript testing library written entirely in Javascript. With similarities to [rspec](https://rspec.info), I’ve quickly grown attached to this framework and have been looking for opportunities to discuss it. [Version 2.0](https://jasmine.github.io/2.0/introduction.html) was recently released, so I’ll be focusing on the standalone 2.0 concepts. To get started, download and uncompress [the standalone distribution](https://github.com/pivotal/jasmine/tree/master/dist). The uncompressed […]
Read Full Post