Search Engine

Google
 

Sunday, December 30, 2007

C++ and OOP concepts

1. Differentiate persistent & non-persistent objects?

Persistent refers to an object's ability to transcend time or space. A persistent object stores/saves its state in a permanent storage system with out losing the information represented by the object.

A non-persistent object is said to be transient or ephemeral. By default objects are considered as non-persistent.

How can a '::' operator be used as unary operator?

Answer:

The scope operator can be used to refer to members of the global namespace. Because the global namespace doesn’t have a name, the notation :: member-name refers to a member of the global namespace. This can be useful for referring to members of global namespace whose names have been hidden by names declared in nested local scope. Unless we specify to the compiler in which namespace to search for a declaration, the compiler simple searches the current scope, and any scopes in which the current scope is nested, to find the declaration for the name.

Describe the main characteristics of static functions.

Answer:

The main characteristics of static functions include,

It is without the a this pointer,
It can't directly access the non-static members of its class
It can't be declared const, volatile or virtual.
It doesn't need to be invoked through an object of its class, although for convenience, it may.
What is name mangling?

Answer:

Name mangling is the process through which your c++ compilers give each function in your program a unique name. In C++, all programs have at-least a few functions with the same name. Name mangling is a concession to the fact that linker always insists on all function names being unique.

Example:

In general, member names are made unique by concatenating the name of the member with that of the class e.g. given the declaration:

class Bar

{

public:

int ival;

...

};

ival becomes something like:

// a possible member name mangling

ival__3Bar

Consider this derivation:

class Foo : public Bar

{

public:

int ival;

...

}

The internal representation of a Foo object is the concatenation of its base and derived class members.

// Pseudo C++ code

// Internal representation of Foo

class Foo

{

public:

int ival__3Bar;

int ival__3Foo;

...

};

Unambiguous access of either ival members is achieved through name mangling. Member functions, because they can be overloaded, require an extensive mangling to provide each with a unique name. Here the compiler generates the same name for the two overloaded instances(Their argument lists make their instances unique).

What is slicing?

Answer:

Slicing means that the data added by a subclass are discarded when an object of the subclass is passed or returned by value or from a function expecting a base class object.

Explanation:

Consider the following class declaration:

class base

{

...

base& operator =(const base&);

base (const base&);

}

void fun( )

{

base e=m;

e=m;

}

As base copy functions don't know anything about the derived only the base part of the derived is copied. This is commonly referred to as slicing. One reason to pass objects of classes in a hierarchy is to avoid slicing. Other reasons are to preserve polymorphic behavior and to gain efficiency.

What is a smart pointer?

Answer:

A smart pointer is an object that acts, looks and feels like a normal pointer but offers more functionality. In C++, smart pointers are implemented as template classes that encapsulate a pointer and override standard pointer operators. They have a number of advantages over regular pointers. They are guaranteed to be initialized as either null pointers or pointers to a heap object. Indirection through a null pointer is checked. No delete is ever necessary. Objects are automatically freed when the last pointer to them has gone away. One significant problem with these smart pointers is that unlike regular pointers, they don't respect inheritance. Smart pointers are unattractive for polymorphic code. Given below is an example for the implementation of smart pointers.

Example:

template

class smart_pointer

{

public:

smart_pointer(); // makes a null pointer

smart_pointer(const X& x) // makes pointer to copy of x


X& operator *( );

const X& operator*( ) const;

X* operator->() const;


smart_pointer(const smart_pointer &);

const smart_pointer & operator =(const smart_pointer&);

~smart_pointer();

private:

//...

};

This class implement a smart pointer to an object of type X. The object itself is located on the heap. Here is how to use it:

smart_pointer p= employee("Harris",1333);

Like other overloaded operators, p will behave like a regular pointer,

cout<<*p;

p->raise_salary(0.5);

Name the operators that cannot be overloaded.

Answer:

sizeof . .* .-> :: ?:
Name some pure object oriented languages.

Ans:- Smalltalk, Java, Eiffel
What is an adaptor class or Wrapper class?

Answer:

A class that has no functionality of its own. Its member functions hide the use of a third party software component or an object with the non-compatible interface or a non- object- oriented implementation.

What is a dangling pointer?

Answer:

A dangling pointer arises when you use the address of an object after its lifetime is over.

This may occur in situations like returning addresses of the automatic variables from a function or using the address of the memory block after it is freed.

What is an Iterator class?

Answer:

A class that is used to traverse through the objects maintained by a container class. There are five categories of iterators:

input iterators,
output iterators,
forward iterators,
bidirectional iterators,
random access.
An iterator is an entity that gives access to the contents of a container object without violating encapsulation constraints. Access to the contents is granted on a one-at-a-time basis in order. The order can be storage order (as in lists and queues) or some arbitrary order (as in array indices) or according to some ordering relation (as in an ordered binary tree). The iterator is a construct, which provides an interface that, when called, yields either the next element in the container, or some value denoting the fact that there are no more elements to examine. Iterators hide the details of access to and update of the elements of a container class.

The simplest and safest iterators are those that permit read-only access to the contents of a container class. The following code fragment shows how an iterator might appear in code:

cont_iter:=new cont_iterator();

x:=cont_iter.next();

while x/=none do

...

s(x);

...

x:=cont_iter.next();

end;

In this example, cont_iter is the name of the iterator. It is created on the first line by instantiation of cont_iterator class, an iterator class defined to iterate over some container class, cont. Succesive elements from the container are carried to x. The loop terminates when x is bound to some empty value. (Here, none)In the middle of the loop, there is s(x) an operation on x, the current element from the container. The next element of the container is obtained at the bottom of the loop.

What is the use of ‘using’ declaration.

Answer:

A using declaration makes it possible to use a name from a namespace without the scope operator.

Define namespace.

Answer:

