Tuesday, 1 November 2016

What are Instead of Triggers

Instead of triggers are used to reverse the default action of the query same as the word ‘insted of’ denotes. For example if we are going to execute query to delete record in Empoyee table and we want to first check whether id of employee passed Exist in database or not then we can place a “Insted of Trigger” in database on Delete Operation for that particular table and we will...

Thursday, 6 October 2016

Webhooks Vs WebSockets

WebSockets Can be used to exchange event notifications but it requires a constact network connection . Signalr is best example of Websockets that can be used within an Asp.net application Whereas WebHooks are for event notification across other web applications and other external services. It is similar to b2b communication. Example  You can receive a WebHook when someone...

What are Webhooks and Webhooks vs WebAPI ?

 If you ever used API’s then you know they follow request - response mechanism . Every Request is followed by a Relevant API Response Example 1 -  if we need to fetch our emails we will make a Reques to API with required credentials like Emailid, MessageCount and userid and API will give our Emails in Response to Source From where Request Came Whereas As Webhooks...

What are Webhooks and Webhooks vs WebAPI ?

 If you ever used API’s then you know they follow request - response mechanism . Every Request is followed by a Relevant API Response Example 1 -  if we need to fetch our emails we will make a Reques to API with required credentials like Emailid, MessageCount and userid and API will give our Emails in Response to Source From where Request Came Whereas As Webhooks...

Tuesday, 4 October 2016

Gitless version control system

Gitless is an experimental version control system built on top of Git. Many people complain that Git is hard to use. We think the problem lies deeper than the user interface, in the concepts underlying Git. Gitless is an experiment to see what happens if you put a simple veneer on an app that changes the underlying concepts. Because Gitless is implemented on top of Git (could...

Git Cheatsheet

Git is the open source distributed version control system that allows to perform GitHub activities on your desktop. This cheat sheet summarizes commonly used Git command line instructions for quick reference. Git cheat list list last 20 hashes in reverse git log -n 20 --reverse --format="%h %ae %s" --abbrev-commit try a new output for diffing git diff --compaction-heuristic...

Sunday, 18 September 2016

SOLID Principles

 SOLID Principles are set of rules that Help us to write Better quality of code . By Better quality of code  I mean Code that can talk , Code that is extensible , Code that is loosely coupled , Code that is abstract and secure . SOLID Principles guide us how we should design our Software / Web Applications . Most of the Unsuccessful Software lack SOLID Principles...

Sunday, 28 August 2016

Medical ATM's In India

Yes, You heard it right 'Medical ATM' . Similar to ATM Machines To Withdraw money Pilot Project for 1 year is launched in India in which Government has provided ATM's to Withdraw their medicines . You will be surprised & having  number of questions in your mind regarding...

Saturday, 27 August 2016

Javascript Event Propagation vs Event PreventDefault

Event Propagation vs Event PreventDefault Event Propagation Event Propagation Stops the Event from bubbling or making the event Chain .  Example : -  A Click Event on a <td> tag will also fire click event on it's parent <tr> and this event chain also continues to parent <table> tag of that <tr> this makes a event chain in order...

Javascript Event StopPropagation

Event Propagation Event Propagation Stops the Event from bubbling or making the event Chain .  Example : -  A Click Event on a <td> tag will also fire click event on it's parent <tr> and this event chain also continues to parent <table> tag of that <tr> this makes a event chain in order to stop this event Chain propagation we can Use StopPropagation...