Writing High Quality Code

Writing Quality Code: Practicing “Make It Work, Make It Right, Make It Fast”

Rik Scarborough Articles, Programming, Soft Skills 1 Comment

Kent Beck, a software engineer famous enough to have his own Wikipedia page, is quoted as saying, โ€œMake it work, make it right, make it fast.โ€ A quick web search will show you several pages discussing this quote, some in great detail.

So, Iโ€™ll write another, and hopefully, Iโ€™ll provide two things to build on the existing literature. First, Iโ€™d like to put this concept in front of some programmers that might not have heard it, or if they have, havenโ€™t taken it to heart.

Second, Iโ€™ll provide my own philosophy on the subject. Maybe it will different enough that youโ€™ll get something new from it. I do have a slightly different take on it. Although I donโ€™t want anyone to change the quote, maybe we can instead think of it as, โ€œSolve the problem, make it maintainable, and make it perform.โ€

Bloom Filters in Java Dev

Applying Bloom Filters to Java Dev: A Naive Implementation

Tazz Vose Articles, Development Technologies & Tools, Java, Testing Leave a Comment

Over the course of this blog, I will be focusing on using Bloom Filters in Java development. Weโ€™ll briefly talk through what they are and why theyโ€™re handy, and then weโ€™ll dive into a hypothetical use case and tutorial.

As a note, this post is just meant to get you started on the track to using a Bloom Filter in the wild. What we discuss here will stay high-level but will give you a general idea of how it would work on a project.

Without further ado, letโ€™s get started.

Top React Frameworks for Enterprise App Dev

Top React Frameworks for Enterprise App Dev

Zach Gardner Articles, Consulting, Development Technologies & Tools, Opinion, React Leave a Comment

There is such a rich, user-driven ecosystem around React that it can be difficult to discern which frameworks, if any, should be used to develop enterprise-grade applications. This blog post dives into the most popular ones and analyzes which are most suitable for that specific use case.

Before diving in, please remember: the decision of which one is the right one for a given organization or application is very context-specific, so diligent consideration is required to ensure an optimal outcome.

Apollo Client and GraphQL

Apollo Client: State Management for GraphQL Made Easy

Braden Niswonger API Development, Articles, Development Technologies & Tools, GraphQL, JavaScript, Programming, React Leave a Comment

In this post, we will explore Apollo Client integrated with a React application and how it provides an abstraction layer between a JavaScript application and a GraphQL server. The features Apollo Client offers make it a prime choice for devs also using GraphQL.

We’ll begin by discussing what Apollo Client is and how it can be advantageous over other state management libraries. And finally, we will look at some example React queries for retrieving and mutating data.

Let’s get started.

Scripting Development Environment Setup with tmux

Scripting Development Environment Setup with tmux

Rachel Walker Articles, Development Technologies & Tools, Programming, Tutorial Leave a Comment

Recently, I found myself in a position that developers often face โ€“ setting up a complicated local development environment.

My mission: get 8-10 local services up and running using a variety of technologies to test my code prior to merging to a shared environment. Armed with several outdated READMEs, my terminal, and some dire warnings about which services would likely crash my machine, I dove in.

The following blog is my story of writing scripts that utilize tmux to impose some order on the setup process.