Want to Learn About Technology?
Our technology blog provides valuable insights and information on the latest technological advancements, whether you are an industry expert or simply curious, our blog is the perfect place to stay informed and engaged.
VTiger custom event Event Handler to save custom logic in before save and after save
Introduction: In this article we will show how to use Event handlers in Vtiger 7 for us to write custom logic for after Save or Before save events. We have given an example using potential module the same should be applicable for other VTiger modules....
Moodle HA setup using docker over AWS
Introduction: In traditional way most of the organizations host their moodle app in the single server, which includes Application/DB even though maintaining the server to be a backup (application/db) still it can not be false into failover/high availability...
Learn how you can use React Hooks
Hooks are a new addition in React 16.8. They let you use state and other React features without writing a class. Before hooks to use any state or lifecycle events you have to create a class component. But noe we can use these features within functional components. The...
Process Nested Jsons Using AWS Athena
Overview This Article shows how to import a nested json like order and order details in to a flat table using AWS Athena . Athena is the most powerful tool that can scan millions of nested documents on S3 and transform it to flat structure if needed. Athena will...
Create New form with ReactJS in Kibana using ElasticUI
React is a Javascript library for building user interfaces developed by facebook.React can be used for developing single-page and mobile applications. ElasticUI is a framework. It is a collection of React UI components.It is mostly used for quickly building user...
Reading large files asynchronously in ReactJS using chunks(Hapijs and Papaparse)
Node is an open source development platform for executing javascript code at server-side.It is useful for applications need persistent connection between server and browser.It is mostly used for the real time applications such as chats and web push notifications. Hapi...