It is a feature in c++ to minimize name collisions in the global name space. This namespace keyword assigns a distinct name to a library that allows other libraries to use the same identifier names without creating any name collisions. Furthermore, the compiler uses the namespace signature for differentiating the definitions.

http://the-name-less-blog.blogspot.com/2005/12/c-oop-concepts.html#links

SQL tips and advance

download great ebook for your smart SQL tips and advance, it's
absolutly free
http://freepdf-ebook.blogspot.com/2007/12/teach-your-self-sql-in-21-d...

Free Python Programming books

This time I came across one free python programming books site.
Three free books on python and object oriented programming are provided on this site.

http://homepage.mac.com/s_lott/books/nonprogrammer.html
Its a basic(python) tutorial for beginners.

http://homepage.mac.com/s_lott/books/python.html
A comprehensive python book for experienced programmers.

http://homepage.mac.com/s_lott/books/oodesign.html
Its a book for serious designers.

All three books are in Creative Commons License.

Wednesday, December 19, 2007

SAP EBooks Links

Sap Help
http://rapidshare.de/files/4541109/Sap_Help.zip.htmlSAP Enterprise Modelling - Consultants Handbook
http://rapidshare.de/files/4541148/SAP_Enterprise_Modelling_-_Consultants_Handbook.zip.html

Prentice Hall PTR SAP/R3 for Everyone
http://rapidshare.de/files/4543090/Prentice.Hall.PTR.SAP.R3.for.Everyone.Jul.2005.zip.html

Prentice Hall PTR SAP/R3 for Everyone
http://www.megaupload.com/?d=43J9A58C
SAP Enterprise Modelling - Consultants Handbook
http://dc1.4shared.com/download/197936/c50b81b8/SAP_Enterprise_Modelling_-_Consultants_Handbook.html
Sap Help
http://www.megaupload.com/?d=41CKEVIF

Prentice Hall - mySAP Toolbag for Performance Tuning and Stress Testing
http://dc1.4shared.com/download/271451/1922b3dd/Prentice_Hall_-_mySAP_Toolbag_for_Performance_Tuning_and_Stress_Testing.html
Software Books - Enterprise Java for SAP
http://dc1.4shared.com/download/271452/802be267/Software_Books_-_Enterprise_Java_for_SAP.html
NOTE :
For dc1.4shared.com links paste the link in the browser (press enter) & scroll down the page to get the Download button at the bottom. Just click Download.

http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm http://help.sap.com/printdocu/core/Print46c/en/Data/htm/english.htm

Tuesday, December 4, 2007

250+ Tech books online

http://www.parsian.net/set1252/pages/books.htm

2
10 minute guide to Microsoft exchange 5.0
http://www.parsian.net/set1252/pages/books.htm

3
10 minute guide to outlook 97
http://www.parsian.net/set1252/pages/books.htm

4
10 minute guide to schedule+ for windows 95
http://www.parsian.net/set1252/pages/books.htm

5
ActiveX programming unleashed
http://www.parsian.net/set1252/pages/books.htm

6
ActiveX programming unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

7
Advanced perl programming
http://www.hk8.org/old_web/

8
Advanced PL/SQL programming with packages
http://www.hk8.org/old_web/

9
Adventure in Prolog/AMZI
www.oopweb.com

10
Algorithms CMSC251/Mount, David
www.oopweb.com

11
Alison Balter’s Mastering Access 95 development, premier ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

12
Apache : The definitive guide, 3rd.ed.
http://www.hk8.org/old_web/

13
Beej’s guide to network programming/Hall, Brain
www.oopweb.com

14
Beyond Linux from Scratch/BLFS Development Team
http://book.onairweb.net/computer/os/linux/Administration/Beyond_Linux_From_Scratch/

15
Borland C++ builder unleashed
http://www.parsian.net/set1252/pages/books.htm

16
Building an intranet with windows NT 4
http://www.parsian.net/set1252/pages/books.htm

17
Building an Intranet with Windows NT 4
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

18
Building expert systems in prolog/AMZI
www.oopweb.com

19
C programming language
http://book.onairweb.net/computer/pl/C/The_C_Programming_Language_by_K&R/

20
C Programming/Holmes, Steven
www.oopweb.com

21
C++ Annotations
www.oopweb.com

22
CGI developer’s guide
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

23
CGI manual of style
http://www.parsian.net/set1252/pages/books.htm

24
CGI manual of style online
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

25
CGI programming
http://www.hk8.org/old_web/

26
CGI programming unleashed
http://www.parsian.net/set1252/pages/books.htm

27
CGI programming with Perl, 2nd.ed.
http://www.hk8.org/old_web/

28
Charlie Calvert’s Borland C++ builder unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

29
Client/server computing, 2nd.ed.
http://www.parsian.net/set1252/pages/books.htm

30
Client-server computing, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

31
Common LISP, the language/Steele, Guy
www.oopweb.com

32
Compilers and compiler generators : an introduction with C++/Terry, P.D.
www.oopweb.com

33
Complete idiot’s guide to creating HTML webpage
http://www.parsian.net/set1252/pages/books.htm

34
Computer graphics CMSC 427/Mount, David
www.oopweb.com

35
Configuring and troubleshooting the windows NT/95 registry
http://www.parsian.net/set1252/pages/books.htm

36
Creating commercial websites
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

37
Creating web applets with Java
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

38
Crystal Reports.NET
http://www.crystalreportsbook.com/Chapters.asp

39
Curious about the internet
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

40
Curious about the internet?
http://www.parsian.net/set1252/pages/books.htm

41
Dan appleman’s developing activeX components with Visual Basic 5
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

42
Dan appleman’s developing activex components with Visual Basic 5.0
http://www.parsian.net/set1252/pages/books.htm

43
Data structures CMSC420/Mount, David
www.oopweb.com

