Maintaining Global State in AWS Lambda Functions with Async Hooks
An intriguing look at how Node’s experimental Async Hooks API can be used to support global state within AWS Lambda functions - http://amp.gs/RleJ
#nodejs #aws
An intriguing look at how Node’s experimental Async Hooks API can be used to support global state within AWS Lambda functions - http://amp.gs/RleJ
#nodejs #aws
Scott Logic
Maintaining global state in AWS Lambda functions with Async Hooks
This post looks at how the experimental Async Hooks API can be used to support global state within AWS Lambda functions. Considering that this is an experimental API it's worth treating with caution, but it does provide an interesting potential solution to…
CI/CD Pipeline: A Gentle Introduction
Do you want your engineering team to deliver bug-free code at high velocity? A fast and reliable CI/CD pipeline is crucial for doing that sustainably over time. - http://amp.gs/RBkj
#ci #cd
Do you want your engineering team to deliver bug-free code at high velocity? A fast and reliable CI/CD pipeline is crucial for doing that sustainably over time. - http://amp.gs/RBkj
#ci #cd
Medium
CI/CD Pipeline: A Gentle Introduction
Do you want your engineering team to deliver bug-free code at high velocity? A fast and reliable CI/CD pipeline is crucial for doing that…
Internationalize Your Angular App with ngx-translate
At some point, your web application may require serving a multilingual user base. Internationalization, or i18n for short, is the process by which you make your app usable for those with a different native language. While Angular has some built-in i18n functionality, ngx-translate is a third-party package which makes the process dead simple. - http://amp.gs/RnzA
#angular
At some point, your web application may require serving a multilingual user base. Internationalization, or i18n for short, is the process by which you make your app usable for those with a different native language. While Angular has some built-in i18n functionality, ngx-translate is a third-party package which makes the process dead simple. - http://amp.gs/RnzA
#angular
DigitalOcean
Internationalize Your Angular App with ngx-translate | DigitalOcean
Here's a guide on how to use the ngx-translate library to internationalize (i18n) your Angular apps with ease.
My CSS Reset
Designer and developer Zell Liew shares his personal preference for a CSS reset. - http://amp.gs/RncZ
#css
Designer and developer Zell Liew shares his personal preference for a CSS reset. - http://amp.gs/RncZ
#css
Zell Liew
My CSS reset | Zell Liew
Here's how I begin writing CSS for all my projects
Refactoring a Small Next App to Use Hooks
A look at how a developer refactored a small React app to use hooks. - http://amp.gs/RGLb
#react #hooks
A look at how a developer refactored a small React app to use hooks. - http://amp.gs/RGLb
#react #hooks
DEV Community
Refactoring a small Next app to use Hooks
Enough of these contrived examples. Let's look at how I refactored a small React app to use Hooks
How to Implement File Uploading in Angular Reactive Forms
In this article, we’ll walk you through the process of creating a reactive form that includes a file upload, along with the normal form fields. Along the way, we’ll create a custom form control for our file input, add validation and create custom RxJS operators. - http://amp.gs/RfO0
#angular
In this article, we’ll walk you through the process of creating a reactive form that includes a file upload, along with the normal form fields. Along the way, we’ll create a custom form control for our file input, add validation and create custom RxJS operators. - http://amp.gs/RfO0
#angular
Netanel Basal
How to Implement File Uploading in Angular Reactive Forms
How to Implement File Uploading in Angular Reactive Forms
An Intro to RxJS Concepts with Vanilla JavaScript
Observables..? Observers..? Get a grip on the concepts here. - http://amp.gs/RCkJ
#rxjs
Observables..? Observers..? Get a grip on the concepts here. - http://amp.gs/RCkJ
#rxjs
DEV Community
Intro to RxJS Concepts with Vanilla JavaScript
Breaking down observables, observers, and operators using vanilla JavaScript
Building a Transaction Sservice for Managing Large Sscale Eediting Experiences
A common challenge developers have to tackle when building applications consuming large data sets, is how to create a maintainable and scalable user experience for editing. They may face hundreds of thousands and even millions of records on which they execute CRUD operations that need to be sent to a server and saved to a database.- http://amp.gs/RC3u
#angular
A common challenge developers have to tackle when building applications consuming large data sets, is how to create a maintainable and scalable user experience for editing. They may face hundreds of thousands and even millions of records on which they execute CRUD operations that need to be sent to a server and saved to a database.- http://amp.gs/RC3u
#angular
Angular Blog
Building a transaction service for managing large scale editing experiences
A common challenge developers have to tackle when building applications consuming large data sets, is how to create a maintainable and…
Bringing Realtime to Serverless Web Applications
AWS IoT and MQTT can be used to push real-time messages around an application, even if the “Internet of Things” is nowhere to be seen. - http://amp.gs/RkLn
#aws #IoT
AWS IoT and MQTT can be used to push real-time messages around an application, even if the “Internet of Things” is nowhere to be seen. - http://amp.gs/RkLn
#aws #IoT
ITNEXT
Bringing realtime to serverless web applications
AWS IoT makes light work of pushing real-time messages throughout your application.
How to Choose the Right React Native Navigation Library
A look at some possible solutions to make the best navigation experience for users. - http://amp.gs/ReG1
#reactNative
A look at some possible solutions to make the best navigation experience for users. - http://amp.gs/ReG1
#reactNative
Why Class/Component Inheritance in Your Angular App Might Not Be Good
When developing your applications you inevitably come across situations where you need to create functionalities/features or even functions which are similar, but spreaded over multiple components or even modules. This means you have to find a solution for code reusability to keep your code maintainable. In Angular, and Javascript applications in general, there are many patterns and solutions to set this up. As Angular is entirely Class based, inheritance could be a solution. Here’s why that might not be the best solution. - http://amp.gs/Reik
#angular
When developing your applications you inevitably come across situations where you need to create functionalities/features or even functions which are similar, but spreaded over multiple components or even modules. This means you have to find a solution for code reusability to keep your code maintainable. In Angular, and Javascript applications in general, there are many patterns and solutions to set this up. As Angular is entirely Class based, inheritance could be a solution. Here’s why that might not be the best solution. - http://amp.gs/Reik
#angular
Hacker Noon
Why Class/Component inheritance in your Angular app might not be good
When developing your applications you inevitably come across situations where you need to create functionalities/features or even…
How to Unlock the Full Potential of Prop Types in Vue
Prop types are a really simple way to catch a lot of potential errors. Here are some great tips on how to use them effectively. My favorite here is to use a validator for enforcing a list of string values. - http://amp.gs/R7vm
#vue
Prop types are a really simple way to catch a lot of potential errors. Here are some great tips on how to use them effectively. My favorite here is to use a validator for enforcing a list of string values. - http://amp.gs/R7vm
#vue
Routing with Hooks: A New Approach to React Routing?
An interesting experiment in using hooks for React app routing has turned into an actual project called hookrouter which has some compelling advantages compared to existing routers. See how it works here. - http://amp.gs/RPZE
#react #router #hooks
An interesting experiment in using hooks for React app routing has turned into an actual project called hookrouter which has some compelling advantages compared to existing routers. See how it works here. - http://amp.gs/RPZE
#react #router #hooks
Encapsulating Style and Structure with Shadow DOM
Caleb Williams explains how to provide design and structural constraints to our elements using shadow DOM. - http://amp.gs/Ry8N
#css
Caleb Williams explains how to provide design and structural constraints to our elements using shadow DOM. - http://amp.gs/Ry8N
#css
CSS-Tricks
Encapsulating Style and Structure with Shadow DOM | CSS-Tricks
This is part four of a five-part series discussing the Web Components specifications. In part one, we took a 10,000-foot view of the specifications and
The Anatomy of an AWS Key Leak to a Public Code Repository
It's in every developer’s top 10 worst nightmares: you’ve accidentally committed a critical access token into a publicly visible repo. What happens next? Here’s one story. - http://amp.gs/Rh8n
#aws
It's in every developer’s top 10 worst nightmares: you’ve accidentally committed a critical access token into a publicly visible repo. What happens next? Here’s one story. - http://amp.gs/Rh8n
#aws
Blogspot
The Anatomy of an AWS Key Leak to a Public Code Repository
My blog about all things Cloud, Automation, DevOps and everything in between.
MobX - The Vue Way
Vuex will generally be the right choice for state management for Vue apps. But consider Mobx for state management that is framework agnostic, has built-in observable fields, is simple, has little boilerplate, and has superior performance. - http://amp.gs/RhLN
#vue #mobx
Vuex will generally be the right choice for state management for Vue apps. But consider Mobx for state management that is framework agnostic, has built-in observable fields, is simple, has little boilerplate, and has superior performance. - http://amp.gs/RhLN
#vue #mobx
Medium
Mobx- The Vue way
Yet another Todo List
Node 6.x Reaches 'End-of-Life' Next Month
Microsoft’s Tierney Cyren reminds us that Node 6’s days are almost over. If possible, you want to upgrade code (including those long lost serverless functions!) to Node 10 as Node 8 itself goes EOL in December. - http://amp.gs/RvHj
Microsoft’s Tierney Cyren reminds us that Node 6’s days are almost over. If possible, you want to upgrade code (including those long lost serverless functions!) to Node 10 as Node 8 itself goes EOL in December. - http://amp.gs/RvHj
GitHub
GitHub - nodejs/Release: Node.js Release Working Group
Node.js Release Working Group. Contribute to nodejs/Release development by creating an account on GitHub.