Dinero Trace Generator using Javascript

bills-cash-collection-47344

It's quite surprising that around the time when this blog post was written, I couldn't find a Dinero Trace Generator online. Dinero is a cache simulator software that had been developed around 20 years ago. To generate traces, you just have to do simple bit manipulations. Ironically, today, our modern browsers have the power to … Continue reading Dinero Trace Generator using Javascript

Adding a Heatmap Overlay Over React Native Map

React Native Map  is the go to option if you're trying to implement a map within a react-native application. I'm certain that you've been devastated to find out that React Native Maps does not officially support a Heatmap overlay. However,  based on the great work of pjamrozowicz,  I have forked the react native maps (v0.21.0), and added … Continue reading Adding a Heatmap Overlay Over React Native Map

ReactJS: Handling Data Flows Between React Components

Vine Flow - Data flow representation in react components

When developing a React app, the separation into react components allows to manage the code easily. However, it poses an additional problem of passing data between react components.  Since React only supports one-way data binding, it might be confusing for a beginner. There are three ways in which data flows can occur within react components: … Continue reading ReactJS: Handling Data Flows Between React Components

ReactJS: Supporting Server Side Pagination for React-Table

Supporting Server Side Pagination Although at first server side pagination might seem to be difficult, with react-table, it's as simple as configuring the API properly.  After reading this post, you will be able to learn the SQL queries required to provide the pagination functionality. The following table will be used for demonstration purposes. import React … Continue reading ReactJS: Supporting Server Side Pagination for React-Table