Setting Up Mobile Badges: Two Methods

by 

|

|  

in ,

We all know those badges on mobile applications, the ones that show a number on application icons and, for many, cause anxiety. If you are like me and get lots of emails, you have seen 300+ of them from time to time. But what many don’t know is how those badges get their numbers. While…

Read more…

Quick Look – Azure Functions

by 

|

|  

in ,

Azure Functions are an excellent and highly-scalable application development platform in the Azure ecosystem. They also provide a lot of triggers that can be used to invoke those Functions, which allows you to use them as the basis for your application programming. For Amazon Web Services (AWS) developers, Azure Functions are very similar to Lambdas….

Read more…

Using Azure Active Directory B2C with Angular

by 

|

|  

in ,

In my previous Azure B2C post, we used Azure Active Directory B2C with an ASP.NET backend. Microsoft makes this a pretty seamless experience. You configure your Azure B2C application and then configure your ASP.NET web application. That’s it! But what if you want to use an Angular frontend? Using Azure B2C with Angular is similar…

Read more…

Earned Value

by 

|

|  

in ,

Are we there yet? Anyone with kids has probably heard this during a long car trip. Anyone in the software industry has probably heard this too. Software development projects can be huge investments of time and energy, and often weeks can go by without showing a lot of return on that investment. We often try…

Read more…

developing locally with azure cosmos db

Developing Locally with Azure Cosmos DB

by 

|

|  

in ,

Azure Cosmos DB is a fantastic technology. It provides a very robust document database with multiple query languages supported. But as with many cloud technologies, it has the problem of only being able to run from the cloud (obviously). Thankfully, some cloud technologies – like Cosmos DB – can be run on the ground, on…

Read more…

Getting Started - Azure B2C

Getting Started with Azure B2C Identity Management

by 

|

|  

in ,

Users are essential for software, but managing users isn’t a unique value-add we are often providing with our software. Letting someone else manage users for us makes a lot of sense and saves many headaches. Thankfully there are many services that do this really well. One of those services is Azure Active Directory B2C. In…

Read more…

Beer && Code: One of Our Favorite Local Meetups

by 

|

|  

in

One of the great things about Lincoln is its growing number of educational opportunities centered around technology and software development. One of them is near and dear to our hearts: Beer && Code. Started by Don’t Panic Labs software engineer Branden Barber (aka Beebs around the office), this monthly get-together meets at various locations around…

Read more…

iOS push notifications

Setting Up iOS Push Notifications for Amazon Simple Notification Service (SNS)

by 

|

|  

in ,

iOS push notifications are often a requirement for mobile applications. But this feature isn’t easy to set up. It involves several steps across various applications, online and locally. And if you’re developing for multiple platforms (i.e., iOS and Android), you can be in for even more work. But with Amazon’s Simple Notification Service (SNS), you…

Read more…

Developing Locally Against AWS-Hosted DynamoDB

Developing Locally Against AWS-Hosted DynamoDB, Part 2

by 

|

|  

in ,

In my previous post, we got our code running locally and connecting to DynamoDB in the cloud. Now we are going to get our code connecting to DynamoDB also running locally. Why would we want to do this? Well, it gives us a great development experience. Each developer can have their own instance of DynamoDB…

Read more…

Developing Locally Against AWS-Hosted DynamoDB, Part 1

by 

|

|  

in ,

DynamoDB is a document storage technology hosted in Amazon Web Services (AWS). We have used it for several projects, and it works pretty well for a lightweight document store. Calling DynamoDB from within the AWS ecosystem is pretty easy, but what about calling DynamoDB from the ground, or from your own machine? Why would you…

Read more…