Mapping Country Enum Values in NetSuite

Oh boy, is this the article you've been searching across for a while? It doesn't really surprise me because NetSuite provides very little documentation for webservices integrations. On top of that, NetSuite makes a developers life very easy by its internal id game. So If you're really interested in mapping country enum values easily, you've … Continue reading Mapping Country Enum Values in NetSuite

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

Serverless: Revolutionizing Application Development in Small and Medium Enterprises (SMEs)

Serverless architectures are applications that depend on custom code executed in ephemeral containers.  One might think that 'Serverless' literally means that there are no servers involved. However, Serverless comprises of two different areas which overlap with each other. Applications that depend on 3rd party applications/ services to manage server side state. These types of services … Continue reading Serverless: Revolutionizing Application Development in Small and Medium Enterprises (SMEs)

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