Theories are seldom true!

Archive for November 2008

A must read link

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!

how to secure a web application with Filter?

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, [...]

Some useful stuff!

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 [...]


Friend’ blogs

 

November 2008
M T W T F S S
« Oct   Dec »
 12
3456789
10111213141516
17181920212223
24252627282930

Blog Stats

  • 1,207 hits