How to connect to the database using OIC

OIC Connectivity Agent Installation As not all applications run on the cloud, the agent framework can help us build hybrid cloud solutions, allowing on-premise and cloud applications to communicate with each other. Connectivity Agents are required for Oracle Integration Cloud to exchange messages with on-premise applications like third party applications/Database…

New Era of Web Development

Recently, StackOverflow released their survey of the developer community and shared very interesting insights. In the survey, we can see the growing popularity of  Javascript, HTML, and CSS (Web Technologies). In fact, in survey 3 out of top 5 are web programming languages.  How far we came The web was…

Transition from ICS to OIC

Introduction The transition between ICS and OIC is a relatively straight forward one using the export and import tooling. But the real challenge is the impact to organizations appears to be the change in licensing models as OIC works with the newer Universal Credit Model (UCM) whereas ICS is in the older…

Top React Interview Questions

What are refs used for in React? Refs are used to get reference to a DOM node or an instance of a component in React. Good examples of when to use refs are for managing focus/text selection, triggering imperative animations, or integrating with third-party DOM libraries. You should avoid using…

Why you should update to React 16

What’s new in React 16? The new version of React 16 comes with a lot of new features and improvements to stability. Facebook, the company behind React, has rewritten the entire core architecture making it able to support long-awaited features. In this post, we will explore the changes, and how…

Javascript - OOP VS functional programming

Object-oriented programming (OOP) is a programming paradigm based on the concept of “objects”, which are data structures that contain data, in the form of fields, often known as attributes; and code, in the form of procedures, often known as methods. Functional programming is a programming paradigm, a style of building…