COBOL: The Language that Won't Die

COBOL: The Language That Won’t Die

Kevin Roper Articles, COBOL 1 Comment

This post contains an introduction to and demo of the mythical language that every programmer seems to know about but doesnโ€™t really know: COBOL.

By learning about COBOL, you learn about basic concepts in computing in general, and how all of these languages are really doing a lot of the same activities underneath.

-Everything old is new again – Stephen King, The Colorado Kid

A Better Approach to Merging Files in Git

A Better Approach to Merging Files in Git

Brice McIver Articles, Development Technologies & Tools, Git Leave a Comment

Git has many features, but itโ€™s likely that you only use a small subset on a daily basis. While git tends to handle things intelligently most of the time, there are situations when doing the most obvious thing doesnโ€™t give git enough information to make informed choices.

In this post, weโ€™ll examine one such scenario – merging files. Through trial and error, Iโ€™ll show you the normal approach people take, some of the issues that occur with that approach, and a completely different approach that preserves some data lost in the first approach.

Azure Severless: Functions and Logic Apps

Azure Serverless: Functions and Logic Apps

Dallas Monson Architecture, Articles, Azure, Cloud, Consulting, Development Technologies & Tools 1 Comment

This is a perfect opportunity for us to explore cloud serverless offerings as the ultimate contact-less development option. While COVID-19 continues to make face-to-face collaboration an impossibility, cloud-based applications and workloads provide a well-defined method for remote development and project deployment. Serverless offerings, like Azure Functions and Azure Logic Apps, take this to the next level while allowing us, as developers, to focus only on our application functionality and not the backing infrastructure or uptime of servers. These serverless solutions will be the focus of this blog.

Storybook with React

Storybook with React

Braden Niswonger Articles, Development Technologies & Tools, JavaScript, React, React Native Leave a Comment

In most React applications, there are many components working closely together to share and pass data between them. This can sometimes make it difficult to test components individually. Maybe you want to see how a component will react when given invalid data, or you want to test your component visually in different states. Storybook gives you a great way to do this in isolation, without worrying about the app-specific dependencies or requirements.

Storybook is an open-source tool for developing user interface components in isolation. In other words, it’s a playground for UI components. In this blog, we will dive into the basics of Storybook, write a Storybook for Material UI’s button component, and look at a couple of its add-ons.

A Look at Styled Components

A Look at Styled-Components

Nick Brown Articles, Development Technologies & Tools, JavaScript, React, React Native Leave a Comment

Attention: This article was published over 6 years ago, and the information provided may be aged or outdated. While some topics are evergreen, technology moves fast, so please keep that in mind as you read the post.The React frameworkโ€™s component-based approach makes managing large projects simpler. By making it easier to break functionality down into logical pieces that are encapsulated, …