<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>jaspreetchahal.org</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body >
<a href="javascript:void(0)" id="fullscreen">full screen</a>
<script>
$("#fullscreen").bind("click", function() {
var elem = document.getElementById("img"),
req = elem.requestFullScreen || elem.webkitRequestFullScreen || elem.mozRequestFullScreen ;
req.call(elem);
});
</script>
<img src="/path/to/your/img" id="img" />
</body>
</html>
Read more: http://jaspreetchahal.org/jquery-full-screen-facebook-like/#ixzz27n7G2yLD
[Read More]
Database-driven resource bundle
http://stackoverflow.com/questions/5498998/database-driven-resource-bundle-in-spring
https://jira.springsource.org/browse/SPR-364
file upload
http://www.raistudies.com/spring/spring-mvc/file-upload-spring-mvc-annotation/
http://www.techiegyan.com/2009/04/20/limiting-upload-file-size-spring/
http://www.techiegyan.com/2008/06/09/ajax-file-upload-jquery-plugin/
http://stackoverflow.com/questions/4029583/using-spring-3-exceptionhandler-with-commons-fileupload-and-sizelimitexceededex
http://stackoverflow.com/questions/12076818/file-upload-with-spring-mvc
http://springsourcery.org/springSourcery/content/viewContent,1,32.html
http://www.codeproject.com/Articles/460142/ASP-NET-Multiple-File-Upload-With-Drag-Drop-and-Pr
Programming Like Kent Beck
Posted by Jakub Holý on September 12, 2012 Republished from blog.iterate.no with the permission of my co-authors Stig Bergestad and Krzysztof Grodzicki. Three of us, namely Stig, Krzysztof, and Jakub, have had the pleasure of spending a week with Kent Beck during Iterate Code Camp 2012, working together on a...
[Read More]