Don't Panic Labs Reading List

DPL Reading List – March 8, 2019

by 

|

|  

in

Here are some of the new and interesting articles we found this week. Stressed at Work? Mentoring a Colleague Could Help – “So if mentoring is to help mentors, organizations need to account for the resources allocated to mentoring and allow flexibility for those mentoring relationships to grow. Those that commit to mentoring might be…

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…

Don't Panic Labs Reading List

DPL Reading List – March 1, 2019

by 

|

|  

in

Here are some of the new and interesting articles we found this week. Microsoft puts mixed reality, high-speed 3D rendering, and Kinect vision into cloud – “The Azure Kinect Developer Kit (DK) bumps up the specs substantially when compared to the old Xbox accessory; it includes a 12MP RGB camera, 1MP depth camera, and 360-degree…

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…

Don't Panic Labs Reading List

DPL Reading List – February 22, 2019

by 

|

|  

in

Here are some of the new and interesting articles we found this week. Nasty code-execution bug in WinRAR threatened millions of users for 14 years – “The vulnerability was the result of an absolute path traversal flaw that resided in UNACEV2.DLL, a third-party code library that hasn’t been updated since 2005. The traversal made it…

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…

don't panic labs reading list

DPL Reading List – February 15, 2019

by 

|

|  

in

Here are some of the new and interesting articles we found this week. Mozilla to use machine learning to find code bugs before they ship – “Clever-Commit analyzes code changes as developers commit them to the Firefox codebase. It compares them to all the code it has seen before to see if they look similar…

Read more…

Quick Look – AWS Cognito

by 

|

|  

in

Amazon Web Services (AWS) makes many common cloud services easy to create and maintain. One of the many AWS services really makes easy is supporting authentication. One of them, Cognito, is a platform for authentication within the cloud. Let’s walk through how to use Cognito along with AWS’s Amplify service to create an Angular application…

Read more…

Don't Panic Labs Reading List

DPL Reading List – February 8, 2019

by 

|

|  

in

Here are some of the new and interesting articles we found this week. Marc Andreessen shares the 4 realities facing every entrepreneur today – “In our first episode, we sat down with a serial entrepreneur turned investor who needs no introduction: Marc Andreessen. Marc highlighted how building a successful company takes far more than a…

Read more…

Web Development – Executive Summary

by 

|

|  

in

Web development often involves a few components. First is developing the markup (HTML) that runs in a web browser. Second is developing the application style, which is often done using CSS. Third is some client-side application logic, possibly written in JavaScript. Fourth is a backend running on a server somewhere. One interesting aspect of web…

Read more…