Author Archives: techno
How to create basic wordpress plugin
There are many things that you can do with your wordpress plugin to enhance your website that can also be used by other website owners. In this post we will… Read more
How to create Download File button using Java Servlets
Before you read this post i would recommend you to go through these earlier post to understand what we did and what we are going to do. Convert SVG to… Read more
How to use Java Servlets and Ajax
In previous post we saw an example of how to convert SVG to PNG using Java Servlet. You can either use a submit button to submit form to servlet or… Read more
Convert SVG to PNG using Java Servlet
I am going to cover several aspects of this project in other posts. In this post i will only cover how to convert SVG to png. I will use Batik… Read more
Validating Facebook cookie for current logged in user
Here is a small class in C# to validate the Facebook cookie (fbsr_APPID) Here I have used Jayrock’s json C# library to handle the json strings in C#. public string… Read more
Auto Submit Sitemap to Google search engine
google provides a url to auto submit sitemap to google search engine. http://www.google.com/webmasters/sitemaps/ping?sitemap=[SITEMAP_PATH] To Submit sitemap to google using C# WebClient wc = new WebClient(); wc.DownloadString(“http://www.tozoy.com/sitemap/default.aspx”); string googleSubmitURL = “http://www.google.com/webmasters/sitemaps/ping?sitemap=http://www.yoursearchbuddy.com/sitemap/sitemap.xml”;… Read more
Closure in Javascript
Closure in JavaScript is a very typical concept and as I am writing this post, even I am not sure weather I can explain it properly or not. What I… Read more
Passing parameters to window in Titanium appcelerator
Titanium is a JavaScript based framework, which encapsulates the native APIs and exposes them using JavaScript interfaces. to open a new window in Titanium. var win = Ti.UI.createWindow({ id:’window’, url… Read more
Front-end Job Interview Questions
JOB INTERVIEW QUESTIONNAIRE General Questions: Are you on Twitter? If so, who do you follow on Twitter? Are you on Github? If so, what are some examples of repos you… Read more
Geolocation using HTML5
HTML5 presents a GeoLocations API, which enables javascript to get the position of the device using javascript. if (navigator.geolocation) { navigator.geolocation.getCurrentPosition(function(pos) { var latitude = position.coords.latitude; var longitude = position.coords.longitude;… Read more

