I guess you all are surprised just as me, when i saw this super cool stuff. just imagine the site you use most i.e. Facebook with Speech Recognition. you just say reply and message sent or just say to like or share a post and its get done.I am not going to say much you should have a look at this stuff otherwise you won't gonna believe me so click Here for demo . Note : use chrome browser.
Setup Speech Recognition for your web Application
you just need to add few lines of code .so its quite easy i say.
Sample Code
<script src="//cdnjs.cloudflare.com/ajax/libs/annyang/0.2.0/annyang.min.js">
</script>
<script>
if (annyang)...
Thursday, October 24, 2013
Wednesday, October 23, 2013
0
JavaScript Libarary - Chosen
Its 3rd in the series and 3rd day of the week so i decide to go with Chosen .its an open source project by harvest .This tiny library makes your Select box quite beautiful and user friendly.
As i always say start with a quick demo.this time its just a snapshot but you can see difference very clearly.
chosen js -onl9class
Chosen js - Available Features
Standard Select
Multiple Select
<optgroup> Support : Single/Multiple select with group
Default Selected and Disabled Support
Hide Search on Single Select:if no of option are less than threshold value search option will be disabled
Default Text Support
No Results Text Support:...
Tuesday, October 22, 2013
0
JavaScript Libarary - Accounting JS
Its Tuesday and today we are gonna talk about Another JavaScript library which is quite different from others its "Accounting.js". Accounting JS is a tiny library created by Joss which can be used to format the number,money and currency .
I like to Start by showing a Demo so lets have a look below.
I hope you like the demo and wanna try it in your projects so lets move on and see what are the features of this JavaScript Library.
Available Mathods
formatMoney() - format any number into currency
formatColumn() - format a list of values for column-display
formatNumber() - format a number with custom precision and localisation
toFixed()...
Saturday, October 19, 2013
0
JavaScript Libarary - Sketch JS
Today i am Starting a new season on this blog. Here we will be talking on Different JavaScript Libraries and we will see some amazing examples of them.
1st in the series is sketch.js i choose to start with sketch because wanted to start with something creative with fun.
Sketch Js is very to to use java script framework that allows your users to gain the power of your and their imagination . See the Example below you gonna love sketch js the next moment. just move your mouse in that.
Start with the : Demo
How to Use Sketch Js
its very Easy to use sketch.js just grab the latest version of sketch.js (or minified)
from GitHub...
Tuesday, April 2, 2013
1
Facebook Charging Money to send Message to Unknown's Inbox
Finally Facebook became the just like other dating site where nothing is free . Today i tried to send a Message to someone unknown, And got surprise to see that i need to pay the money to send message to inbox otherwise it will be delivered to Other message box. here is the snapshot of the message shown to me.
Send this message to her Inbox for रु19.26 INR
Just send this message to her Other folder—
Facebook charging Money for sending message to inbox
Facebook charging Money for sending message to inbox - Payment Method
...
Wednesday, March 20, 2013
0
Handling Session in JSP
In this Tutorial we are going to see that how can we Handle SESSION in JSP.
1. Setting Session :
Before we validate or check the existing session it is important to know that how we set session in JSP.
we use session.setAttribute("ATTRIBUTE NAME","ATTRIBUTE VALUE"); you can set as many attribute as you want.
2. Retrieving valuse from session attribute
To retrieve value from session attribute we use following method. session.getAttribute("attribute name");
to store the retrieved value in a variable we write code as shown below.
data-type variable-name=(data type cast)session.getAttribute("attribute...
Wednesday, March 13, 2013
0
Web.XML Explained
apache web.xml
Deployment Descriptor
tutorial
web project
web xml
web.xml
web.xml tutorial
webshpere
The web.xml Deployment Descriptor file tell about that how application will be deployed in the server or servlet container such as TOMCAT
This file is Required for every application which will be deployed on Tomcat/Apache . The location of Web.XML is always Application-root/WEB-INF/web.xml or WebContent/WEB-INF/web.xml
There is minimum one tag is required in web.xml that is <web-app> TAG. This contains following information
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee...
2
File Download Script For JSP

In this Tutorial i'm going to explain how you can serve files to your users using JSP. Since we are not serving a HTML page so first we need to tell the browser that what kind of data we are going to serve for that we set Response Headers
response.setContentType("application/msword"); response.addHeader( "Content-Disposition","attachment; filename=your file name" );
Here application/msword is the mime type you can search internet for diff. mime type required for diff. extensions few commonly used are
image/jpeg
text/plain
application/pdf
link format for filedownload
<a href="download.jsp?filename=myresume.doc">Download...
Wednesday, February 27, 2013
0
Integrating Image slider to a Web Page
In this tutorial step by step i am going to expalin that how you can integrate slider into your web application.
Prerequisite
Download thie required files . i packed all required files in a zip , click Here to download zip
if you Downloded the files . then extract them and folllow these steps.
create a New HTML file or if you want to integrate in existing Page . create a New div tag whre ever you want and follow next step
Copy all files to your project directory if you want to add this to existing Project
add following files to your Headerof the Page
<link rel="stylesheet" href="themes/default/default.css" type="text/css"...
Friday, February 22, 2013
0
Create Relationship Timeline on Facebook
In Facebook Timeline there is feature of creating a Relationship timeline By which you can see what happens between you and other person on Facebook even you can share it with your friends , customize it by uploading cover photo.
How to build it ?
1. in chat bar hover on the person name to whom with you wanna see relationship , it display a box ,click on see friendship link
2. open user profile , click on settings icon tab and then select see friendship.
...
Subscribe to:
Posts (Atom)