Search ebooks:

Wednesday, August 20, 2008

Find and Replace Regular expression in Javascript :

var trimreg = /(?:^\s+|\s+$)/; // To remove leading and trailing spaces

docs.sname.value = docs.sname.value.replace(trimreg,''); //sname is the html tag name of one text field

docs.mobile.value = docs.mobile.value.replace(trimreg,''); //mobile is the html tag name of one text field

Friday, April 18, 2008


Java After Hours: 10 Projects You’ll Never Do at Work

Take your Java programming skills beyond the ordinary. Java After Hours: 10 Projects You'll Never Do at Work will make Java your playground with ten detailed projects that will have you exploring the various fields that Java offers to build exciting new programs. You'll learn to:

* Create graphics interactively on Web servers
* Send images to Web browsers
* Tinker with Java's Swing package to make it do seemingly impossible things
* Search websites and send e-mail from Java programs
* Use multithreading, Ant and more!

Increase your Java arsenal by taking control of Java and explore its possibilities with Java After Hours.

http://rapidshare.com/files/108105950/Java.After.Hours.chm

Wednesday, April 2, 2008


Islam overtakes Catholicism as world's largest religion

"For the first time in history, we are no longer at the top: Muslims have overtaken us."

* VITTORIO FORMENTI
* Vatican official, on a report that Islam has overtaken Roman Catholicism as the world's largest religion


http://www.time.com/time/quotes/0,26174,1726526,00.html

Tuesday, March 4, 2008

Installing / reinstalling grub boot loader of Linux SuSE 10.0/10.2/10.3 again after installing windows on a dual boot machine

When we reinstall microsoft windows on a dual boot machine having Linux , The microsoft windows deletes the grub boot loader from the MBR (Master Boot Record), so there remains no way to boot your favorite Linux again. For this we need to reinstall the grub boot loader to have a boot time option to boot the selected system.

Simply follow the steps given below to reinstall the grub boot loader :

(1) Put the first CD or the DVD of SuSE 10.x in the CDROM or DVDROM or the DVD Writer.
(2) Change the boot priority of your machine to DVDROM or CDROM by pressing DEL after you power ON your machine.
(3) Once booted from the CD or DVD , select the option which says "Repair / Boot installed system" and press ENTER.
(4) After entering, the system will take some time to boot the kernel , and it may show you a menu in the text mode or gui mode , Select "boot / install the system" from the menu.
(5) If your hard drive or hard disk has Linux on more than one partition, the system will show you a list of partitions to boot from, choose your partition of Linux and press ENTER.
(6) This will boot your installed Linux :-)
(7) Once your Linux is UP and running , Open a console if you are in the GUI mode and login with the root user. Run the "yast" command. Select "System" on left hand. Under "System" on right hand select "Boot Loader".
(8) Once the "boot loader setting" page comes , look for "Other" option at the right hand bottom corner of the page.
(9) Select "Other" option on the page and choose "Propose New Configuration". Select according to your requirement the default boot operating system.
(10) Alt+f to finish the configuration and Alt+q to exit from yast screen.
(11) Reboot the system, you should now be able to see the grub loader screen on startup.
(12) Enjoy :-)

Tuesday, February 26, 2008


Java, Java, Java, Object-Oriented Problem Solving :

Functional and flexible, this guide takes an objects-first approach to Java programming and problem using games and puzzles. Updated to cover Java version 1.5 features, such as generic types, enumerated types, and the Scanner class. Offers independent introductions to both a command-line interface and a graphical user interface (GUI). Features coverage of Unified Modeling Language (UML), the industry-standard, object-oriented design tool. Illustrates key aspects of Java with a collection of game and puzzle examples. Instructor and Student resources available online. For introductory computer programming students or professionals interested in learning Java.

http://rapidshare.com/files/94796594/Java_Object_Oriented_Problem_Solving.rar.html

Compare two dates in JAVA (Start Date and End Date Comparison) :

-----------------------------------------------------------------
import java.text.DateFormat;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class CompareDates {
public static void main(String[] args) throws ParseException {

DateFormat df = new SimpleDateFormat("yyyy-MM-dd");

// Get Date 1
Date d1 = df.parse("2000-02-01");

// Get Date 2
Date d2 = df.parse("2001-03-02");

String relation;
if (d1.equals(d2))
relation = "the same date as";
else if (d1.before(d2))
relation = "before";
else
relation = "after";
System.out.println(d1 + " is " + relation + ' ' + d2);
}
}

-------------------------------------------------------------

Tuesday, October 30, 2007

Complete Knowledgenet CCSP CBT all in one :

The CCSP certification (Cisco Certified Security Professional) validates advanced knowledge and skills required to secure Cisco networks. With a CCSP, a network professional demonstrates the skills required to secure and manage network infrastructures to protect productivity and reduce costs. The CCSP curriculum emphasizes secure VPN management, Cisco Adaptive Security Device Manager (ASDM), PIX firewall, Adaptive Security Appliance (ASA), Intrusion Prevention Systems (IPS), Cisco Security Agent (CSA), and techniques to combine these technologies in a single, integrated network security solution.
http://rapidshare.com/files/36481483/CCSP_KNOWLEDGENET_EXPRESS.part01.rar
http://rapidshare.com/files/36485477/CCSP_KNOWLEDGENET_EXPRESS.part02.rar
http://rapidshare.com/files/36486649/CCSP_KNOWLEDGENET_EXPRESS.part03.rar
http://rapidshare.com/files/36493681/CCSP_KNOWLEDGENET_EXPRESS.part04.rar
http://rapidshare.com/files/36486666/CCSP_KNOWLEDGENET_EXPRESS.part05.rar
http://rapidshare.com/files/36493399/CCSP_KNOWLEDGENET_EXPRESS.part06.rar
http://rapidshare.com/files/36494717/CCSP_KNOWLEDGENET_EXPRESS.part07.rar
http://rapidshare.com/files/36495517/CCSP_KNOWLEDGENET_EXPRESS.part08.rar