React Hooks and Local Storage: Let’s build a ToDo app

React Hooks and Local Storage: Let’s build a ToDo app

  • August 25, 2020

React hooks have been around for quite some time. They have been widely adopted by the React community since then and have started becoming the defacto for newer React applications. A react hook allows developers to hook into React features. React hooks allow building components by using functions instead of...

The art of Storytelling and Data Science

The art of Storytelling and Data Science

  • August 11, 2020

Data Science and storytelling are inseparable. And the bridge between the two is data. I had talked about storytelling in my article about Business Analyst/Data Scientist learnings but thought it would be better to elaborate more about the storytelling part. Imagine you are a data science executive in an organization....

Using async/await in ExpressJs

Using async/await in ExpressJs

  • August 6, 2020

If you have not been living under a rock for the past few years, you probably have heard of async/await. It has been one of the interesting additions to EcmaScript. It makes control flow easier to understand and read and also allows to write concise, maintainable code. If you need...

SARIMA Using Python – Forecast Seasonal Data

SARIMA Using Python – Forecast Seasonal Data

  • July 20, 2020

In this article, we explore the world of time series and how to implement the SARIMA model to forecast seasonal data using python. SARIMA is a widely used technique in time series analysis to predict future values based on historical data having a seasonal component. For example, the sales of...

GraphQL Basics: Types, Queries, Mutations, and Schema

GraphQL Basics: Types, Queries, Mutations, and Schema

  • July 15, 2020

Once you get a grasp of what GraphQL is, and why it is important, you also realize that it is a different design process. And before diving into the implementation, it is important that we understand the GraphQL basics, the various terminologies that come with it. If you are just...

An Introvert’s Guide to Deep Conversations

An Introvert’s Guide to Deep Conversations

  • June 25, 2020

Throughout school, I was a bookworm and an introvert. “Socializing” was not my cup of tea. I was never really sure about how to drive any deep conversations or connect with another person. As an introvert, every time I tried doing so, my self-doubt and social anxiety would creep in....

A Beginner’s Guide to Artificial Neural Networks

A Beginner’s Guide to Artificial Neural Networks

  • June 6, 2020

In this article, We would like to talk to you about artificial neural networks. Yes, you read it right. We will try and understand what are artificial neural networks. What are its different types? And finally what type of neural network suits which situation. The idea is simple – I...

Why GraphQL?

Why GraphQL?

  • June 2, 2020

Developing APIs for the web has never been an easy task for developers. REST has been the defacto standard for designing web APIs for the last decade. Considering REST’s wild popularity, the first question that pops into anyone’s head when they start reading about GraphQL is: Why GraphQL? Why do...