Knowledge needed by Architects

Posted by Abhishek on January 04, 2020

General

A competent architect always has an intimate familiarity with the architectural body of knowledge. The software architect should Be comfortable with all branches of software engineering from requirements definition to implementation, development, verification, validation & deployment Be familiar with supporting disciplines such as configuration management and project management Understand current design and implementation tools...

Who is an Enterprise Architect & What do they do

Posted by Abhishek on January 03, 2020

General

Enterprise Architect focusses on working the chief executives of an organization in deciding the high-level direction that an organization/enterprise needs to take from a technology standpoint. In this blog, we will see the traits of Enterprise Architects.

Who is a Technical Architect & What do they do

Posted by Abhishek on January 03, 2020

General

Technical Architect (also known as Application Architects) is usually the leader of the engineering team that develops a project/product. In this blog, we will see the traits of Technical Architects.

Who is a Solution Architect & What do they do

Posted by Abhishek on January 03, 2020

General

Solution Architect focusses on defining the system & its interactions from a problem domain level. In this blog, we will see the traits of Solution Architects.

Customizing Registration Handler Apex Code in Salesforce Open ID Connect Auth Provider

Posted by Abhishek on December 30, 2019

Salesforce

When you play with Salesforce Single Sign-On, it is most probable that you will come across something called the “Registration Handler” class. In this blog, we will take a deep dive into understanding what a RegistrationHandler class is, how to create it, how to customize it and finally use it for production.

Social Sign On with Google Enterprise in Salesforce Org

Posted by Abhishek on December 27, 2019

Salesforce

In this blog, we will explain the steps of enabling social sign on into salesforce enterprise org using your corporate Gmail account. Scenario - John is an employee of an enterprise called “XYZ.com”. The company uses Salesforce as their primary CRM. Just like John, there are many other employees who face issues with remembering username and...

What are Non Linear Data Structures

Posted by Abhishek on December 22, 2019

Fundamentals

Non-Linear Data Structures are a classification of Non-Primitive Data Structures that organizes data in multilevel manner. Features of Non-Linear Data Structures Data Elements are arranged in a sorted order A Data Element has a Hierarchical Relationship to another Data Element All Data Elements cannot be traversed in a single run/iteration Complex to Implement Memory Utilization is...

Queue

Posted by Abhishek on December 22, 2019

Fundamentals

Queues are the most widely used data structures in the real world. Jobs sent to the printer stay in a queue You stand in a queue to get movie tickets at the ticket counter When you have requirements to process something based on the order that you receive them, the ideal choice is to use...

Stack

Posted by Abhishek on December 21, 2019

Fundamentals

Stacks are powerful data structures that can help us solve many complex programming problems. Stacks can be used in some use-cases like Develop UNDO functionality, Build Compilers Evaluate Arithmetic Expressions, Develop navigation features in our application (moving forward and backward), etc Structure of a Stack Stacks can be visualized as a stack of books.

Linked List

Posted by Abhishek on December 15, 2019

Fundamentals

Linked Lists are one of the most commonly used Linear Data Structures after arrays. They solve many problems of arrays and are used for building complex data structures. Unlike arrays, Linked Lists can grow and shrink automatically. A Linked List has a sequence of nodes. Every node has a value & address to next node...