Archive for February, 2009

You can use given command on prompt.
# tar -zxvf <name>.tar.gz


Command:
# find -name .svn -exec rm -rf {} \;
OR
# find -name “\.svn” -exec rm -rf {} \;


“Do your duty and have faith in God. There is no power on earth that can undo Pakistan. It has come to stay InshAllah.”(Quid-e-Azam)


package com.Web;
import java.io.*;import java.net.*;
public class WebServer extends Thread {    String filePath;    OutputStream out;    Socket sock;    public WebServer(String pathString, OutputStream outStream, Socket s) {        filePath = pathString;        sock = s;        out = outStream;    }    public void run() {        PrintWriter writer = new PrintWriter(out, true);        try {            filePath = (new [...]


Gmail has good feature to tell your last active session.