Enabling Web Component Feature in Chrome
Web Component is an experimental feature as of today 12/06/2014 in many major browser. […]
Enabling Web Component Feature in FireFox
On this day 12th June 2014, Web Component Feature are yet to come in the browser.It is now is an Experimental feature for many latest […]
Google Currency Converter Demo With Eclipse Java Project
Google provides a Currency Converter API services for Consumption by Client Application. The link for this library is listed below:- https://code.google.com/p/currency-converter-api/ The maven dependecy tag to include this library is listed below. <dependency> <groupId>com.tunyk.currencyconverter</groupId> <artifactId>currency-converter-api</artifactId> <version>1.0</version></dependency> In this Demo, “We will see how to configure it in a Java project […]
Web Sockets with Socket.IO And Node.JS
Socket.io provides an web socket infrastructure using Node.JS. It can be installed using Node Package Manger(NPM) by issuing npm -g install socket.io. You can check my previous post to install Node in your machine. In this Demo, “We will crate a simple Web Socket which will write my name on the socket and the client […]