Monday, August 8, 2011
What is happening in Javascript multiplication?
Friday, November 20, 2009
How to download video's from youtube.com
- Goto Youtube.com
- Now activate tamperdata from Firefox tools menu.
- Play the video you want to download
- Now open the tamper data opened window.
- There apply a filter "get".
- then you will get a link.
- right click on that link and go to open in new tab.
- Copy the url to notepad.
- Remove all the non-necessary parameters from the URL and the needed parameters are the following - video-id, t, fmt
- [nothing] = flv
- 17 = 3gp
- 18 = mp4
- 22 = High Definition[if available]
Tuesday, July 28, 2009
A simple Quote
ബക്ഷനതിന്നപെക്ഷിക്കുന്ന പോലെ
കാലഹിനാ പരിഗ്രതസ്ഥമാം ലോകവും
ആലോല ചെതസ്സാ ഭോഗങ്ങള് തേടുന്നു
Tuesday, July 7, 2009
Religion And Leadership
Thursday, December 4, 2008
What is Ajax?
Google Maps is one well-known application that uses Ajax. The interface allows the user to change views and manipulate the map in real time. Ajax applications do not require installation of a plug-in, but work directly with a Web browser. Because of the technique's reliance on XMLHttpRequest, early applications worked only with Microsoft's Internet Explorer browser, but most other browsers now support Ajax.
Applications created with Ajax use an engine that acts as an intermediary between a user's browser and the server from which it is requesting information. Instead of loading a traditional Web page, the user's browser loads the Ajax engine, which displays the page the user sees. The engine continues to run in the background, using JavaScript to communicate with the Web browser. User input or clicking on the page sends a JavaScript call to the Ajax engine, which can respond instantly in many cases. If the engine needs additional data, it requests it from the server, usually using XML, while it is simultaneously updating the page.
Ajax is not a proprietary technology or a packaged product. Web developers have been using JavaScript and XML in combination for several years. Jesse James Garrett of the consultancy firm Adaptive Path is credited with coining the name "Ajax" as a shorthand way to refer to the specific technologies involved in a current approach.
Wednesday, November 26, 2008
Vision - Is this an illusion?
xmlHttpObject
if (window.ActiveXObject) {
return(new ActiveXObject("Microsoft.XMLHTTP"));
} else if (window.XMLHttpRequest) {
return(new XMLHttpRequest());
} else {
return(null);
}
}