44
Database developer’s guide with visual basic 4, 2nd.ed.
http://www.parsian.net/set1252/pages/books.htm

45
Database developer’s guide with Visual Basic 4, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

46
Database developer’s guide with Visual C++ 4, 2nd.ed.
http://www.parsian.net/set1252/pages/books.htm

47
Database developer’s guide with Visual C++ 4, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

48
Design and analysis of computer algorithms CMSC451/Mount, David
www.oopweb.com

49
Designing implementing Microsoft internet information server
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

50
Designing implementing Microsoft proxy server
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

51
Developing for netscape one
http://www.parsian.net/set1252/pages/books.htm

52
Developing intranet applications with java
http://www.parsian.net/set1252/pages/books.htm

53
Developing personal oracle 7 for windows 95 applications
http://www.parsian.net/set1252/pages/books.htm

54
Developing personal Oracle 7 for windows 95 applications
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

55
Developing professional java applets
http://www.parsian.net/set1252/pages/books.htm

56
Developing professional java applets
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

57
DNS and BIND
http://www.hk8.org/old_web/

58
Doing objects with VB.NET and C#
http://vbwire.com/nl?6814

59
EAI/BPM Evaluation Series: IBM WebSphere MQ Workflow v3.3.2 & EAI Suite by
> Middleware Technology Evaluation Series, Phong Tran & Jeffrey Gosper
http://www.cmis.csiro.au/mte/reports/BPM_IBMwebsphereMQ332.htm

60
Effective AWK programming
http://book.onairweb.net/computer/os/shell/Effective_AWK_Programming/

61
Enterprise javabeans, 2nd.ed.
http://www.hk8.org/old_web/

62
Exploring java
http://www.hk8.org/old_web/

63
GNOME/Sheets, John
www.oopweb.com

64
Graph theory/Prof. Even
www.oopweb.com

65
Hacking java
http://www.parsian.net/set1252/pages/books.htm

66
How intranets work
http://www.parsian.net/set1252/pages/books.htm

67
How intranets work
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

68
How to program visual basic 5.0
http://www.parsian.net/set1252/pages/books.htm

69
How to use HTML 3.2
http://www.parsian.net/set1252/pages/books.htm

70
Html : The definitive guide
http://www.hk8.org/old_web/

71
HTML 3.2 & CGI unleashed
http://www.parsian.net/set1252/pages/books.htm

72
HTML 3.2 and CGI professional reference edition unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

73
HTML by example
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

74
Internet firewall
http://www.hk8.org/old_web/

75
Intranets unleashed
http://www.parsian.net/set1252/pages/books.htm

76
Introduction to object-oriented programming using C++/Muller, Peter
www.oopweb.com

77
Introduction to programming using Java/Eck, David
www.oopweb.com

78
Introduction to socket programming
http://book.onairweb.net/computer/network/An_Introduction_to_Socket_Programming/

79
Java 1.1 unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

80
Java 1.1 unleashed, 2nd.ed.
http://www.parsian.net/set1252/pages/books.htm

81
Java 1.1 unleashed, 3rd.ed.
http://www.parsian.net/set1252/pages/books.htm

82
Java 114 documentation
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

83
Java AWT reference
http://www.hk8.org/old_web/

84
Java by example
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

85
Java developer’s guide
http://www.parsian.net/set1252/pages/books.htm

86
Java developer’s guide
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

87
Java developer’s reference
http://www.parsian.net/set1252/pages/books.htm

88
Java developer’s reference
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

89
Java Distributed computing
http://www.hk8.org/old_web/

90
Java enterprise
http://www.hk8.org/old_web/

91
Java enterprise in a nutshell
http://www.hk8.org/old_web/

92
Java foundation classes in a nutshell
http://www.hk8.org/old_web/

93
Java fundamental classes reference
http://www.hk8.org/old_web/

94
Java in a nutshell
http://www.hk8.org/old_web/

95
Java in a nutshell, 3rd.ed.
http://www.hk8.org/old_web/

96
Java language reference
http://www.hk8.org/old_web/

97
Java security
http://www.hk8.org/old_web/

98
Java servlet programming
http://www.hk8.org/old_web/

99
Java unleashed
http://www.parsian.net/set1252/pages/books.htm

100
Java unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

101
Java, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

102
_JavaScript : the definitive guide
http://www.hk8.org/old_web/

103
_Javascript manual of style
http://www.parsian.net/set1252/pages/books.htm

104
_Javascript manual of style
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

105
Josh’s GNU Linux Guide/Joshua
http://book.onairweb.net/computer/os/linux/Administration/Josh’s_GNU_Linux_Guide/

106
Late night activex
http://www.parsian.net/set1252/pages/books.htm

107
Late night activeX
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

108
Laura lemay’s 3D graphics in and VRML 2
http://www.parsian.net/set1252/pages/books.htm

109
Laura lemay’s activex and _VBScript
http://www.parsian.net/set1252/pages/books.htm

110
Laura lemay’s graphics and web page design
http://www.parsian.net/set1252/pages/books.htm

111
Laura lemay’s guide to sizzling websites design
http://www.parsian.net/set1252/pages/books.htm

112
Laura lemay’s _javascript 1.1
http://www.parsian.net/set1252/pages/books.htm

113
Laura lemay’s web workshop activex and _VBScript
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

114
Laura lemay’s web workshop Graphics web page design
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

115
Laura lemay’s web workshop _javascript
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

116
Learning perl
http://www.hk8.org/old_web/

117
Learning perl on win32
http://www.hk8.org/old_web/

118
Learning the kornshell
http://www.hk8.org/old_web/

119
Learning unix
http://www.hk8.org/old_web/

120
Learning vi
http://www.hk8.org/old_web/

121
Linux from Scratch/Beekmans, Gerard
http://book.onairweb.net/computer/os/linux/Administration/Linux_From_Scratch/

