-
Recent Posts
What I'm Doing...
- I'm using Evolution mail client in ubuntu http://bit.ly/4bobBT its hve cool feature like google contacts & calender sync http://bit.ly/curz6 12 hrs ago
- Gmail send later chrome and firefox extensions http://bit.ly/dajupV 1 week ago
- Is there any #RTMFP implementation in open source #Flash media server like #Red5 ..? 3 weeks ago
- A presentation about P2P communication over #RTMFP using #Adobe #FMS http://bit.ly/bjpL5R 3 weeks ago
- Good site for find Linux alternatives [easy to search then http://bit.ly/9QVYCA ] try this http://bit.ly/c3eepy 2010-08-05
- More updates...
Posting tweet...
Recent Comments
- jaydoc on Tamil FM radio for ubuntu
- cpsingh on Offline dictionary for ubuntu 10.04
- wordman on Offline dictionary for ubuntu 10.04
- elanchezhiyank on Offline dictionary for ubuntu 10.04
- umakanth on About
Tags
Category Archives: Programming
Secure login using java servlet
The user authentication is the common task when we create a web application. The servlet have j_security_checkĀ authentication method. This is commonly called as form based authentication. Here the steps for this authentication. This is in your index.jsp or login … Continue reading
How to create and use private / public keys
Hi all, Here the document for how to create private and public keys for login. This is more helpful others can login to your machine without disclose the password. How to create private key for my machine..? Go to /home/root/.ssh … Continue reading
How to add Return-path in php mail
Here is the code for add Return-path in php mail programmatically. $today = date(“F j\\t\h Y, g:i a”); $name = ‘Yourname’; $from = ‘frommail@example.com’; $to = ‘tomail@example.com’; $cc = ‘ccmail@example.com’; $bcc = ‘bccmail@example.com’; $subject = ‘Example Subject’; // To send … Continue reading