Git – The distributed VCS that makes a boom!

Version controlling is one of the main tasks in developing an application, no matter how big the application is. The developer will enjoy developing applications when file version control system (VCS) is used. The software life cycle consists of many phases. The major phases are “Integration” and “Maintenance”. VCS is a solution for many problems…Continue reading Git – The distributed VCS that makes a boom!

Ashai Mugam

The name “Shankar Tucker” is now famous among all Facebook users from the release of his song “Nee Nenaindal” featuring the Iyer sisters Viday and Vandan Iyer Matha Amritanandamayi named the boy “Shakar”, and he came to India to study classical music. He is a clarinetist. Now, a new song from the same team, ie,…Continue reading Ashai Mugam

How to center an element using jQuery

A simple function can be used to set elements in the center dynamically. [javascript] jQuery.fn.center = function () { this.css(‘position’,’absolute’); this.css(‘top’, ( $(window).height() – this.height() ) / +$(window).scrollTop() + ‘px’); this.css(‘left’, ( $(window).width() – this.width() ) / 2+$(window).scrollLeft() + ‘px’); return this; } [/javascript] This can be called using [javascript] $(function(){ $(“#a”).center(); }); [/javascript] Where…Continue reading How to center an element using jQuery