122
Linux in a nutshell, 3rd.ed.
http://www.hk8.org/old_web/

123
Linux kernel/Rusling, David
www.oopweb.com

124
Linux network administrator’s guide/Dawson, Terry
www.oopweb.com

125
Linux system administrator’s survival guide
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

126
MAPI, SAPI and TAPI developer’s guide
http://www.parsian.net/set1252/pages/books.htm

127
Mastering access 95 development
http://www.parsian.net/set1252/pages/books.htm

128
Microsoft access 97 quick reference
http://www.parsian.net/set1252/pages/books.htm

129
Microsoft access 97 quick reference
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

130
Microsoft backoffice 2 unleashed
http://www.parsian.net/set1252/pages/books.htm

131
Microsoft excel 97 quick reference
http://www.parsian.net/set1252/pages/books.htm

132
Microsoft excel 97 quick reference
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

133
Microsoft exchange server survival guide
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

134
Microsoft frontpage unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

135
Microsoft word 97 quick reference
http://www.parsian.net/set1252/pages/books.htm

136
Microsoft word 97 quick reference
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

137
Microsoft works 4.5 6-In-1
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

138
More than 100 full-text e-books
http://www.allfreetech.com/EBookCategory.asp

139
Ms backoffice administrator’s survival guide
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

140
Ms backoffice unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

141
Mysql and msql
http://www.hk8.org/old_web/

142
Netscape plug-ins developer’s kit
http://www.parsian.net/set1252/pages/books.htm

143
Official gamelan java directory
http://www.parsian.net/set1252/pages/books.htm

144
Oracle built-in packages
http://www.hk8.org/old_web/

145
Oracle PL/SQL built-in pocket reference
http://www.hk8.org/old_web/

146
Oracle PL/SQL language pocket reference
http://www.hk8.org/old_web/

147
Oracle PL/SQL programming guide to Oracle 8 features
http://www.hk8.org/old_web/

148
Oracle PL/SQL programming, 2nd.ed.
http://www.hk8.org/old_web/

149
Oracle unleashed
http://www.parsian.net/set1252/pages/books.htm

150
Oracle unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

151
Oracle web applications PL/SQL developer’s introduction
http://www.hk8.org/old_web/

152
Patterns of enterprise application architecture/Fowler, Martin
http://www.awprofessional.com/catalog/product.asp?product_id={574D77DF-6ED2-BC5-A6A8-02E59CA7482D}

153
PC week : the intranet advantage
http://www.parsian.net/set1252/pages/books.htm

154
Perl 5 by example
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

155
Perl 5 quick reference
http://www.parsian.net/set1252/pages/books.htm

156
Perl 5 unleashed
http://www.parsian.net/set1252/pages/books.htm

157
Perl 5.0 CGI web pages
http://www.parsian.net/set1252/pages/books.htm

158
Perl cookbook
http://www.hk8.org/old_web/

159
Perl for system administration
http://www.hk8.org/old_web/

160
Perl in a nutshell
http://www.hk8.org/old_web/

161
Perl quick reference
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

162
Peter norton’s complete guide to windows NT 4 workstations
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

163
Presenting activex
http://www.parsian.net/set1252/pages/books.htm

164
Presenting activex
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

165
Presenting javabeans
http://www.parsian.net/set1252/pages/books.htm

166
Presenting javabeans
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

167
Programming perl
http://www.hk8.org/old_web/

168
Programming perl, 3rd.ed.
http://www.hk8.org/old_web/

169
Programming the Perl DBI
http://www.hk8.org/old_web/

170
Red hat linux unleashed
http://www.parsian.net/set1252/pages/books.htm

171
Running a perfect intranet
http://www.parsian.net/set1252/pages/books.htm

172
Running Linux, 3rd.ed.
http://www.hk8.org/old_web/

173
Sams teach yourself java 1.1 in 24 hours/
http://book.onairweb.net/computer/sams/Sams_Teach_Yourself_Java_1.1_Programming_in_24_Hours

174
Sams Teach yourself java in 21 days/Lemay, Laura
http://book.onairweb.net/computer/sams/Sams_Teach_Yourself_Java_in_21_Days/

175
Sams teach yourself linux in 24 hours/Ball, Bill
http://book.onairweb.net/computer/sams/Sams_Teach_Yourself_Linux_in_24%20Hours/

176
Sams teach yourself shell programming in 24 hours
http://book.onairweb.net/computer/sams/Sams_Teach_Yourself_Shell_Programming_in_24_Hours/

177
Sams teach yourself TCP/IP in 14 days
http://book.onairweb.net/computer/sams/Sams_Teach_Yourself_TCP-IP_in_14_Days(SE)/

178
Sed and awk
http://www.hk8.org/old_web/

179
Sendmail
http://www.hk8.org/old_web/

180
Sendmail desktop reference
http://www.hk8.org/old_web/

181
Slackware linux unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

182
Special edition using java, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

183
Special edition using _javascript
http://www.parsian.net/set1252/pages/books.htm

184
Special edition using _javascript
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

185
Special edition using _Jscript
http://www.parsian.net/set1252/pages/books.htm

186
Special edition using lotus notes and domino 4.5
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

187
Special edition using Microsoft SQL server 6.5, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

188
Special edition using Microsoft visual Interdev
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

189
Special edition using perl 5 for web programming
http://www.parsian.net/set1252/pages/books.htm

190
Special edition using perl for web programming
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

191
Special edition using Visual Basic 4
http://www.parsian.net/set1252/pages/books.htm

192
TCP/IP
http://www.hk8.org/old_web/

193
Teach yourself activex programming in 21 days
http://www.parsian.net/set1252/pages/books.htm

194
Teach yourself C++ in 21 days
http://www.parsian.net/set1252/pages/books.htm

195
Teach yourself C++ in 21 days
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

196
Teach yourself CGI programming with Perl 5 in a week
http://www.parsian.net/set1252/pages/books.htm

