Wednesday, September 18, 2019

How to skip certain error or next n number of errors in MySQL replication environment?


MySQL replication is a process which replicates all the data in the MySQL master database to MySQL slave database/s.



Friday, August 16, 2019

How to send custom Email using AWS SES  on Node.js App?

Amazon Simple Email Service (AWS SES) enables you to send and receive email using a reliable and scalable email platform. It only provides a sandbox environment by default to prevent spamming. Amazon SES requires to verify your identities (the domains or email addresses that you used to send emails and receive emails ) in the sandbox environment to confirm that you own them. Because you are only allowed to send emails from verified identities.




Sunday, May 19, 2019

The Twelve-Factor App Methodology for building a successful SaaS Applications


The Twelve-Factor app was published by Heroku co-founder Adam Wiggins in 2011. The Twelve-Factor App Methodology is used to build a successful SaaS Applications. I have discussed 6 factors of The Twelve-Factor App Methodology in the previous article. And the remaining factors will be discussed on here.

Saturday, March 30, 2019

The Twelve-Factor App Methodology for building a successful SaaS Applications

Software as a Service (SaaS) is a software licensing and delivery model. Here, the service provider hosts applications and makes them available to customers over the Internet. Salesforce.com is a well-known example of software as a service.


Saturday, February 9, 2019

What is Level of Assurance?

An entity can be a person, a server a or a client etc. We need secure and standard ways to do entity authentication.



To fulfil that requirement International Standard defines a framework for managing entity authentication assurance in a given context. Which is named as  Entity Authentication Assurance  Framework (EAAF). It specifies four Levels of Assurance(LoA). 

Sunday, November 4, 2018

Fundamental of React

React is a declarative, efficient, and flexible JavaScript library for building user interfaces. It lets you compose complex UIs from small and isolated pieces of code called “components”.  Followings are some fundamentals that you need to know when you work on React.


Saturday, October 6, 2018

An Introduction to React using Flux Architecture

Flux is developed by Facebook as an application architecture for UI  implementation. React is a JavaScript library which is used to build user interfaces.  So Facebook use Flux architecture when they implementing user interfaces with React.

Applications which are implemented in React using flux architecture have four major parts. These are independent nodes with distinct inputs and outputs.
  •    Actions
  •    Dispatcher
  •    Stores        
  •  Controller Views

Unidirectional Data Flow through major parts




Sunday, February 25, 2018

What is Natural Language Processing and how does it works ?


In 1950 Alan Mathison Turing (often called as the father of modern computing) published his famous paper titled “Computing Machinery and Intelligence”. That was a seminal paper on the topic of artificial intelligence. In here Alan introduced a game called "The Imitation Game” and he proposed a variation of this game that involves the computer.

Then Alan Turing expressed an opinion that if a machine could have a conversation with a human and trick the human into thinking the machine was a person itself, then it was artificially intelligent. That was named as Turing test and became the first step to the birth of artificial intelligence.


Sunday, November 12, 2017

What is Quantum Computing?

Today's computers which are named as classical computers, work by manipulating sequence of bits. A bit is the smallest unit of data in a classical computer which has single binary value, either 0 or 1. A quantum computer is worked by manipulating sequence of qubits. But a qubit is not limited to two values. A single qubit can represent 1 or 0 or any quantum superposition of 0 and 1.



Sunday, September 3, 2017

What is Microservices Architecture?

Since everything changes in the digital world, software applications developing techniques are also changing day by day. Microservices Architecture is a software development method which is a variant of the service-oriented architecture (SOA) architectural style.


Sunday, May 7, 2017

What is Docker?



“ It works on your computer. So why is it not working on my computer? ”

 This is a familiar problem with all computer users. Is there a way to solve this problem? Yes. Have you heard about Docker? Docker is the world’s leading software container platform which supports to eliminate this problem. Let’s get to know about Docker.

How to send Slack notification using a Python script?

 In this article,  I am focussing on sending Slack notifications periodically based on the records in the database. Suppose we have to monit...