example-of
More Pages: example-of Page 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181

Used price: $35.15
Buy one from zShops for: $38.21

Thought this would be Glannon-esque...
Excellent Contracts Treatise
This is a good one
Buy one from zShops for: $10.50

disappointing...Its size was that of a pamphlet (1/2 as tall as a normal book and only 110 pages long).
The layout was by no means impressive. There were no defined "chapters". As you completed each example it simple gave a short synopsis and the next page started a new example.
Early in the book it required the read/user to type lots of JavaScript (which had some typos), later it gave a 1/2 page on installing Java on your machine so you could complete further examples.
Though the book recommended using IE5+ in order to use the examples, some even failed to properly display using IE6. (I found the answers to the bugs by reading another XML book I purchased as a companion.)
Not recommended for newbies to WEB programming and a bit spotty for experienced XHTML/DHTML programmers moving up to XML.
I loved it
Excellent teaching text book
Used price: $24.92
Collectible price: $33.50
Buy one from zShops for: $26.27
This book opens with a tour of the history and function of traditional Unix shells (from Bourne, C, and Korn shells) before centering on Linux variants, bash and tcsh. The text then turns to three powerful utilities: grep (for file searching), sed (for noninteractive file editing), and gawk (which allows programmers to write powerful scripts that process files using regular expressions).
There are dozens of sample commands to try out here. (With shell programming, the genius is truly in the details, and the only way to learn the shell is to try it out for yourself.) As an experienced teacher, the author provides a wealth of examples that take you through both the common and more esoteric features of these utilities. Instead of hard-to-decipher man pages, there she includes dozens of sample commands with correct syntax, plus clear explanations.
The rest of this book looks at the bash and tcsh shells in detail, from interactive mode to shell programming with full coverage of the basics of writing reusable scripts. Final sections of Linux Shells by Example look at common Linux file and system commands for easy reference, and the book ends with a useful appendix on quoting styles for five different shells. In all, this book's clear presentation style and plentiful examples will help any Linux user become a competent shell user and script programmer. --Richard Dragan
Topics covered: Survey of Unix shells (the Bourne, C, and Korn shells), survey of Linux shells (the Bourne Again and TC shells), processes, shell environments, tutorial for regular expressions, grep for file searches, the streamlined editor (sed), awk/nawk/gawk scripts, gawk basics and expressions, gawk programming (variables, arrays, flow control, built-in and user-defined functions), the bash and tcsh shells (interactive mode, programming tutorial for shell scripts), reference to common Linux/Unix utilities, comparison of shells, and tips for using correct quoting styles within shells.

This book will make your life easierThe only reason that I rate only 4 stars for this book is because some similar part gets repeated too often in this book.
Don't think twice, just get it.
Excellent BookAnyway, better know your way around linux before you get this book even though it starts very basic. This is a huge book, 761 pages. Great info...