197
Teach yourself database programming with VB5 in 21 days, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

198
Teach yourself database programming with visual basic 5 in 21 days
http://www.parsian.net/set1252/pages/books.htm

199
Teach yourself HTML 3.2 in 24 hours
http://www.parsian.net/set1252/pages/books.htm

200
Teach yourself HTML 3.2 in 24 hours
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

201
Teach yourself internet game programming with java in 21 days
http://www.parsian.net/set1252/pages/books.htm

202
Teach yourself java 1.1 programming in 24 hours
http://www.parsian.net/set1252/pages/books.htm

203
Teach yourself jave in café in 21 days
http://www.parsian.net/set1252/pages/books.tm

204
Teach yourself Microsoft visual Interdev in 21 days
http://www.parsian.net/set1252/pages/books.htm

205
Teach yourself Microsoft visual Interdev in 21 days
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

206
Teach yourself oracle 8 in 21 days
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

207
Teach yourself perl 5 in 21 days
http://www.parsian.net/set1252/pages/books.htm

208
Teach yourself perl 5 in 21 days, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

209
Teach yourself SQL in 21 days
http://www.parsian.net/set1252/pages/books.htm

210
Teach yourself SQL in 21 days, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

211
Teach yourself TCP/IP in 14 days
http://www.parsian.net/set1252/pages/books.htm

212
Teach yourself TCP/IP in 14 days, 2nd.ed.
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

213
Teach yourself the Internet in 24 hours
http://www.parsian.net/set1252/pages/books.htm

214
Teach yourself the internet in 24 hours
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

215
Teach yourself _VBScript in 21 days
http://www.parsian.net/set1252/pages/books.htm

216
Teach yourself _VBScript in 21 days
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

217
Teach yourself visual basic 5 in 24 hours
http://www.parsian.net/set1252/pages/books.htm

218
Teach yourself Visual Basic 5 in 24 hours
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

219
Teach yourself Visual J++ in 21 days
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

220
Teach yourself web publishing with HTML 3.2 in 14 days
http://www.parsian.net/set1252/pages/books.htm

221
Teach yourself web publishing with HTML in 14 days
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

222
Thinking in C++
http://www.mindview.net/Books

223
Thinking in C++/Eckel, Bruce - Vol.I, 2nd.ed.
www.oopweb.com

224
Thinking in C++/Eckel, Bruce - Vol.II, 2nd.ed.
www.oopweb.com

225
Thinking in Enterprise Java
http://www.mindview.net/Books

226
Thinking in Java, 2nd.ed.
www.oopweb.com

227
Thinking in Java, 3rd.ed. (pdf)
http://www.mindview.net/Books

228
Tricks of the internet gurus
http://www.parsian.net/set1252/pages/books.htm

229
Tricks of the java programming gurus
http://www.parsian.net/set1252/pages/books.htm

230
Unix and internet security
http://www.hk8.org/old_web/

231
Unix hints and hacks/Waingrow, Kirk
http://book.onairweb.net/computer/os/unix/Administration/UNIX_Hints_&_Hacks/19270001..htm

232
Unix in a nutshell
http://www.hk8.org/old_web/

233
Unix kornshell quick reference
http://book.onairweb.net/computer/os/shell/Unix_KornShell_Quick_Reference/kornShell.html

234
Unix power tools
http://www.hk8.org/old_web/

235
Unix shell guide
http://book.onairweb.net/computer/os/shell/The_UNIX_Shell_Guide/

236
Unix unleashed
http://www.parsian.net/set1252/pages/books.htm

237
Unix unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

238
Unix unleashed Internet Ed./Burk, Robin
http://book.onairweb.net/computer/os/unix/Administration/UNIX_Unleashed(Internet_Edition)/fm.htm

239
Unix unleashed, System administrator’s Edition
http://book.onairweb.net/computer/os/unix/Administration/UNIX_Unleashed_System_Administrator’s_Edition/toc.htm

240
Unix Unleashed/Sams Publication
http://book.onairweb.net/computer/os/unix/Administration/UNIX_Unleashed/

241
Upgrading PCs illustrated
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

242
Using windows NT workstation 4.0
http://www.parsian.net/set1252/pages/books.htm

243
_VBScript unleashed
http://www.parsian.net/set1252/pages/books.htm

244
_Vbscript unleashed
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

245
Visual basic 4 in 12 easy lessons
http://www.parsian.net/set1252/pages/books.htm

246
Visual basic 4 unleashed
http://www.parsian.net/set1252/pages/books.htm

247
Visual Basic 5 night school
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

248
Visual basic programming in 12 easy lessons
http://www.parsian.net/set1252/pages/books.htm

249
Visual Basic programming in 12 easy lessons
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

250
Visual C++ 4 unleashed
http://www.parsian.net/set1252/pages/books.htm

251
Visual C++ programming in 12 easy lessons
http://www.parsian.net/set1252/pages/books.htm

252
Web database developer’s guide with visual basic 5
http://www.parsian.net/set1252/pages/books.htm

253
Web database developer’s guide with visual basic 5
http://www.emu.edu.tr/english/facilitiesservices/computercenter/bookslib/

254
Web programming desktop reference 6-in-1
http://www.parsian.net/set1252/pages/books.htm

Download free GRE and TOEFL Ebooks Rapidshare.com

Cracking the GRE Biology, 3rd Edition (Cracking the Gre: Biology)

