Quick Look – AWS Cloud9

by 

|

|  

in

As I wrote in Part 1 of my REST API with AWS series, development coding shouldn’t happen within the browser due to the lack of good practices such as reuse of functions, source control, and continuous integration. But there is a slight caveat to that: AWS Cloud9. With this service, we essentially get a development…

Read more…

Don't Panic Labs Reading List

DPL Reading List – June 28, 2019

by 

|

|  

in

Each Friday, we share a curated list of articles we found during the past week. Here’s the list of the new and interesting ones we found this week. If there’s an article we’d didn’t include and you think we should read, let us know in the comments below.   Empathetic Problem Solving For Product Teams…

Read more…

Super Easy Azure Function Deployments with DevOps

by 

|

|  

in

Azure Functions are pretty cool and, from the perspective of an Azure .NET developer, they are almost the perfect place to drop some code. They are basically stateless services in the cloud. What else could you want? Azure DevOps is Microsoft’s solution for hosting software projects in the cloud. We use it for almost everything…

Read more…

Acceptance Test Criteria: Gaining a Shared Project Understanding

by 

|

|  

in ,

We have several activities that add layers of quality to our software development projects. These activities include unit tests, sprint code reviews, and test plans. Recently, we added another quality layer to our process: acceptance test criteria. This new step occurs at the development story level before any coding begins. The goal is to ensure…

Read more…

Don't Panic Labs Reading List

DPL Reading List – June 21, 2019

by 

|

|  

in

Each Friday, we share a curated list of articles we found during the past week. Here’s the list of the new and interesting ones we found this week. If there’s an article we’d didn’t include and you think we should read, let us know in the comments below.   This computer changed the world—and you’ve…

Read more…

Getting Creative with Google’s Game Builder

by 

|

|  

in

Google has released a fun and engaging game building environment. Simply called “Game Builder”, this engine is unlikely to produce the next Halo or Call of Duty, but it’s a quick and easy way to create a video game…and that’s pretty awesome for anyone who’s wanted to try out their own game designs. Can’t you…

Read more…

Don't Panic Labs Reading List

DPL Reading List – June 14, 2019

by 

|

|  

in

Each Friday, we share a curated list of articles we found during the past week. Here’s the list of the new and interesting ones we found this week. If there’s an article we’d didn’t include and you think we should read, let us know in the comments below. Disruption Starts with Unhappy Customers, Not Technology…

Read more…

Quick Thoughts on SwiftUI

by 

|

|  

in

The interwebs are all ablaze with Apple’s announcement of SwiftUI. I’ve seen multiple articles about what was covered at the WWDC keynote, but the one topic that stood out to me was SwiftUI. With SwiftUI, did Apple just rewrite software development? What is SwiftUI? SwiftUI looks to be an entirely new way to develop user…

Read more…

Don't Panic Labs Reading List

DPL Reading List – June 7, 2019

by 

|

|  

in

Each Friday, we share a curated list of articles we found during the past week. Here’s the list of the new and interesting ones we found this week. If there’s an article we’d didn’t include and you think we should read, let us know in the comments below. A Farewell for iTunes – The impact…

Read more…

Using Vue CLI

by 

|

|  

in

In my previous post, we stood up a Vue.js site as a single-page application where the entire site was a single index.html file. In this post, I am going to use the Vue CLI to scaffold out our solution a little more. First, we will need to install the Vue CLI. sudo npm install -g…

Read more…