List price: $34.99 (that's 30% off!)
Used price: $13.00
Buy one from zShops for: $14.50

A number of technical issues with its COM+ examplesI have listed a few problems with the author's code (just in Chapter 6).
(1) In its Order_Place stored proc, the code calls exec Orders_Add, and then exec OrderDetails_Add procs. After calling both procs, the author tests @@error=0 to decide whether to commit or roll back transactions.
If there is an error in Order_Add, but not in OrderDetails_Add, then @@error would still be 0 (noting that @@error would be set by the last statement), and thus the code could commit despite inconsistencies.
(2) Still in the Order_Place proc, the author called begin tran/commit tran/rollback tran SQL statement. This proc is meant to be used by MTS/COM+, and thus should leave transaction handling to MTS.
(3) In Products_UpdStock proc, author raises an error if @UnitsInStock < @Quantity, without exiting the proc. Now if it weren't for the fact that Northwind database has a constraint requiring UnitsInStock>=0, this proc would have continued on to update UnitInStock despite Quantiy required > UnitsInStock. The author doesn't seem realize RaisError does not exit proc.
(4) The author uses Northwind_Order.Order class to place an order. This is a business logic layer module. It in turn calls Data.Access module, which is in the Data Access Layer. As the author pointed himself, the idea of having separate data access layer and business logic layer is so that if ever, the underlying database changes, only data access layer has to be recoded, thus improving maintainability. This is the one of the tenors of Microsoft DNA. However, in author's Northwind_Order.Order class, it actually constructs a SQL string that is in turn passed to Data.Access. If the underlying database is changed from SQL Server to Oracle, the author would have to rewrite both his Northwind_Order.Order class and Data.Access because Oracle has a totally different convention of writing stored proc.
These problems are just from cursory glances that I have taken at Chapter 6. I can't be sure how the rest of the book stacks up.
Good introduction to COM+
Great Com+ book I ever read
Used price: $34.87
Buy one from zShops for: $59.99

Java and the As400In summary if you want to learn the concepts buy it. If you want to learn java or VAJ buy something else
Vinit Sarsawat(Sun and IBM Certified)I started learning from this book and other IBM Visual Age redbooks about 2 years ago. Although I wasn't new to java programming back then, but I still needed this book to complete AS/400 to web integration project. This book helped me understand the details of AS/400 toolbox classes and how to effectively use these classes. It gives in depth information about AS/400 Integrated File System(IFS), Qsh interpreter(AS/400 unix like environment). There are ample examples in the book about invoking RPG programs from java programs. It also explains subfile and other dds specific classes from Toolbox.
In a nutshell this book ushered me in the world of enterprise integration with java programming.
Practical Information for the AS/400 Java DeveloperIt is not a beginner Java book, nor is it intended for those with more traditional AS/400 skills (e.g. RPG, COBOL, etc.) But if you are familiar with Java and need to get it going on your 400, this is a great book to have.

List price: $39.99 (that's 30% off!)
Used price: $19.50
Buy one from zShops for: $17.97

Sweet and Simplenot Confusing Just Basic BASIC
I read this book in 2 weeks (NonStop) and i had no Prior Experience with VB just C++
Great Book beggining Book Probably the best one out there
GREAT 100% BUT YOU STILL NEED ANOTHER ONE
Covering all bases
Used price: $19.95
Buy one from zShops for: $22.99

Pricey for what it provides
An expense that can be justified.Servlets, JDBC, EJBs and can put together a
small to medium application/project using those.
You somehow implemented the project/app to
satisfy the requirements but you are thinking
that there has to be a better way of going from
a set of requirements to a design (from which the leap to
actual coding is smooth) without feeling like
some vague unrepeatable 'magic' was being done.
You want to formalize the process of jumping from the
'analyze' phase to a 'Object oriented design' phase (that
results in sequence/collaboration diagrams etc) but
without being encumbered by an elaborate and complex
methodology.
You want this process to be small, easy to understand
and flexible so that you can adapt it to your needs.
If the above applies, you should seriously consider
investing in this book.
The Authors use the often used bookstore example to drive
home the process which starts with writing usecases
and ends with a detailed design that satisfies all the
user's requirements.
A list of 10 common mistakes made during each step of
the process can be used as a reference when you are
done understanding the process and are actually applying
it in your projects.
Paul Reed's Application Development with Java and UML
makes a good complement to this book, though
Conallen uses a modified but still complex enough form
of Rational Unified Process (RUP) in his book.
Impudently clear!This book teaches a simple and effective process, and indirectly UML too. UML is like any other languages: one cannot learn it without using it in practice.
The authors are teachers, and this gives a big edge to the book, for their ability to anticipate reader's difficulties and common errors.
Even if I actually use Catalisys process, tailored for components (see UML Components, Cheesman and Daniels), simply I can't immagine to be where I am without having read this book at the beginning.

List price: $59.99 (that's 12% off!)
Used price: $31.00
Buy one from zShops for: $42.69

scientific and engineering c++
methods for expressing commonality in C++
Excellent text, though a bit datedMy only gripe with the book is its age. It predates the ISO/ANSI C++ standard and the standard template libraries. It would be interesting to see how the authors would incorporate these recent advances into their treatment of advanced C++ programming.
Despite being a book for scientists and engineers, Barton and Nackman should be read by everyone doing serious C++ programming. Highly recommended.

Used price: $2.46
Buy one from zShops for: $5.99

Great book "Suport Site Down"It took longer to read and type all the work from scratch.
Terrific For Beginners!-l-
I could not make a living without this book.
Other verses include "Borrowing" ("Didn't you say they were borrowed? You'd better take back just a few. If you lent your playthings, I think you would say things' If no one returned them to you"), "Patience," and "Honesty."
Though nowadays these basic virtues are seldom spoken of by name outside of Sunday school, the Goops's humor and alien-like illustrations kill any inclination toward the saccharine. Instead, we find a cheerful, reasonable description of how to remain Goop-free, at least until adulthood.

It's a good book, but there is a better version
Perfect poems for not so perfect children
I love the goops! Best method for teaching children manners!