e99 Online Shopping Mall
Help | |
Home - Basic B - Beta Programming (Books) |
  | Back | 21-40 of 43 | Next 20 |
click price to see details click image to enlarge click link to go to the store
21. Learning to Program with Alice Beta Version by Wanda P Dann, Stephen Cooper, Randy Pausch | |
Paperback: 352
Pages
(2004-07-26)
list price: US$40.00 -- used & new: US$4.00 (price subject to change: see help) Asin: 0131424203 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description This volume supports an innovative approach to learning fundamental programming concepts. The authors use program visualization to afford an easy relationship of the program construct to the animation action in a 3D world. Includes a fundamental introduction to programming with objects, methods, decision statements, loops, recursion, and problem solving. Introduces object-oriented programming concepts in the context of complete working animation programs. Makes the concept of an “object” visible and tangible in a 3-D world that is compelling to readers. Provides a mouse-based editor, ensuring that beginning programmers cannot make syntax mistakes. Provides “Tips & Techniques" at the end of each chapter. Enables users to show their animated programs on a web page. A useful step-by-step guide for beginning programmers. Customer Reviews (13)
Alice manual still has me in Wonderland.
Awesome
Easy and fun =)
great buy
great book & service |
22. Beginning ASP.NET 2.0 Databases Beta Preview by John Kauffman | |
Paperback: 427
Pages
(2005-03-18)
list price: US$29.99 -- used & new: US$0.28 (price subject to change: see help) Asin: 0764570811 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description The book covers both VB.NET and C# coding for ASP.NET databases so readers don't have to decide up front which language they want more and retailers no longer have to manage inventory on separate language versions. By returning to a single lead author (John Kauffman) with technical input and guidance from one other technical expert (Bradley Millington), the book regains cohesiveness and a single voice and vision. This edition is completely written from scratch on ASP.NET "Whidbey" to insure the coverage is most appropriate for this greatly changed version. The book focuses on solving business problems in a logical progression from connecting to displaying to changing the data. Additional chapters cover enhancements to the presentation and alternate types of data. The book follows Kauffman’s practice of going beyond the basic techniques to discuss the permutations, pitfalls and best practices that occur in real business scenarios. Customer Reviews (9)
very basic
Excellent reference book
This book wasted my time and totally frustrated me!
Good high level descriptions, some details lacking.
Fast Track for Seasoned Developers |
23. The Rational Guide to Scripting SQL Server 2005 Integration Services Beta Preview (Rational Guides) by Donald Farmer | |
Paperback: 192
Pages
(2005-07-15)
list price: US$24.99 -- used & new: US$8.66 (price subject to change: see help) Asin: 1932577211 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Written by Donald Farmer, the Group Program Manager at Microsoft for SQL Server 2005 Integration Services, this book gives an early look at how scripting in SQL Server Integration Services can enable them to easily add new, fully integrated functionality to achieve their enterprise data integration needs. Technical accuracy is assured by Ashvini Sharma, Development Lead, SQL Server Integration Services, Microsoft Corporation. This book comes with the following bonus materials:* Extra Chapter - Monitoring SSIS Performance* Extra Chapter - Web Services with SSIS Scripts* Extra Chapter - Using SSIS as a Data Service* Sample code shown in the book Customer Reviews (4)
sample has error
Great book on the scripting task as well as a good overview SSIS
Very disappointing
Excellent Resource |
24. The Object Concept: An Introduction To Computer Programming Using C++ (Lab Manual Special Beta Edition) by Decker and Hirshfield | |
Paperback:
Pages
(1994)
Isbn: 0534204988 Canada | United Kingdom | Germany | France | Japan | |
25. Microsoft SQL Server 2005: Changing the Paradigm (SQL Server 2005 Public Beta Edition) by Scalability Experts Inc. | |
Paperback: 504
Pages
(2005-08-30)
list price: US$34.99 -- used & new: US$0.50 (price subject to change: see help) Asin: 0672327783 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Microsoft SQL Server 2005: Changing the Paradigm (SQL Server 2005 Public Beta Edition) will prepare database administrators for upcoming changes in SQL Server 2005. Obtain the skills necessary to run SQL Server 2005 from the experts at Microsoft Gold Partner. Get a head-start to understanding the new concepts and features of SQL Server 2005 from the database administrator's perspective, including: Customer Reviews (5)
Highly informative to experienced SQL 2000 DBAs
Good information, well organized
History of this book
Shame on Sams for Publishing an ANONYMOUS author
Loaded with (up-to-date) information on SQL 2005 |
26. GNU Make: A Program for Directing Recompilation: Edition 0.50 for Version 3.75 Beta by Richard M. Stallman, Roland McGrath | |
Paperback: 162
Pages
(1996-03)
list price: US$20.00 Isbn: 1882114795 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description The Make program is indispensable to maintainers of free software systems. The GNU Make manual, written by the program's original authors, is the definitive tutorial. It also includes an introductory chapter for novice users. The Make utility automates the process of compilation; it is especially useful when the source files of large programs change. It is a small program with a lot of power. This book will show you:* How to write your own makefiles This manual provides a complete explanation of Make, both the basics and extended features. There is also a convenient Quick Reference appendix for experts. Customer Reviews (6)
Sooner or later you really should read this book
Just a reference, does not give you the wider picture.
Clear and Complete I refer to this book (or the info version from within emacs) regularly. I have found it extremely helpful while trying to figure out how another Makefile works, while trying to figure out how to accomplish a particular task with 'make', and just for general knowledge about the tool. I found the sections on suffix rules and pattern rules to be particularly informative. One final note: by purchasing this book you are helping to support free software, as the book is published by GNU Press, the publishing department of the Free Software Foundation.
One Book which lets all others fading
Good reference After a brief overview of make in chapter 1, the authors move on to introduce makefiles in chapter 2 and 3. A general makefile consists of rules, with a target, dependencies, and commands. The authors do a great job of explaining makefiles and give a sample makefile explaining how an executable depends on object files, those depending themselves on C source files and header files. The use of'make clean' is discussed also, along with the use of variables to simplify makefiles. A more detailed discussion of rule writing is given in chapter 4, with the rule syntax outlined, and how to use wildcard characters in file names. The 'vpath' directive is discussed also. The authors show how to construct rules with multiple targets, and how to use dependencies that are not necessarily identical using static pattern rules. The chapter ends with a discussion of how to generate dependencies automatically. The use of command echoing is explained in the next chapter on writing commands in rules, with the recursive use of 'make' as itself a command in a makefile. This is followed in chapter 6 by more details on the use of variables in makefiles. Readers knowing the shell very well will find this easy reading, but beginners will have to pay attention to the subtle uses of variable references and the difference between recursively expanded and simply expanded variables. The authors include an advanced section on variable reference for the more experienced reader. A detailed discussion on using conditional statements in makefiles is given. The use of functions to do text processing is the subject of chapter 8 with the general syntax for function calls given. This is followed in chapter 9 by a discussion on how to actually execute a makefile. The use of implicit rules to perform compilation in the usual way is discussed in chapter 10. This is my preference on how to use make and it is given a nice treatment here, with discussions on how to use implicit rules and introduces pattern rules. Make can also update archive files, and this is discussed in chapter 11. The last chapters of the book give a list of features of GNU make as compared with other versions of make, and a list of incompatibilities of make with other versions. The conventions that must be respected in writing GNU make programs are discussed also. ... Read more |
27. The Rational Guide to SQL Server 2005 Express: Beta Preview (Rational Guides) by A. T. Mann | |
Paperback: 224
Pages
(2005-07-15)
list price: US$24.99 -- used & new: US$11.25 (price subject to change: see help) Asin: 1932577165 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description This book gives an early look into the Community Technology Preview (CTP) of SQL Server 2005 Express and presents the basics of using SQL Server 2005 Express and hosting SQL Server Common Language Runtime (CLR) objects in the database. With its friendly tutorial approach and numerous examples, this book will help the reader quickly learn how to create, configure, maintain and deploy SQL Server 2005 Express databases. It also covers advanced topics, such as security, distributed support, and XML support. Technical accuracy is assured by Roger Wolter, Group Program Manager, SQL Server 2005 Express, Microsoft Corporation. This book comes with the following bonus materials:* Extra Chapter - Advanced User Instances* Extra Chapter - Advanced User-Defined Types* Sample code shown in the book Customer Reviews (3)
Not bad at all
Gets you started with SQL Server 2005 Express Edition
Free is such a nice price. |
28. JavaScript: The Definitive Guide, Beta Version (Nutshell Handbooks) by David Flanagan | |
Paperback: 454
Pages
(1996-08-01)
list price: US$29.95 -- used & new: US$39.56 (price subject to change: see help) Asin: 1565921933 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (295)
The best book on going below the surface of Javascript
A dream come true!
The author forgot what Javascript mainly is for
The name of the book really means it. THE Definitive guide!
Hope this isn't really THE definitive review |
29. Beta book Problem Solving with Data Structures Using Java: A Multimedia Approach by Mark J. Guzdial, Barbara Ericson | |
Paperback:
Pages
(2009-01-17)
list price: US$112.40 -- used & new: US$90.58 (price subject to change: see help) Asin: 0136096670 Canada | United Kingdom | Germany | France | Japan | |
30. Introducing Visual Studio 2005 Team System Beta Edition (Pro-Developer) by R. Hundhausen | |
Paperback: 600
Pages
(2005-05)
Isbn: 0735621802 Canada | United Kingdom | Germany | France | Japan | |
31. Paup 4.0 Beta for Windows by SWOFFORD | |
CD-ROM:
Pages
(1999-10-21)
Isbn: 0878938079 Canada | United Kingdom | Germany | France | Japan | |
32. The GNU C Library Reference Manual for Version 1.09 Beta by Roland McGrath, Richard Stallman | |
Paperback: 689
Pages
(1996-05-21)
list price: US$50.00 Isbn: 1882114531 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description This two volume manual is the comprehensive guide to the GNU implementation of the standard C libraries. It covers both high and low level interfaces, including function specifications, code examples, and usage recommendations. This text includes items of interest to both the system administrator and the programmer. Customer Reviews (3)
C programmer should always have a copy of this book. Believe me, you need this book. If you have minimum knowledge of C programing, it will explain the printf function in detail. If you need more than this, take a look in the part about sockets and tcp/ip. This is called "Reference Manual" but it's more than a simple alphabetical list of all the function. Each subjects have a chapter that begin with a few paragraph to introduct the subject and they put examples where necessary. (No need to open your computer to see them like in others books I have seen) Another good point is the way you can find a page in the book. - There is a Table of content ;-) - A concept index(where you can find something like "Comparison Function" or "creating a socket") - A Type Index(with all the data types used by the library), - A "Function and Macro Index" (Where are they talking about the printf thing?) - A "Variable and Constant Macro Index" (What is errno?) - And something cool. An appendix they call "Summary of Library Facilities" it's contain all the functions (and macro, var, ..) with: the header file you need to include, the system it come from (is it a POSIX function? SunOs specific?) and the page number. Since you can install GCC and glibc on almost any unix like computer (And widows with cygwin). By the way they explan the installation process in the book. And since the book talk also a litle about the native library of others system. Well. Read it. When I began to learn C in linux, I was using the 'info' command or the FSF web site to read the book . (Because it's also available online!) But I should have buy a printed copy long ago. This book have 1079 pages. And lets say that a coder use only the half (that he would read a couple of time for reference). That's insane! Don't lose all this time on the computer. Read it in you bead or whatever but not on the screen. In fact the indexes are soo well done that it's almost fast that any kind of hyper link. If you want to check the online version: http://www.fsf.org/manual/glibc-2.0.6/libc.html I almost forget. They also spend few pages in the printed copy for things like contributors and the full text of the LGPL. You may not want to pay for this but it is somehow in the spirit of open source software. Isn't it? The only reason I put 4 stars rather than 5 is that this book is for Version 1.09 Beta while the publisher, FSF, are printing the one for version 2.2 (Edition 0.09 DRAFT but not that draft at all).
C programmer should always have a copy of this book. Believe me, you need this book. If you have minimum knowledge of C programing, it will explain the printf function in detail. If you need more than this, take a look in the part about sockets and tcp/ip. This is called "Reference Manual" but it's more than a simple alphabetical list of all the function. Each subjects have a chapter that begin with a few paragraph to introduct the subject and they put examples where necessary. (No need to open your computer to see them like in others books I have seen) Another good point is the way you can find a page in the book. - There is a Table of content ;-) - A concept index(where you can find something like "Comparison Function" or "creating a socket") - A Type Index(with all the data types used by the library), - A "Function and Macro Index" (Where are they talking about the printf thing?) - A "Variable and Constant Macro Index" (What is errno?) - And something cool. An appendix they call "Summary of Library Facilities" it's contain all the functions (and macro, var, ..) with: the header file you need to include, the system it come from (is it a POSIX function? SunOs specific?) and the page number. Since you can install GCC and glibc on almost any unix like computer (And widows with cygwin). By the way they explan the installation process in the book. And since the book talk also a litle about the native library of others system. Well. Read it. When I began to learn C in linux, I was using the 'info' command or the FSF web site to read the book . (Because it's also available online!) But I should have buy a printed copy long ago. This book have 1079 pages. And lets say that a coder use only the half (that he would read a couple of time for reference). That's insane! Don't lose all this time on the computer. Read it in you bead or whatever but not on the screen. In fact the indexes are soo well done that it's almost fast that any kind of hyper link. If you want to check the online version: http://www.fsf.org/manual/glibc-2.0.6/libc.html I almost forget. They also spend few pages in the printed copy for things like contributors and the full text of the LGPL. You may not want to pay for this but it is somehow in the spirit of open source software. Isn't it? The only reason I put 4 stars rather than 5 is that this book is for Version 1.09 Beta while the publisher, FSF, are printing the one for version 2.2 (Edition 0.09 DRAFT but not that draft at all).
Ultimate linux programming manual(674pgs) |
33. Beta Ethniki: 2009-10 Beta Ethniki, 2008-09 Beta Ethniki, Beta Ethniki 2006-07, Beta Ethniki 2007-08 | |
Paperback: 32
Pages
(2010-09-15)
list price: US$14.14 -- used & new: US$14.13 (price subject to change: see help) Asin: 1156173205 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
34. Coroutine sequencing in BETA (DAIMI. Aarhus Universitet. Matematisk Institut. Datalogisk afdeling) by Bent Bruun Kristensen | |
Unknown Binding: 26
Pages
(1987)
Asin: B0007BI02M Canada | United Kingdom | Germany | France | Japan | |
35. Converting beta to b weights on the IBM type 650, by August Dvorak | |
Unknown Binding:
Pages
(1959)
Asin: B0007FRO4S Canada | United Kingdom | Germany | France | Japan | |
36. Joomla! Start to Finish: How to Plan, Execute, and Maintain Your Web Site by Jen Kramer | |
Kindle Edition: 360
Pages
(2010-08-26)
list price: US$39.99 Asin: B0041G6SGY Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Joomla! offers powerful functionality and ease of configuration, making it an immensely popular open source content management system. However, far more than simply downloading and installing Joomla! is required in order to create a dynamic web site. This book walks you through the critical steps that must be taken in the planning process prior to establishing a Joomla! site. Joomla! expert Jen Kramer reviews essential questions that need to be asked of a client, discusses technical solutions to a variety of challenges, and explains how a site structure should be organized. Topics Covered: I Want a Web Site and I Want It Blue — How Much Will That Cost? Choosing the Right Technologies to Solve the Business Problem Downloading and Installing Joomla! A Brief Tour of the Joomla! Administration Interface Creating and Configuring Menus Installing and Configuring Modules That Come with Joomla Components That Come with Joomla! Plug-Ins That Come with Joomla! Adding Extensions to Joomla! Home Page Tips and Tricks Custom Templates Advanced Template and CSS Tricks Site Maintenance and Training Once the groundwork has been laid, you'll discover how to host and install Joomla!, and upgrade and maintain your Joomla! site. Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file. Customer Reviews (7)
Best book I've read on this subject so far
Excellent Reference
I knew I'd like it when I saw who authored it
The book never made it past "Start"
Decent book! |
37. Objektorientierte Sprachkonzepte und Diskrete Simulation: Klassifikation, Vergleich und Bewertung von Konzepten der Programmiersprachen Simula-67, Modula-2, ... (Fachberichte Simulation) (German Edition) by Thomas Frauenstein, Uwe Pape, Olaf Wagner | |
Paperback: 293
Pages
(1990-11-30)
list price: US$56.95 -- used & new: US$56.95 (price subject to change: see help) Asin: 3540532889 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
38. Programming Indigo : The Unified Framework for Building Service-Oriented Applications on the Microsoft Windows Platform Beta Edition by David Pallmann | |
Paperback:
Pages
(2005)
Asin: B003Q5CZYU Canada | United Kingdom | Germany | France | Japan | |
39. Java 1.1 Certification Exam Guide for Programmers and Developers by Barry Boone | |
Hardcover: 744
Pages
(1997-07)
list price: US$54.95 -- used & new: US$1.99 (price subject to change: see help) Asin: 0079136575 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description The second sectionof the book focuses on the developer's exam, which tests yourknowledge of object-oriented design (OOD), as well as Java syntax andtrivia. The author clues you into some Java-specific ways (forexample, abstract classes and interfaces) to apply your knowledge ofclass design in a new language, but you'll need to have somebackground in design to understand them. An especially noteworthychapter covers the conventions of writing javadoc-style comments,which create "automatic" HTML-based help for Java classes.The book closes with two "official" sample tests from SunMicrosystems. Though this book won't be useful to the general Javaprogrammer, it can be a valuable resource to those seeking Sun'scredentials for Java development. Customer Reviews (54)
Exam Buster!
General overview on 1.1 test and good sample questions
I passed the examthis morning! Be warned, I wouldn't have passed the exam with this book alone. Take allthe mock exams you can find, for ex. the new 1.1 test. Some questions on the test are difficult, andyou will need to know your stuff in depth
A must buy book for Java Certification
A must-read for anyone taking the JDK 1.1 certification Start from zero Java knowledge, put in a few hours of study andpractice every day for two or three months, and do all the exercises andpractice tests in the book.Don't hurry.Be sure to completely understandthe concepts before moving to the next chapter. Yes, there are a fewerrors in the book and in the practice exams.You must go to the author'shomepage to get the corrections. The book deserves five-star rating,though I think it should have covered more thoroughly the IO classes.Theprogrammer test hit me with a few questions I was not prepared for. Next,the developer test... ... Read more |
40. Instant Visual Basic 5 Activex Control Creation by Darren Gill, Alex Homer, Dave Jewell, Andrew Enfield, Bruce Hartwell, Rockford Lhotka | |
Paperback: 333
Pages
(1997-01)
list price: US$29.95 -- used & new: US$2.99 (price subject to change: see help) Asin: 1861000235 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (2)
Not all that good
Not a begginers book |
  | Back | 21-40 of 43 | Next 20 |