Posts

Showing posts from September, 2009

Partisipate In Google Summer Of Code(GSOC)

Image
Hey if you are interested in a open source  programming gsoc is the best event to a go to.It is held every year And is Done by Google and is a great place to learn how to work in open source  programming  there  are  a lot of benifites.And if you are new to working in big projects its a great event  watch this vedio to get a good idea                                 for more information goto  http://code.google.com/soc/

Watch funny people online

Image
Watch the newest comdey online Release Date:  2009 Duration:  132min Category:  Comdey , Psychological Drama, Showbiz Comedy Links- 1- http://search.ovguide.com/movies_tv.php?q=funny%20people 2- http://missedashow.net/media/4615/Funny_People_2009/ 3- http://tv-links.cc/movie/funny-people-2009.htm

How to include Google maps in your website

hey google maps is a cool tool you can use in your web sites and its very easy to add it but there is one problem google has rules for free users that they cannot use it for commercial purpose's but u can use it if you are building for fun.if you realy like it and want it you can by it for commercial use here is the first few steps to get it done goto     http://code.google.com/apis/maps/  and there will be a link called  Sign up for a Google Maps API key.   to get this feature you should own a gmail account because you have to sign up using you gmail account then they will give you a API key that you will use in the code to get the service <script src="http://maps.google.com/maps?file=api&v=2&sensor=true_or_false&key=[put the API key you got here]" type="text/javascript"></script> <script type="text/javascript"> function initialize() { if (GBrowserIsCompatible()) { var map = new GMap2(docu

And Image Viewer using Ajax

This is a image viewer made using Ajax its cool no refreshing and realy quick thats the good of Ajax var xmlHttp; function show(i){ document.getElementById("state").value="1"; document.getElementById("num").value=i; showPics(); } function showPics() { xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Your browser does not support AJAX!"); return; } xmlHttp.onreadystatechange=stateChanged; xmlHttp.open("Get","getpics",true); xmlHttp.send(null); } function stateChanged() { if (xmlHttp.readyState==4) { if(xmlHttp.status==200){ var pics=new Array(); var xmlDoc=xmlHttp.responseXML.documentElement; var links = xmlDoc.getElementsByTagName("picture"); var state= document.getElementById("state").value; var num = document.getElementById("num").value; for ( var i = 0; i < 3; ++i ) { try{ pics[i] = links[i].childNodes[0].nodeValue.toString(); }catch(err){ break; } } if(state=="0&qu

How to make web based a wordpad using gwt

Image
gwt is one of the best ways to develop user frendly web applications this is my first project done using gwt i want be able to put the complete code because its too long but i'll put a few useful codes Creating a menuBar(this goes in the class that extends EntryPoint) MenuBar menu = new MenuBar(); menu.setAutoOpen(true); menu.setWidth("500px"); menu.setAnimationEnabled(true); // Create the file menu MenuBar fileMenu = new MenuBar(true); fileMenu.setAnimationEnabled(true); menu.addItem(new MenuItem(constants.cwMenuBarFileCategory(), fileMenu)); String[] fileOptions = {"New","Open","Save","Save As","Print","Print Preview","Exit"}; for (int i = 0; i <fileOptions.length; i++) { fileMenu.addItem(fileOptions[i], menuCommand); fileMenu.addSeparator(); } // Create the edit menu MenuBar editMenu = new MenuBar(true); menu.addItem(new MenuItem(constants.cwMenuBarEditCategory(), editMenu)); String[] edi

my first post

hi guys this is my first post just for checking