See Keyhole at Dev Up 2017

Lauren Fournier Bogner Articles, Community, Company News, Educational Event Leave a Comment

We are pleased to announce that Keyhole Software is a Platinum Sponsor of the 2017 Dev Up Conference.

Formerly known as the St. Louis Days of .NET andย rebranded as Dev Up during the 2015 conference, the 10th annual editionย will bring together regional and national IT experts to share their knowledge for technology.

Two speakers from the Keyhole Software team will present topics at this year’s event: Chase Aucoin & Billy Korando….ย 

An Example Progressive Web App on Android

RJ Dela-Cruz Angular, Articles, Development Technologies & Tools, JavaScript, Mobile 6 Comments

In my experience, the best way to learn a new technology is to create something tangible with it. I recently sought out to learn Angular and Angular Material. So, I developed an experimental Angular app that uses omdbapi to query Movie Posters. It’s aptly named Movie Poster Finder.

Developing the Movie Poster Finder application, I ran into a thing called PWA, which is also known as Progressive Web Applications. I thought it was really neat that both Android and mobile Chrome treat them as native applications.

In this post, I will show an example Progressive Web Application in action, explaining what I encountered when turning an experimental Angular web application into a PWA.

Default image for blog posts - purely decorative

The Executable Code Review

Tim Broyles Articles, Programming, Testing Leave a Comment

Testing has a bad rap. The thought of writing unit tests to exercise code with the goal of 100% code coverage can be overwhelming for many projects. The number of man-hours to set up tests, create mocks when needed, test boundary conditions, contrive odd ball test cases can take some steam out of the project. If this is the definition of test, then yes, writing these types of tests can be tedious and feel meaningless.

I am a proponent of writing tests with a narrow focus. The tests I describe here show the completion of a story or the resolution of a bug. With this narrowness in mind, the task is much less daunting. My goal now is not about code coverage, but more about quality code. With this test, I want to be able to demonstrate to myself (and to whoever is reviewing my changes), that I have successfully resolved my task.

In this blog I will talk about my suggestions for writing meaningful tests in the context of a code review.

React v16.0 Release Overview and Migration

Luke Curran Articles, Development Technologies & Tools, JavaScript, React Leave a Comment

React v16.0 was released by Facebook on Tuesday, September 26th. This version introduces performance boosts and other very helpful features.

React 16 brings some significant internal changes features to the table. In my opinion, one of the most interesting thing about this release is that React has been rewritten. Luckily, in terms of upgrading, if your app runs in 15.6 without any warnings, it should work in 16 (with minor exceptions).

In this blog I highlight some of the new features introduced in React v16.0, in addition to demonstrating how to update your current React applications to v16.0 using a Keyhole open source application for reference…

Could the Equifax Hack Have Been Prevented by a Microservices Architecture?

David Pitt Architecture, Articles, DevOps, Java, Microservices, Opinion, Security Leave a Comment

When I heard that the Struts Open Source framework played a role in the recent Equifax hack, I wanted to do some research to understand how it happened. Struts is a commonly-used Java framework that I have applied in the past. And Iโ€™m not alone in that: it is reported that in 65% of Fortune 500 companies currently implement Struts in some way.

So, I did a little digging and performed a thought experiment asking myself the following question: โ€œIf Equifax had a pure-play Microservices Architecture in place, would it have solved the problem?โ€