Posted by: Rajaganesh Vanarajan on: November 14, 2008
How to become a creative genius?
found this good,
http://www.lifehack.org/articles/lifehack/how-to-become-a-creative-genius.html
check out!
Posted by: Rajaganesh Vanarajan on: November 6, 2008
This post is aimed at helping some small web application developers to secure their resources from unauthorized access. Just write a filter like this,
public class AuthenticationFilter implements Filter {
private FilterConfig config = null;
public void init(FilterConfig config) throws
ServletException {this.config = config;
}
public void destroy() {
config = null;
}
/*
* FILTER METHOD
*/
public void doFilter(ServletRequest request, ServletResponse response,FilterChain chain) throws IOException, [...]
Posted by: Rajaganesh Vanarajan on: November 4, 2008
It was time for me to research and i got to know certain new things and hope this may be useful.
1. JQuery – you can do all mayajals with this Java script API, like autosuggest, animating div tags, and a count less more things.
2. Prototype – this is more similar to JQuery
3. TableSorter – An [...]