Blog Admin
Tuesday, 7 July 2015
Wednesday, 24 June 2015
Scroll to Top Button in HTML
Just add the below js(java script) in your program and then Execute it.. drag the page down, you can see the button in bottom corner..
1.like this button
var scrolltotop={ //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, controlHTML: '<img src="http://i1155.photobucket.com/albums/p559/scrolltotop/arrow2-1.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links state: {isvisible:false, shouldvisible:false}, scrollup:function(){ if (!this.cssfixedsupport) //if control is positioned using JavaScript this.$control.css({opacity:0}) //hide control immediately after clicking it var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists dest=jQuery('#'+dest).offset().top else dest=0 this.$body.animate({scrollTop: dest}, this.setting.scrollduration); }, keepfixed:function(){ var $window=jQuery(window) var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety this.$control.css({left:controlx+'px', top:controly+'px'}) }, togglecontrol:function(){ var scrolltop=jQuery(window).scrollTop() if (!this.cssfixedsupport) this.keepfixed() this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false if (this.state.shouldvisible && !this.state.isvisible){ this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) this.state.isvisible=true } else if (this.state.shouldvisible==false && this.state.isvisible){ this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) this.state.isvisible=false } }, init:function(){ jQuery(document).ready(function($){ var mainobj=scrolltotop var iebrws=document.all mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) .attr({title:'Scroll to Top'}) .click(function(){mainobj.scrollup(); return false}) .appendTo('body') if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text mainobj.togglecontrol() $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ mainobj.scrollup() return false }) $(window).bind('scroll resize', function(e){ mainobj.togglecontrol() }) }) } } scrolltotop.init()
2.Like this button
add below js
var scrolltotop={ //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, controlHTML: '<img src="http://i1155.photobucket.com/albums/p559/scrolltotop/arrow8.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links state: {isvisible:false, shouldvisible:false}, scrollup:function(){ if (!this.cssfixedsupport) //if control is positioned using JavaScript this.$control.css({opacity:0}) //hide control immediately after clicking it var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists dest=jQuery('#'+dest).offset().top else dest=0 this.$body.animate({scrollTop: dest}, this.setting.scrollduration); }, keepfixed:function(){ var $window=jQuery(window) var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety this.$control.css({left:controlx+'px', top:controly+'px'}) }, togglecontrol:function(){ var scrolltop=jQuery(window).scrollTop() if (!this.cssfixedsupport) this.keepfixed() this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false if (this.state.shouldvisible && !this.state.isvisible){ this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) this.state.isvisible=true } else if (this.state.shouldvisible==false && this.state.isvisible){ this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) this.state.isvisible=false } }, init:function(){ jQuery(document).ready(function($){ var mainobj=scrolltotop var iebrws=document.all mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) .attr({title:'Scroll to Top'}) .click(function(){mainobj.scrollup(); return false}) .appendTo('body') if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text mainobj.togglecontrol() $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ mainobj.scrollup() return false }) $(window).bind('scroll resize', function(e){ mainobj.togglecontrol() }) }) } } scrolltotop.init()
3.Like this button
add below js
var scrolltotop={ //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, controlHTML: '<img src="http://i1155.photobucket.com/albums/p559/scrolltotop/arrow30.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links state: {isvisible:false, shouldvisible:false}, scrollup:function(){ if (!this.cssfixedsupport) //if control is positioned using JavaScript this.$control.css({opacity:0}) //hide control immediately after clicking it var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists dest=jQuery('#'+dest).offset().top else dest=0 this.$body.animate({scrollTop: dest}, this.setting.scrollduration); }, keepfixed:function(){ var $window=jQuery(window) var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety this.$control.css({left:controlx+'px', top:controly+'px'}) }, togglecontrol:function(){ var scrolltop=jQuery(window).scrollTop() if (!this.cssfixedsupport) this.keepfixed() this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false if (this.state.shouldvisible && !this.state.isvisible){ this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) this.state.isvisible=true } else if (this.state.shouldvisible==false && this.state.isvisible){ this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) this.state.isvisible=false } }, init:function(){ jQuery(document).ready(function($){ var mainobj=scrolltotop var iebrws=document.all mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) .attr({title:'Scroll to Top'}) .click(function(){mainobj.scrollup(); return false}) .appendTo('body') if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text mainobj.togglecontrol() $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ mainobj.scrollup() return false }) $(window).bind('scroll resize', function(e){ mainobj.togglecontrol() }) }) } } scrolltotop.init()
4.Like this button
var scrolltotop={
//startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, controlHTML: '<img src="http://i1155.photobucket.com/albums/p559/scrolltotop/arrow34.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links state: {isvisible:false, shouldvisible:false}, scrollup:function(){ if (!this.cssfixedsupport) //if control is positioned using JavaScript this.$control.css({opacity:0}) //hide control immediately after clicking it var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists dest=jQuery('#'+dest).offset().top else dest=0 this.$body.animate({scrollTop: dest}, this.setting.scrollduration); }, keepfixed:function(){ var $window=jQuery(window) var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety this.$control.css({left:controlx+'px', top:controly+'px'}) }, togglecontrol:function(){ var scrolltop=jQuery(window).scrollTop() if (!this.cssfixedsupport) this.keepfixed() this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false if (this.state.shouldvisible && !this.state.isvisible){ this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) this.state.isvisible=true } else if (this.state.shouldvisible==false && this.state.isvisible){ this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) this.state.isvisible=false } }, init:function(){ jQuery(document).ready(function($){ var mainobj=scrolltotop var iebrws=document.all mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) .attr({title:'Scroll to Top'}) .click(function(){mainobj.scrollup(); return false}) .appendTo('body') if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text mainobj.togglecontrol() $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ mainobj.scrollup() return false }) $(window).bind('scroll resize', function(e){ mainobj.togglecontrol() }) }) } } scrolltotop.init()
5.Like this button
add below js
var scrolltotop={ //startline: Integer. Number of pixels from top of doc scrollbar is scrolled before showing control //scrollto: Keyword (Integer, or "Scroll_to_Element_ID"). How far to scroll document up when control is clicked on (0=top). setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]}, controlHTML: '<img src="http://i1155.photobucket.com/albums/p559/scrolltotop/arrow40.png" />', //HTML for control, which is auto wrapped in DIV w/ ID="topcontrol" controlattrs: {offsetx:5, offsety:5}, //offset of control relative to right/ bottom of window corner anchorkeyword: '#top', //Enter href value of HTML anchors on the page that should also act as "Scroll Up" links state: {isvisible:false, shouldvisible:false}, scrollup:function(){ if (!this.cssfixedsupport) //if control is positioned using JavaScript this.$control.css({opacity:0}) //hide control immediately after clicking it var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto) if (typeof dest=="string" && jQuery('#'+dest).length==1) //check element set by string exists dest=jQuery('#'+dest).offset().top else dest=0 this.$body.animate({scrollTop: dest}, this.setting.scrollduration); }, keepfixed:function(){ var $window=jQuery(window) var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety this.$control.css({left:controlx+'px', top:controly+'px'}) }, togglecontrol:function(){ var scrolltop=jQuery(window).scrollTop() if (!this.cssfixedsupport) this.keepfixed() this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false if (this.state.shouldvisible && !this.state.isvisible){ this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0]) this.state.isvisible=true } else if (this.state.shouldvisible==false && this.state.isvisible){ this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1]) this.state.isvisible=false } }, init:function(){ jQuery(document).ready(function($){ var mainobj=scrolltotop var iebrws=document.all mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest //not IE or IE7+ browsers in standards mode mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body') mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>') .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'}) .attr({title:'Scroll to Top'}) .click(function(){mainobj.scrollup(); return false}) .appendTo('body') if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='') //loose check for IE6 and below, plus whether control contains any text mainobj.$control.css({width:mainobj.$control.width()}) //IE6- seems to require an explicit width on a DIV containing text mainobj.togglecontrol() $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){ mainobj.scrollup() return false }) $(window).bind('scroll resize', function(e){ mainobj.togglecontrol() }) }) } } scrolltotop.init()
The End...
Tuesday, 23 June 2015
Most Beautiful Places You Must Visit Before You Die! – part 1
1.Santorini, Greece
2.Plitvice Lakes National Park, Croatia
3.Glacier National Park, Montana
4.Mount Emei Scenic Area: Leshan Giant Buddha, China
5.Bora Bora
6.Antelope Canyon, USA
7.Bridge at summit, Langkawi
8.Capilano Suspension Bridge, Vancouver, British Columbia
9.Restaurant near Sanyou Cave above the Chang Jiang river, Hubei , China
10.Eilean Donan Castle, Scotland
11.The Great Wall of China
12.Petra, Jordan
13.Mount Roraima – Venezuela
14.Machu Picchu, Peru
Thank You...
Wednesday, 10 June 2015
Apple's Swift programming language is going open source
Swift is a multi-paradigm, compiled programming language created by Apple Inc. for iOS and OS X development. Introduced at Apple's 2014 Worldwide Developers Conference (WWDC), Swift is designed to work with Apple's Cocoa and Cocoa Touchframeworks and the large body of existing Objective-C code written for Apple products. Swift is intended to be more resilient to erroneous code ("safer") than Objective-C, and also more concise. It is built with the LLVM compiler framework included in Xcode 6, and uses the Objective-C runtime, allowing C, Objective-C, C++ and Swift code to run within a single program
Last year, Apple introduced Swift, its very own programming language, which was focused on making it easier to build apps. Now, in a bid to make it more palatable to developers, Apple is making another big move: It's making Swift open source. That'll give developers full access to all of Swift's inner workings, and it might even tempt over people who were worried about adopting a proprietary Apple language. "We think Swift is the next big programming language, the one that we'll all be doing application and system programming on for 20 years to come," Apple's SVP of software engineering, Craig Federighi, said during WWDC today. "We think Swift should be everywhere and used by everyone." The language is also getting some upgrades this year with Swift 2, which includes support for new optimization technology, protocol extensions and much shorter compile times.
Friday, 5 June 2015
Unbelievable Places that are hard to believe Really Exist
Bamboo Forest, Japan
Tulip Fields in Netherlands
Wisteria Flower Tunnel in Japan
Tianzi Mountains, China
Salar de Uyuni: One of the World’s Largest Mirrors, Bolivia
Antelope Canyon, USA
Lake Hillier, Australia
Hang Son Doong, Vietnam
Canola Flower Fields, China
Red Beach, Panjin, China
Thank You...
Thursday, 4 June 2015
25 Of The Most Inspirational Quotes Ever
1. “Life is 10% what happens to us and 90% how we react to it.”
– Dennis P. Kimbro
– Dennis P. Kimbro
2. “Whatever the mind of man can conceive and believe, it can achieve.”
– Napoleon Hill
– Napoleon Hill
3. “You don’t learn to walk by following rules. You learn by doing, and by falling over.”
— Richard Branson
— Richard Branson
4. “Too many of us are not living our dreams because we are living our fears.”
– Les Brown
– Les Brown
5. “The quickest way to double your money is to fold it over and put it back in your pocket.”
– Will Rogers
– Will Rogers
6. “To the world you may be just one person, but to one person you may be the world.”
– Brandi Snyder
– Brandi Snyder
7. “When I hear somebody sigh, ‘Life is hard,’ I am always tempted to ask, ‘Compared to what?’”
– Sydney Harris
– Sydney Harris
8. “There is no such thing as failure. Failure is just life trying to move us in another direction.”
– Oprah Winfrey
– Oprah Winfrey
9. “Either you run the day, or the day runs you.”
– Jim Rohn
– Jim Rohn
10. “Choosing to be positive and having a grateful attitude is going to determine how you're going to live your life.”
– Joel Osteen
– Joel Osteen
11. “Believe you can and you’re halfway there.”
– Theodore Roosevelt
– Theodore Roosevelt
12. “Luck is a dividend of sweat. The more you sweat, the luckier you get.”
– Ray Kroc
– Ray Kroc
13. “Live each day as if your life had just begun.”
– Johann Wolfgang Von Goethe
– Johann Wolfgang Von Goethe
14. “If you think you can do a thing or think you can’t do a thing, you’re right.”
– Henry Ford
– Henry Ford
15. “The difference between a successful person and others is not lack of strength not a lack of knowledge but rather a lack of will.”
– Vince Lombardi
– Vince Lombardi
16. “Build your own dreams, or someone else will hire you to build theirs.”
– Farrah Gray
– Farrah Gray
17. “The best revenge is massive success.”
– Frank Sinatra
– Frank Sinatra
18. “If someone tells you, “You can’t” they really mean, “I can’t.”
– Sean Stephenson
– Sean Stephenson
19. “I’ve had a lot of worries in my life, most of which never happened”
– Mark Twain
– Mark Twain
20. “Every strike brings me closer to the next home run.”
– Babe Ruth
– Babe Ruth
21. “Things turn out best for the people who make the best of the way things turn out.”
– John Wooden
– John Wooden
22. “The greatest discovery of all time is that a person can change his future by merely changing his attitude.”
– Oprah Winfrey
– Oprah Winfrey
23. “We become what we think about.”
– Earl Nightingale
– Earl Nightingale
24. “If you can change your mind, you can change your life.”
– William James
– William James
25. “I am not a product of my circumstances. I am a product of my decisions.”
– Stephen Covey
– Stephen Covey
Simple Model Resume
If you want model Resume,download here..
I have attached word document link..
Click below and download Model Resume..
https://drive.google.com/file/d/0B1LWzOqAIYm8dXdqMjdabmM0cW8/view?usp=sharing
Thank You..
Friday, 29 May 2015
இந்தியாவைக் கண்டு உலகே ஆச்சரியப்படும் அரிய தகவல்கள்..!!
1000 வகை மாம்பழங்கள் சுவை, நிறம், வடிவம் என இந்தியாவில் 1000 வகையான மாம்பழ வகைகள் இருக்கின்றன. வேறு எந்த ஒரு கனியும் இவ்வளவு வகைகளில் கிடைப்பதும் இல்லை. விளைவிக்கப்படுவதும் இல்லை.
6 கால நிலைகள் கோடை பருவமழை, கோடை, குளிர் பருவமழை, குளிர்காலம், இலையுதிர் மற்றும் வசந்த காலம் என்று ஆறு கால நிலைகள் இந்தியாவில் நிலவுகின்றன.
அதிக மசூதிகள் இந்துக்கள் நாடு எனும் போதிலும் கூட, உலகிலேயே அதிக மசூதிகள் கொண்ட நாடு இந்தியா தான். உலகெங்கிலும் 4 லட்சம் மசூதிகள் இருக்கின்றன என்பது குறிப்பிடத்தக்கது
சோம்நாத் கோவில் சோம்நாத் கோவிலுக்கும் தென் துருவத்திற்கும் இடையே எந்த நிலப்பரப்பும் கிடையாது.
உலகின் முதல் பல்கலைகழகம் பீகாரில் இருக்கும் தக்ஷில்லா பல்கலைகழகம் தான் உலகின் பழமையான மற்றும் முதல் பல்கலைகழகம். இந்த பல்கலைகழகத்தில் 10,000க்கும் மேற்பட்ட மாணவர்களுக்கு 60வது பாடப் பிரிவுகள் கற்பிக்கப்பட்டுள்ளது.
இராமேஸ்வரம் கோவில் இராமேஸ்வரம் கோவிலில் உள்ள நடைப்பாதை தான் உலகிலேயே நீளமான கோவில் நடைப்பாதை ஆகும். 4000 அடி நீளம் கொண்ட இந்த நடைப்பாதையின் இருப்புரங்களிலும் 985 தூண்கள் இருக்கின்றன.
முதல் கண் அறுவைசிகிச்சை கண் மாற்று அறுவைசிகிச்சை செய்த முதல் நாடு என்ற பெருமை இந்தியாவையே சேரும்.
அரபிக் எண்கள் அரபிக் என்று பெயர் இருந்தாலும், அரபிக் எண்களைக் கண்டுப்பிடித்தவர்கள் இந்தியர்கள் தான்.
மருத்துவத்தின் தந்தை 2500 ஆண்டுகள் பழமை வாய்ந்த ஆயுர்வேதா தான் முதல் மருத்துவ முறையாகும். சுஷ்ருதா, இவர் 2600 வருடங்களுக்கு முன்பே அறுவைசிகிச்சை செய்துள்ளார். அதனால், மருத்துவம் மற்றும் அறுவைசிகிச்சை ஆகியவற்றின் தந்தைகள் இந்தியர்கள் தான்.
உலகின் பணக்கார கோவில் உலகின் பணக்கார கோவில் எனும் பெருமை பத்மனாபசுவாமி கோவிலையே சேரும். சில ஆண்டுகளுக்கு முன்பு இங்கு கண்டெடுக்கப்பட்ட லட்சம் கோடிகளை தாண்டும் அரிய புதையலே இதற்கு காரணம்.
உலகின் பெரிய தபால் துறை இந்தியாவில் மொத்தம் 1,50,000 அஞ்சல் அலுவலகங்கள் இருக்கின்றன. உலகிலேயே பெரிய அஞ்சல் துறை இந்தியாவுடையது தான்.
வைரத்தை கண்டுப்பிடித்தவர்கள் 1896 ஆம் ஆண்டு வரை வைரம் இருக்கும் ஒரே நாடாக அறியப்பட்டது இந்தியாதான். மற்றும் வைரத்தை முதல் முதலில் கண்டுப்பிடித்தவர்களும் இந்தியர்கள் தான்.
ஐ லவ் இந்தியா..
Thursday, 28 May 2015
Motivational story Positive Thinking
1.A Frog decided to Reach Top of the Tree
All frogs shouted, “Its impossible, Its Impossible…”
Still 1 frog Reaches the Top…
How….?He was Deaf…
“BE DEAF TO NEGATIVE THOUGHTS.”
Still 1 frog Reaches the Top…
How….?He was Deaf…
“BE DEAF TO NEGATIVE THOUGHTS.”
2.HOW WOULD YOU LIKE TO BE REMEMBERED?
Alfred Nobel 1833-1896
Since 1901, the Nobel Prize has been honoring men and women from all corners of the globe for outstanding achievements in physics, chemistry, medicine, literature, and for work in peace. The foundations for the prize were laid in 1895 when Alfred Nobel wrote his last will, leaving much of his wealth to the establishment of the Nobel Prize
Just as Alfred Nobel got in touch with his feelings and redefined his values, we should step back and do the same.
What is your legacy?
How would you like to be remembered?
Will you be spoken well of?
Will you be remembered with love and respect?
Will you be missed?
Thank You..
Subscribe to:
Posts (Atom)