Tag: Web development
-
Running a serverless Go web application
Posted on October 30, 2019, Level intermediate Resource Length medium
Recently Google introduced the beta program for Google Cloud Run. This is a service to run stateless containers on a fully managed environment by Google. An article by Bart Fokker.
Tags golang programming performance web-development
-
Firebase: What is atomicity & how to accurately increment/decrement values in cloud Firestore
Posted on October 22, 2019, Level intermediate Resource Length short
In computer science, ACID (Atomicity, Consistency, Isolation, Durability) is a set of properties of database transactions intended to guarantee validity even in the event of errors, connection issues, power failure, and etc. An article by Jeff Lewis about atomicity in Firebase.
Tags nosql infosec cloud app-development web-development
-
Handling 'Failure at scale' in Azure Functions triggered by IoT Hub
Posted on October 15, 2019, Level intermediate Resource Length medium
An article by Stas(Stanislav) Lebedenko about how to tackle exceptions and re-run failed messages. One of the Serverless solution benefits is a performance at scale. As a result, you can get 'Failure at scale' if something goes wrong. Thus it's crucial to introduce error handling for your Azure Functions project early.
Tags serverless apis web-development azure devops
-
REST and Hypermedia and GraphQL and gRPC and Event-Driven
Posted on October 14, 2019, Level intermediate Resource Length medium
An essay on apievangelist.com about their drive to research API industry over the last couple of years in order to help people understand how they can invest in a diverse API toolbox.
Tags apis web-development software-architecture restful
-
Simplicity in design: 4 ways to achieve simplicity in your designs
Posted on October 13, 2019, Level beginner Resource Length medium
Euphemia Wong wrong this piece about how to learn ways to achieve simplicity in your designs and recognize why certain designs are overly complex. Simplicity is also one of the key reasons why some companies do better than their competitors.
Tags ux web-development management miscellaneous
-
How to read a WebPageTest waterfall chart
Posted on October 10, 2019, Level beginner Resource Length short
Matt Hobbs put together this guide on web page test waterfall charts. He pulled together many bits of information into a single blog post.
Tags web-development frontend performance
-
Incorporating UX work into your agile backlog
Posted on October 9, 2019, Level beginner Resource Length medium
In this article author describes three different backlog models which enable teams to keep track of UX work in their Agile processes. Each model comes with pros and cons. By Rachel Krause.
Tags web-development ux miscellaneous how-to
-
Here's what we learned about page speed
Posted on October 8, 2019, Level beginner Resource Length long
Backlinko.com analyzed 5.2 million desktop and mobile pages and in this article they published what they learned about page speed.
Tags web-development programming performance
-
Best practices for running Buildah in a container
Posted on October 3, 2019, Level intermediate Resource Length long
One of the cool things about separating the container runtimes into different tools is that you can start to combine them to help secure one other. An article by Daniel Walsh.
Tags containers web-development cloud software-architecture infosec
-
Build a Laravel 6 CRUD app with authentication
Posted on October 2, 2019, Level intermediate Resource Length medium
Learn how to build and secure a travel manager CRUD application with Laravel 6.0. Author will walk through every step of building the application and then add authentication using Auth0. By Holly Lloyd, R&D Content Engineer.
Tags php web-development programming infosec
-
Chrome extension with Angular -- from zero to a little hero
Posted on September 28, 2019, Level intermediate Resource Length long
An article by JeB Barabanov in which he explores the process of developing a Chrome extension with Angular. Start from scratch with ng new and finishing with fully functional Chrome extension.
Tags javascript web-development browsers frontend
-
Object creation patterns in JavaScript
Posted on September 27, 2019, Level beginner Resource Length medium
Kunal Tandon wrote about his run through of the four patterns in JavaScript. To create objects in JS, there are various patterns that can be followed.
Tags javascript web-development oop functional-programming