Home Tags Book Excerpt

Tag: Book Excerpt

8 recipes to master Promises in ECMAScript 2018

0
What are Promises in ECMAScript? In earlier versions of JavaScript, the callback pattern was the most common way to organize asynchronous code. It got the...

How to implement Internationalization and localization in your Node.js app

0
Internationalization, often abbreviated as i18n, implies a particular software design capable of adapting to the requirements of target local markets. In other words if...

Distributed TensorFlow: Working with multiple GPUs and servers

0
Some neural networks models are so large they cannot fit in memory of a single device (GPU). Such models need to be split over...

Implementing 3 Naive Bayes classifiers in scikit-learn

0
Scikit-learn provide three naive Bayes implementations: Bernoulli, multinomial and Gaussian. The only difference is about the probability distribution adopted. The first one is a...

Unit Testing in .NET Core with Visual Studio 2017 for better...

0
The famous Java programmer, Bruce Eckel, came up with a slogan which highlights the importance of testing software: If it ain't tested, it's broken. Though a confident...

Implementing 5 Common Design Patterns in JavaScript (ES8)

0
In this tutorial, we'll see how common design patterns can be used as blueprints for organizing larger structures. Defining steps with template functions A template is...

How to build a sensor application to measure Ambient Light

0
In today's tutorial, we will look at how to build a sensor application to measure the ambient light. Preparing our Sensor project We will create a new...

Implementing Automation Process with Salesforce CRM

0
A CRM system must help its users to be as productive as possible to justify its investment; therefore, if there are any aspects that...

Using Amazon Simple Notification Service (SNS) to create an SNS topic

0
Simple Notification Service is a managed web service that you, as an end user, can leverage to send messages to various subscribing endpoints. SNS...

8 built-in Angular Pipes in Angular 4 that you should know

0
Angular is a mature technology with introduction to new way to build applications. Think of Angular Pipes as modernized version of filters comprising functions...