Creating Custom Pipes in Angular

While writing angular applications, pipes are the powerful way to transform your data into your template. Angular provides many built in pipes like date, uppercase, currency. If you are writing complex angular, you may need your custom way of data transformation. And That is were custom pipes come in. In this blog, we will see … Read more

Reading and Writing Parquet Files in Spark

Parquest file is one of the most common file format used in data engineering because of its performance. It is an Open Source Column oriented file format where data is stored by columns and not by rows. And Parquet file automatically uses compression algorithems to reduce the file size and faster data performance. In this … Read more

Nodist – Node.Js Version Manager

If you are working on multiple Javascript projects, you may require different versions of Node.Js for different projects and managing different versions of Node.js across multiple projects becomes very challenging especially for the Windows Developers. Nodist is one of the most reliable and lightweight node.js version manager built for the windows. If you are working … Read more

React Hooks

React hooks completetly changed the way we build react applications. It is now a default way to implement the components as it simplifies the code, improves the resuability and remove the limitations of your class component. In this blog post, we’ll see most common hooks used in react application. Please take a note that, this … Read more