wiki

 

Browse > Pages

 Results 1 to 5 of 9   Previous   Next

CompSci-351

FileModified: 3 Sept 2008, 00:43Created: 3 Sept 2008, 00:28

Requirements for CompSci-351

starting/executing a makefile

make -f makefileName

sample makefile contents make sure you have "tabs" before every new line of code

 
# Create executable file "main"
main: time.o
        g++ main.cpp time.o -o main
# Create object file "time.o"
time.o: time1.cpp time1.h
        g++ -c time1.cpp -o time.o
 

reference: http://linuxgazette.net/issue83/heriyanto.html


JBoss 4 on Debian with Tomcat

FileModified: 2 Aug 2008, 20:29Created: 2 Aug 2008, 11:52

Debian howto: [1]

apache2 Mod jk2 setup [2]


Subversion

FileModified: 3 Feb 2008, 01:08Created: 3 Feb 2008, 00:47

Go here for installing.

http://www.howtoforge.com/debian subversion websvn


For eclipse go here.

http://www-128.ibm.com/developerworks/opensource/library/os-ecl-subversion/


Apache2 SSL

FileModified: 7 Nov 2007, 00:23Created: 7 Nov 2007, 00:23

Install apache2 in debian etch

  1. apt-get install apache2

Install openssl using the following command

  1. apt-get install openssl ssl-cert

Install PHP5 support for apache2 in debian etch

  1. apt-get install libapache2-mod-php5 php5-cli php5-common php5-cgi

Once you install apache server you need to Generate a certificate,Enable Apache SSL support and Configure your SSL options.

Generate A certificate

... Read More(545 words)

Javascript Password Hacking

FileModified: 17 Oct 2007, 03:41Created: 17 Oct 2007, 03:23

Javascript Password Hacking
written by

	   _______________________________________      __    _    _   __  __  ______
	  /	 |  ____||    | ||       ||  __     /    | |  | | / / /   |  __ 
	 /   ____/| |____ |    | ||__   __|| |  | |  / __  | |  | |/ /  |  | | |  | |
	 |/ /___ |  / / ||/ / | |   |/|   |/ --//  |/|__|/||/|  |/ //   |||| |/ --//
	 ____   |  ____||  |   |   | |   |  _    |  __  || |  |      |||| |  _   
... Read More(2492 words)

Previous 1 2 Next