GRE: Practicing to Take the Biochemistry, Cell and Molecular Biology Test
How to Prepare for the GRE with CD-ROM (Barron's How to Prepare for the Gre Graduate Record Examination)
Acing the GRE Exam (Acing the GRE Exam)
GRE Prep Course with Online Course
How to Prepare for the GRE Test [CD-ROM]
Cliffstestprep GRE CBT (Cliffs Preparation Guides) 2000-07
Writing Skills for the Gre and Gmat Tests (Peterson's Writing Skills for the GRE & GMAT
Arco Gre With Computer Adaptive Tests on Disk User's Manual: Graduate Record Examination (Arco Master the GRE CAT (W/CD))
Peterson's Ultimate GRE Tool Kit (Peterson's Ultimate Gre Tool Kit)
ARCO Master The GRE 2006 (Master the Gre)
Kaplan GRE Exam Verbal Workbook: Third Edition (Kaplan Gre Verbal Workbook)

http://rapidshare.com/files/894695/cracking_gre.zip
http://rapidshare.com/files/894696/BCMBGrePBook.pdf
http://rapidshare.com/files/895512/BarronsGRECD.rar
http://rapidshare.com/files/890802/Acing_the_GRE.rar
http://rapidshare.com/files/896499/CliffsTestPrep.GRE.CBT.6th.Ed_0764586122.rar
http://rapidshare.com/files/896498/Nova.Press.GRE.Prep.Course.ebook-LRN.rar
http://rapidshare.com/files/896497/WritingSkillsForGRE-GMAT.rar
http://rapidshare.com/files/897551/Kaplan.GRE.Verbal.Prep.rar
http://rapidshare.com/files/897767/ARCO_Master_The_GRE_2006__Master_the_Gre__2007.pdf
http://rapidshare.com/files/897356/Petersons.Ultimate.GRE.Tool.Kit.0768914329.rar
http://rapidshare.com/files/896499/CliffsTestPrep.GRE.CBT.6th.Ed_0764586122.rar

BARRON: GRE general test with computer software 12th edition

Students planning to take the Graduate Record Exam will find six full-length model tests with answers and explanations in this up-to-date manual. They will also find intensive test topic reviews covering antonym questions, analogy questions, sentence completion, reading comprehension, vocabulary, analytical writing, quantitative comparison, data interpretation, and math. A 3,500-word master vocabulary list with definitions is supplemented with a GRE high-frequency word list. An additional 300-word high-frequency vocabulary list. Exercises in language usage, reading comprehension, and analytical skills.

Download:

E-BOOK:-

http://www.zshare.net/download/barronsgre-12-rar.html
or
http://rapidshare.com/files/25270303/bargre12.rar

CD:-
http://www.zshare.net/download/barronsgrecd-rar.html
or
http://rapidshare.com/files/25272183/BarronsGRECD.rar

password: englishtips.org

Monday, December 3, 2007

Rapidshare ebooks GRE TOEFL SAT eBooks Collection

10 Secrets to Acing Any High School Test
501 Challenging Logic & Reasoning Questions, 2e
Acing the GED Exams
Acing the GRE
Acing the SAT 2006
ACT Exam Success
Basic Skills for College
CBEST, 2e
Critical Thinking Skills
GMAT Exam Success
How to Study, 2e
PRAXIS I, 2e
Reasoning Skills Success, 2e
SAT Math Essentials
SAT Writing Essentials
THEA
TOEFL Essentials
TOEFL Success in 6 Steps

http://rapidshare.com/files/890804/SAT_Math_Essentials.rar

http://rapidshare.com/files/890803/ACT_Exam_Success.rar

http://rapidshare.com/files/890802/Acing_the_GRE.rar

http://rapidshare.com/files/890801/GMAT_Exam_Success.rar

http://rapidshare.com/files/890800/CBEST_2e.rar

http://rapidshare.com/files/890799/THEA.rar

http://rapidshare.com/files/890798/501_Challenging_Logic_Reasoning_2e.rar

http://rapidshare.com/files/890797/10_Sec___SAT_Writing_.rar

http://rapidshare.com/files/890796/How_To_Study_2e.rar

http://rapidshare.com/files/890795/RS___TOEFL.rar

http://rapidshare.com/files/890804/SAT_Math_Essentials.rar

http://rapidshare.com/files/890949/Acing_the_SAT_2006.rar

http://rapidshare.com/files/890948/BS___TOEFL_Exam___Critical_Thinking.rar

http://rapidshare.com/files/890947/Acing_the_GED_Exams.rar

JPS EBOOKS

http://rapidshare.com/files/23129852/ActionScript_3.0_Cookbook.rar
http://rapidshare.com/files/3411840/C___Ebook_Coll ection.part1.rar
http://rapidshare.com/files/ Before each link 9603724/Reading.Between.the.Lines.rar
http://rapidshare.com/files/4331680/Apress.Pro.JSP.2.4th.Edition.rar
http://rapidshare.com/files/45054175/Sol-x10.part01.rar
http://rapidshare.com/files/45057266/Sol-x10.part02.rar
http://rapidshare.com/files/32869019/00229ir.rar
http://rapidshare.com/files/37907453/XP_Ultimate_07.part1.rar
http://rapidshare.com/files/53278619/CBT_On_Job.part08.rar
http://rapidshare.com/files/45358694/cfe-vtcrhct.part01.rar
http://rapidshare.com/files/10847695/MO_FS_HtBtCF.part15.rar
http://rapidshare.com/files/33259622/00247gt.rar
http://rapidshare.com/files/26238015/ebook0143.rar
http://rapidshare.com/files/1721351/fg.part1.rar
http://rapidshare.com/files/65133318/The.Com.Ref.Java.2.rar
http://rapidshare.com/files/34375991/ejbjspedge.rar
http://rapidshare.com/files/1223518/Environmental_Encyclopedia.rar
http://rapidshare.com/files/2057450/PmV_up_by_badanto.part01.rar
http://rapidshare.com/files/26556419/The_magic_of_Thinking_Big.part1.rar
http://rapidshare.com/files/19160104/Apache.the.Definitiv.rar
http://rapidshare.com/files/48881272/YF.part01.rar
http://rapidshare.com/files/5005254/Wilkinson_-_Lennox_Essential_neurology_4th_ed.rar
http://rapidshare.com/files/4511376/TAPP2_D1.part01.rar
http://rapidshare.com/files/69622999/greenmonkey.part01.rar
http://rapidshare.com/files/1803001/Microsoft.Office-Excel.2003.Formulas.rar
http://rapidshare.com/files/26946578/cs3weaver.part1.rar
http://rapidshare.com/files/55818765/avaxhome72.part01.rar
http://rapidshare.com/files/19276023/O_Reilly_-_Learning_Java.rar
http://rapidshare.com/files/14346113/NMS_SurgeryCasebook2003.rar
http://rapidshare.com/files/4986504/finitehyperbolic.rar
http://rapidshare.com/files/3813403/Cartoon_Maker_v3.17.rar
http://rapidshare.com/files/7954346/Java_2_Bible.rar
http://rapidshare.com/files/20638719/AdsenseEmpire.rar
http://rapidshare.com/files/19160104/Apache.the. Definitiv.rar
http://rapidshare.com/files/45702728/pdftoimage.rar
http://rapidshare.com/files/47670395/fundamentals_java.part1.rar
http://rapidshare.com/files/69911593/NFSPS07-SW.part01.rar
http://rapidshare.com/files/36297244/Mavis. Beacon.Teaches.Typing.17_ByMechoDownload.part3.rar
http://rapidshare.com/files/41732880/150.HQ. WindowsXP.Themes.part1.rar
http://rapidshare.com/files/62824982/B_2007_MP4_yarali_kalp.part1.rar
http://rapidshare.com/files/67096012/packLTHarrison.rar
http://rapidshare.com/files/734373/Memory_Optimizer.part1.rar
http://rapidshare.com/files/44694986/Adobe_Dreamweaver_CS3_with_Crack.part2.rar
http://rapidshare.com/files/29030263/Neurotran_cro-eng.part1.rar
http://rapidshare.com/files/3549403/JeLo-JeLo.part2.rar
http://rapidshare.com/files/56484433/mwvux86is2k7oemdvd_L.part01.rar
http://rapidshare.com/files/56648896/Adobe_Dreamweaver_CS3.part1.rar
http://rapidshare.com/files/30083045/adv.photoshop.issue.29.ebook.BBB.rar
http://rapidshare.com/files/25025368/NORTON.360.EDGEISO.part1.rar
http://rapidshare.com/files/70456394/NFS_Prostreet_by_ForumPaSHa.part01.rar
http://rapidshare.com/files/70457904/NFS_Prostreet_by_ForumPaSHa.part02.rar
http://rapidshare.com/files/23520053/UDS_HoNgocHaVol3.rar
http://rapidshare.com/files/8664023/mobile1.rar
http://rapidshare.com/files/12431808/0131482025.rar
http://rapidshare.com/files/65956928/axxo-a.mighty.heart.part1.rar
http://rapidshare.com/files/3438606/0471785970.rar

Saturday, December 1, 2007

JSP ebooks

http://rapidshare.com/files/23129852/ActionScript_3.0_Cookbook.rar
http://rapidshare.com/files/3411840/C___Ebook_Coll ection.part1.rar
http://rapidshare.com/files/ Before each link 9603724/Reading.Between.the.Lines.rar
http://rapidshare.com/files/4331680/Apress.Pro.JSP.2.4th.Edition.rar
http://rapidshare.com/files/45054175/Sol-x10.part01.rar
http://rapidshare.com/files/45057266/Sol-x10.part02.rar
http://rapidshare.com/files/32869019/00229ir.rar
http://rapidshare.com/files/37907453/XP_Ultimate_07.part1.rar
http://rapidshare.com/files/53278619/CBT_On_Job.part08.rar
http://rapidshare.com/files/45358694/cfe-vtcrhct.part01.rar
http://rapidshare.com/files/10847695/MO_FS_HtBtCF.part15.rar
http://rapidshare.com/files/33259622/00247gt.rar
http://rapidshare.com/files/26238015/ebook0143.rar
http://rapidshare.com/files/1721351/fg.part1.rar
http://rapidshare.com/files/65133318/The.Com.Ref.Java.2.rar
http://rapidshare.com/files/34375991/ejbjspedge.rar
http://rapidshare.com/files/1223518/Environmental_Encyclopedia.rar
http://rapidshare.com/files/2057450/PmV_up_by_badanto.part01.rar
http://rapidshare.com/files/26556419/The_magic_of_Thinking_Big.part1.rar
http://rapidshare.com/files/19160104/Apache.the.Definitiv.rar
http://rapidshare.com/files/48881272/YF.part01.rar
http://rapidshare.com/files/5005254/Wilkinson_-_Lennox_Essential_neurology_4th_ed.rar
http://rapidshare.com/files/4511376/TAPP2_D1.part01.rar
http://rapidshare.com/files/69622999/greenmonkey.part01.rar
http://rapidshare.com/files/1803001/Microsoft.Office-Excel.2003.Formulas.rar
http://rapidshare.com/files/26946578/cs3weaver.part1.rar
http://rapidshare.com/files/55818765/avaxhome72.part01.rar
http://rapidshare.com/files/19276023/O_Reilly_-_Learning_Java.rar
http://rapidshare.com/files/14346113/NMS_SurgeryCasebook2003.rar
http://rapidshare.com/files/4986504/finitehyperbolic.rar
http://rapidshare.com/files/3813403/Cartoon_Maker_v3.17.rar
http://rapidshare.com/files/7954346/Java_2_Bible.rar
http://rapidshare.com/files/20638719/AdsenseEmpire.rar
http://rapidshare.com/files/19160104/Apache.the. Definitiv.rar
http://rapidshare.com/files/45702728/pdftoimage.rar
http://rapidshare.com/files/47670395/fundamentals_java.part1.rar
http://rapidshare.com/files/69911593/NFSPS07-SW.part01.rar
http://rapidshare.com/files/36297244/Mavis. Beacon.Teaches.Typing.17_ByMechoDownload.part3.rar
http://rapidshare.com/files/41732880/150.HQ. WindowsXP.Themes.part1.rar
http://rapidshare.com/files/62824982/B_2007_MP4_yarali_kalp.part1.rar
http://rapidshare.com/files/67096012/packLTHarrison.rar
http://rapidshare.com/files/734373/Memory_Optimizer.part1.rar
http://rapidshare.com/files/44694986/Adobe_Dreamweaver_CS3_with_Crack.part2.rar
http://rapidshare.com/files/29030263/Neurotran_cro-eng.part1.rar
http://rapidshare.com/files/3549403/JeLo-JeLo.part2.rar
http://rapidshare.com/files/56484433/mwvux86is2k7oemdvd_L.part01.rar
http://rapidshare.com/files/56648896/Adobe_Dreamweaver_CS3.part1.rar
http://rapidshare.com/files/30083045/adv.photoshop.issue.29.ebook.BBB.rar
http://rapidshare.com/files/25025368/NORTON.360.EDGEISO.part1.rar
http://rapidshare.com/files/70456394/NFS_Prostreet_by_ForumPaSHa.part01.rar
http://rapidshare.com/files/70457904/NFS_Prostreet_by_ForumPaSHa.part02.rar
http://rapidshare.com/files/23520053/UDS_HoNgocHaVol3.rar
http://rapidshare.com/files/8664023/mobile1.rar
http://rapidshare.com/files/12431808/0131482025.rar
http://rapidshare.com/files/65956928/axxo-a.mighty.heart.part1.rar
http://rapidshare.com/files/3438606/0471785970.rar

Download Rapidshare ASP Ebooks

http://rapidshare.com/files/5960616/Wrox.Professional.Web.Parts.And.Custom.Controls.With.ASP.NET.2.0.Nov.2005.pdf http://rapidshare.com/files/5960314/Wrox.Professional.ASP.NET.2.0.XML.Jan.2006.pdf http://rapidshare.com/files/5959972/Wrox.Professional.ASP.NET.2.0.Nov.2005.pdf http://rapidshare.com/files/5959029/Wrox.Beginning.ASP.NET.2.0.Nov.2005.eBook-LinG.pdf http://rapidshare.com/files/5958433/Wrox.ASP.dot.NET.2.0.Visual.Web.Developer.2005.Express.Edition.Starter.Kit.Jan.2006.eBook-DDU.pdf http://rapidshare.com/files/5958093/OReilly.Programming.ASP.NET.3rd.Edition.Oct.2005.chm http://rapidshare.com/files/5957866/OReilly_-_ASP.NET_2.0_A_Developers_Notebook_Jun_2005.chm http://rapidshare.com/files/5957696/MS.Press.MS.ASP.dot.NET.2.0.Step.By.Step.Aug.2005.chm http://rapidshare.com/files/5957534/Microsoft.Press.Microsoft.ASP.dot.NET.2.0.Step.By.Step.Aug.2005.chm http://rapidshare.com/files/5957379/Mcft.Build.A.Website.Now.with.Visual.Web.Developer.2005.Express.Edition.pdf http://rapidshare.com/files/5957061/Mastering_ASP.NET_with_C.pdf http://rapidshare.com/files/5956916/ASP_.NET_Website_Programming__Visual_Basic_.NET_Edition_-_Problem__Design__Solution_-_Wrox.chm http://rapidshare.com/files/5956693/Apress-ASP.Dot.NET.Web.Development.with.Macromedia.Dreamweaver.MX.2004-2004.chm http://rapidshare.com/files/5956414/Apress.Pro.ASP.dot.NET.2.0.in.C.Sharp.2005.Sep.2005.pdf http://rapidshare.com/files/5955585/Apress.Beginning.ASP.NET.2.0.in.C.Sharp.2005.From.Novice.to.Professional.Jan.2006.pdf http://rapidshare.com/files/5954355/Apress.ASP.Net.2.0.Revealed.chm http://rapidshare.com/files/5953904/A_First_Look_at_ASP.NET_2.0__-_Addison_Wesley.chm http://rapidshare.com/files/5953743/Spring_into_PHP_5_-_Addison_Wesley.chm http://rapidshare.com/files/5953019/SamPMA24.chm http://rapidshare.com/files/5952934/Prentice.Hall.PTR.PHP.5.Power.Programming.Oct.2004.eBook-LiB.chm http://rapidshare.com/files/5952690/Premier_Press_-_PHP.MySQL_Programming_for_the_Absolute_Beginner.chm http://rapidshare.com/files/5952503/Premier_Press_-_PHP_Professional_Projects__868_pages__-_2002.chm http://rapidshare.com/files/5951950/PHP_5_Recipes_A_Problem_Solution_Approach_-_APress.pdf http://rapidshare.com/files/5951778/PHP_5_for_Dummies_-_Wiley_2004.pdf http://rapidshare.com/files/5951553/PHP_5_Fast___Easy_Web_Development.chm http://rapidshare.com/files/5951222/OReilly.PHP.in.a.Nutshell.Oct.2005.chm http://rapidshare.com/files/5951171/OReilly.Essential.PHP.Security.Oct.2005.chm http://rapidshare.com/files/5951155/New_Riders_-_Php_Functions_Essential_Reference.chm http://rapidshare.com/files/5951130/MySQL_PHP_Database_Applications_-_Wiley.pdf http://rapidshare.com/files/5950946/McGraw-Hill.How.to.Do.Everything.with.PHP.and.MySQL.2005.LinG.pdf http://rapidshare.com/files/5950639/Advanced_Php_For_Web_Professionals_-_Prentice_Hall.chm