Development

Natural Language Processing – A 30,000 feet view

Natural Language Processing has gained a lot of popularity owing to an exponential increase in unstructured data generation. Here are…

4 years ago

How to unit-test a private (non-exported) function in JavaScript

When writing unit-tests for JavaScript modules, we often encounter a dilemma wherein the module has some private functions that have…

4 years ago

Detecting click outside component using React hooks

If you have tried developing your own dropdown, modal, or popover in React, you would have come across this. "How…

4 years ago

Number of Islands: Demystifying Programming Interview

If you are reading this post right now, chances are high that you are not looking for the number of…

4 years ago

Recurrent Neural Networks

In this article, we will explore recurrent neural networks. For all the readers who are not versed with the concept…

4 years ago

Beating JSON performance using Protocol Buffers

Protocol buffers or Protobuf, is a binary format that was created by Google to serialize structured data that is transferred…

4 years ago

Common Data Distributions for Data Science

Data distributions lie at the heart of all the machine learning algorithms and data science techniques. A machine learning algorithm…

4 years ago

The new Logical Assignment Operators in JavaScript

The latest version of ECMAScript introduced three new logical assignment operators: nullish, AND, and OR operators. These are supported from…

4 years ago

How to groupby using reduce in JavaScript

The groupBy method is one of the reasons people use lodash in their project. In this blog post, we will…

4 years ago

Learning context API and the useContext React hook

In this react hooks series, we have already explored the react hooks useState, useEffect, and useReducer. The next react hook…

4 years ago
Advertisements