Average customer rating:
|
VBScript Programmer's Reference (Programmer to Programmer)
Adrian Kingsley-Hughes , Kathie Kingsley-Hughes , and Daniel Read Manufacturer: Wrox ProductGroup: Book Binding: Paperback Similar Items:
ASIN: 0764559931 |
Book Description
What is this book about?The VBScript standard has changed over time, and several new things have been introduced since this book first published in 1999. The current standard for VBScript is 5.6. The script debugger, script control, and script encoder have all changed and the Windows Script Component Wizard, regular expressions, and remote scripting have been introduced. Windows Script Host technology has also matured over time and gained in both effectiveness and popularity.
VBScript Programmer's Reference, 2nd Edition begins with discussion of the general syntax, functions, keywords, style, error handling, and similar language-specific topics and then moves into an expanded reference section covering the object models in detail. The book combines a comprehensive overview of the VBScript technology and associated technologies with practical examples at every stage from beginner to advanced user.
Specific topics include the following:
Download Description
What is this book about?The VBScript standard has changed over time, and several new things have been introduced since this book first published in 1999. The current standard for VBScript is 5.6. The script debugger, script control, and script encoder have all changed and the Windows Script Component Wizard, regular expressions, and remote scripting have been introduced. Windows Script Host technology has also matured over time and gained in both effectiveness and popularity.
VBScript Programmer's Reference, 2nd Edition begins with discussion of the general syntax, functions, keywords, style, error handling, and similar language-specific topics and then moves into an expanded reference section covering the object models in detail. The book combines a comprehensive overview of the VBScript technology and associated technologies with practical examples at every stage from beginner to advanced user.
Specific topics include the following:
Customer Reviews:
2nd Edition is outstanding as a tutorial and as a reference.......2006-06-10
Good book for starters.......2005-08-14
Great book, be sure to buy the 2nd Edition.......2005-02-04
Make Sure You Get the Second Edition!.......2004-12-23
for browsers.......2004-10-07
Average customer rating:
|
Perl in A Nutshell: A Desktop Quick Reference (2nd Edition)
Ellen Siever , Stephen Spainhour , and Nathan Patwardhan Manufacturer: O'Reilly Media, Inc. ProductGroup: Book Binding: Paperback Similar Items:
ASIN: 0596002416 |
Amazon.com
Perl in a Nutshell strives to be a perfect set of socket tools for the active Perl programmer. By and large, it succeeds, providing endless and well-thought-out lists and tables on the language's modules, flags, and extensions. The authors briefly address basic learner's questions--such as the difference between a hash and an array--but these concepts are not the purpose of the book. (Those new to Perl would be better off with others in the O'Reilly Perl series, such as Learning Perl, while programmers making the switch to Perl can pick up the nuances of the language with Programming Perl.) This book is pure Perl reference, briefly covering Perl/Tk (for GUI Perl programs on Unix and Windows 95/NT) and Perl for Win 32.The authors do start at the very beginning, and even in a self-described "desktop quick reference" find the time to comment on less urgent--but still interesting--Perl-related matters (like how to find online help amidst the "Perl culture"). The format of the book makes sections on topics such as Perl debugging easily understandable, illustrating how to make an interactive and timesaving environment.
Of particular convenience is the outstanding section on the standard Perl modules. A four-page "quick look" allows you to easily scan through short definitions of all the modules and find the entry you're looking for. An index with full definitions for each module follows, showing you how to use each module and providing a more in-depth explanation (and often, examples). Perl in a Nutshell concludes--as you might expect--with an excellent and well-cross-referenced index. --Jennifer Buckendorff
Book Description
This complete guide to the Perl programming language ranges widely through the Perl programmer's universe, gathering together in a convenient form a wealth of information about Perl itself and its application to CGI scripts, XML processing, network programming, database interaction, and graphical user interfaces. The book is an ideal reference for experienced Perl programmers and beginners alike. With more than a million dedicated programmers, Perl is proving to be the best language for the latest trends in computing and business, including network programming and the ability to create and manage web sites. It's a language that every Unix system administrator and serious web developer needs to know. In the past few years, Perl has found its way into complex web applications of multinational banks, the U.S. Federal Reserve, and hundreds of large corporations. In this second edition, Perl in a Nutshell has been expanded to include coverage of Perl 5.8, with information on Unicode processing in Perl, new functions and modules that have been added to the core language, and up-to-date details on running Perl on the Win32 platform. The book also covers Perl modules for recent technologies such as XML and SOAP. Here are just some of the topics contained in this book:Customer Reviews:
I've used Perl for several years and love this book.......2004-05-03
The book does have an excellent section on installing Perl including installation on both the Unix and Windows platforms. I've worked with both platforms and the installation process is well documented including how to install modules. This brings us to the large chapter on getting and installing Perl modules. I have spent hours sometimes trying to find an appropriate module for a special situation. This chapter lists all the most common modules and includes descriptions of what they do. This alone makes it a valuable resource for anyone involved in Perl.
The authors also include a lot of technical information including command line options and environment variables as well as a section on program structure, data types, special variables, operators, expressions, subroutines, filehandles, and just about anything else that you might need a quick refresher on.
Functions are listed both by category and by alphabetical order with descriptions and syntax information. I had a couple of problems on a large project recently and it took three days to get an answer through the forums on the Internet. The answers to all of them are right here and I could have saved myself a lot of trouble if I had had this book then.
A lot of other information is available in the book including CGI programming, Webserver programming, database programming, SOAP, Network modules including Net, Mail, NNTP, FTP, and LDAP, Perl/Tk, Win32 Modules and Extensions, OLE Automation, and ODBC Extensions. This book will be the one I keep close at hand when working with Perl and deserves its location on my desktop instead of in the library. "Perl in a Nutshell" is highly recommended for Perl programmers from basic to advanced level.
A handy reference, but..........2003-12-14
Great reference!.......2002-09-06
High Level Descriptions with Few Samples.......2002-07-24
Missing basic syntax rules. I wonder if the authors use Perl.......2002-04-30
Let me give you an example: I was poring over a (slightly) complicated regular expression, trying to figure out what was going on...there seemed no rhyme or reason to it.....there were way too many spaces and yet the pattern was matching!! I then noticed the "x" option on the end of it: /reg-ex/x Thinking this could be the culprit, I broke out Perl:NUTSHELL...I found the appropriate table and it said: this option used to Enable Extended regular expressions. Ah-ha! But wait, what are Extended regular Epressions, and what is the deal with all these extra spaces in my reg-ex? I forwarded a bit and found the section about Extended Regular Expressions. And I found.........nothing. As it turns out (after looking in the Camel), the "x" means that all whitespace in the pattern is ignored, hence all the darn spaces. I made a point to look (again) for this bit of syntactic info in Perl:NUTSHELL, and it is not there. So what is the use of this book then, considering it is missing such a BASIC SYNTAX rule? Good question.
Another gripe: where's the freakin examples? While I don't expect NUTSHELL books to EXPLAIN the examples tutorial style, I do expect some basic usage examples to help me with commands I havn't used (again, see Unix in a Nutshell)!!
Another quick example for you Perl non-gurus (like myself): I came upon the Perl "filetest" operator "-t"....but the test had no following argument (e.g. the file's name), so I was confused. Off to the Nutshell. Oops. Nothing there except the shortest little description possible. Sigh. Back to the Camel, where I found that this particular file test operator defaults to a filehandle,
In conclusion, this book seems to have zero "learning" value, being so terse (not to mention boring) and having so few examples, and only mediocre reference usefulness. Don't buy this one, buy the other O'Reilly books on Perl (Learning Perl and Programming Perl are high quality, as is Perl Cookbook). You might have to lug the Camel around (dromedaries are heavy), but it is superior to this inconcise man-page in every way (has a big reference section + a big 'learning' section).
PS. this is the 1st ed. Maybe the 2nd will be worth the money.
Book Description
Customer Reviews:
Book Description
Book Description
HTML, CSS (Cascading Style Sheets), and JavaScript are the three basic web programming languages that web programmers use to build functional, attractive, and interactive web sites. HTML creates the text, images, and other content on a web page; CSS formats and positions those elements; and JavaScript adds interactivity to websites by responding to user choices. The Web Programmer's Desk Reference is the only book to serve as a single point of reference to all three primary web programming languages. It begins with a web programming primer that gives beginning and intermediate programmers an understanding of the core elements of HTML, CSS, and JavaScript, then moves on to a reference section that lists every element of HTML, CSS, and JavaScript. Each listing includes the latest syntax and functionality, compatibility with other elements, and cross-browser compatibility issues. Whether you are a professional web programmer, professional web designer, or a recreational webmaster with a dynamic web site, this will be the book that you use whenever you need to know how to use a particular HTML element, JavaScript object, or CSS style.
Customer Reviews:
Book Description
Customer Reviews:
Amazon.com
This is a reference, so don't expect it to teach you JavaScript through any sort of tutorial (though reading the object descriptions can be very illuminating, indeed). Cliff Wootton has chosen to organize his work alphabetically, like a giant encyclopedia of objects, reserved words, operators, filters, and other aspects of JavaScript and the DOM standards. A cross-reference that associates individual properties, methods, and event handlers with the objects to which they belong appears as an appendix. Once you've located the entry of the object you want, you'll have easy access to inheritance information, a syntax summary, and plain-English advice on what the object does. Tables provide implementation details for each property, method, and event handler, so you know which versions of which browsers support the language feature you want to use. There also are references to standards documents, and, sometimes, illustrations of how to use the language element in working code. Illustrations are rare but generally effective in clarifying the significance of language elements and the relationships among objects.
A cool feature is Wootton's documentation of common errors and incorrect assumptions. For example, he's included an entry on Bar.visibility, a nonexistent property sometimes assumed to exist in the Netscape Navigator object model. The correct property is Bar.visible, the author points out. The book also has some strange ways of doing things: Operators and other non-character entries don't appear up front, before the "A" entries, as is conventional. They've been transliterated, if that's the word, so you have to look up "Add" in order to find out about the + operator. Overall, this is a fine JavaScript reference, made excellent by its companion CD-ROM that includes the entire body of printed reference material (plus some extra) in searchable form. --David Wall
Topics covered: The JavaScript, JScript, and ECMAScript scripting languages, and their implementations in popular browsers as well as in standards documents. Coverage includes JavaScript through version 1.5, JScript through version 5.5, and ECMAScript through version 3. The DOM1 standard is covered fully and the DOM2 standard is covered to the extent it's implemented in Netscape Navigator 6. Effectively, this means coverage includes Netscape Navigator through version 6.0, Internet Explorer through version 5.5, and Opera through version 5. There's also some coverage of server-side JavaScript under Netscape Enterprise Server.
Book Description
Complexity and confusion in JavaScript come not from the language, but from the number of different implementations, each with widely varying support for different APIs and standards. Written from extensive programming experience gained in developing components for a major website, this book helps you navigate those difficulties.
The accompanying CD not only presents this entire book in PDF format, fully hyperlinked and viewlable with Acrobat Reader (tm), but provides a cross-referenced, lexical reference that includes over 3500 entries, giving an even more comprehensive, browser-based companion to the book.
Customer Reviews:
This is pretty much useless if you are looking for an anwer to a meaningful question. It is only useful in the case where you know the class/method and are looking for the table "which browser does it support it".
I definitely do not recommend it.
I don't use the book anymore. Besides being (deliberately) incomplete finding items is quicker using the CD-ROM. The electronic version is styled as webpages strewn with hyperlinks (I didn't and don't even bother checking out the pdf version). If you have enough hard disk space copy the entire CD-ROM and use that copy instead. Accesing the reference is much faster that way. Create a shortcut on your desktop or on the Quick Launch bar or anywhere it's most convenient.
Please note that this is not a beginner's book! Buy this only when you've gotten up to speed on JS programming. This is purely a dictionary-like reference for JS programmers. I myself bought it while my understanding of JS was at kindergarten stage. Needless to say 'reading' it then was a disappointing experience. My fault, not Wootton's. These days I refer to it every now and then to check on syntax and usage.
Book Description
Customer Reviews:
With this book, one can just study examples off the web. All the names of the functions, methods, and properties are individually explained. I highly recommend this book as a reference on top of any other Javascript books or keep it as a bible to do programming. Writing and studying Javascript can never be confusing with this book.
If the author would write an advanced book explaining how to use the functions, methods, and properties in useful examples. I will buy that book as well.
Books:
Recommended Books
Average customer rating:
Web Standards Programmer's Reference : HTML, CSS, JavaScript, Perl, Python, and PHP
Steven M. Schafer
Manufacturer: Wrox
ProductGroup: Book
Binding: Paperback
JavaScript
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
PHP
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
Python
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
General
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
CSS
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Look Inside Computer Books
| Trip
| Specialty Stores
| Books
All Amazon Upgrade
| Amazon Upgrade
| Stores
| Books
Computers & Internet
| Amazon Upgrade
| Stores
| Books
Similar Items:
Professional CSS: Cascading Style Sheets for Web Design
Beginning Web Programming with HTML, XHTML, and CSS (Wrox Beginning Guides)
Professional JavaScript for Web Developers (Wrox Professional Guides)
PHP and MySQL Web Development (3rd Edition) (Developer's Library)
Ajax in Action
ASIN: 0764588206
Great beginners reference book for beginners!!.......2007-05-25
Web standards?.......2006-08-08
replaces 6 books [one for each language].......2005-08-09
Hopefully, you should be able to appreciate that HTML is simple. In fact, of all that the book discusses, HTML is the simplest language. Several initial chapters walk you through HTML. It must be stressed that mastery of HTML is needed to make sense of the rest of the book.
The later languages either extend the scope of an HTML file, or they generate the file, roughly speaking. Cascading Style Sheets (CSS) lets you easily factor out common definitions that are used across multiple web pages, where you can imagine that each web page corresponds to a file storing it. Schafer explains how to use CSS to simplify management of a set of HTML files. A centralised way to set common fonts and the like. More robust.
But HTML is a declarative language. Good, because laymen can more easily understand and write such languages. It's easier to say what should be done, than how to do it. But for the times when you need more expressive power on the browser, Schafer offers JavaScript. A procedural language that actually has nothing to do with Java. [The coincidence in names was a marketing ploy.]
Schafer does not ignore the server. CGI is given, as the first generation attempt at server side code. Its limitations spawned the use of Perl, PHP and Python for easier parsing of user input and generation of new dynamic pages.
Each of these languages (HTML, CSS, JavaScript, Perl, PHP and Python) is often the subject of its own book. No surprise then that Schafer explaining all 6 gave us a book of this length!
Average customer rating:
ASP.NET AJAX Programmer's Reference: with ASP.NET 2.0 or ASP.NET 3.5
Shahram Khosravi
Manufacturer: Wrox
ProductGroup: Book
Binding: Paperback
General
| Programming
| Computers & Internet
| Subjects
| Books
Ajax
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
General
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
ASP
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Look Inside Computer Books
| Trip
| Specialty Stores
| Books
Similar Items:
Professional ASP.NET 2.0 AJAX (Programmer to Programmer)
ASP.NET AJAX in Action
Introducing Microsoft ASP.NET AJAX (Pro - Developer)
Professional ASP.NET 2.0 Design: CSS, Themes, and Master Pages (Programmer to Programmer)
Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)
ASIN: 047010998X
Average customer rating:
The Web Programmer's Desk Reference
Lazaro Issi Cohen , and
Joseph Issi Cohen
Manufacturer: No Starch Press
ProductGroup: Book
Binding: Paperback
Internet
| Home Computing
| Computers & Internet
| Subjects
| Books
| Internet & Education
| Online Searching
| Web Browsers
| Web for Kids
General
| Programming
| Computers & Internet
| Subjects
| Books
General
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Networks, Protocols & APIs
| Networking
| Computers & Internet
| Subjects
| Books
General
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Look Inside Computer Books
| Trip
| Specialty Stores
| Books
Similar Items:
Write Great Code, Volume 2: Thinking Low-Level, Writing High-Level
Head Rush Ajax (Head First)
DOM Scripting: Web Design with JavaScript and the Document Object Model
Agile Web Development with Rails, 2nd Edition
JavaScript: The Definitive Guide
ASIN: 1593270119
Well done.......2007-01-28
Barbara
Very Useful Desk Reference.......2006-06-30
good reference, but seems abandoned by authors.......2005-07-06
There seems to be no maintained errata for the book which has a pretty bad error on page 7. Contextual selectors like:
h1 em ul { color: red; }
apply to an h1 tag that contains an em tag that contains a ul tag.
And not what the book states which is that it is equivalent to:
text
h1 { color: red; }
em { color: red; }
ul { color: red; }
The code equivalent to the three separate rules is not a contextual select, but just three separate rules that can be written as:
h1, em, ul { color: red; }
Despite this error early on in the book, I find it overall a useful reference.
The author's unmaintained website is at:
http://deskref.softsmartinc.com
Meets a real need.......2004-11-08
The intended reader already uses HTML, CSS, JavaScript, and maybe some Microsoft-only technologies, and has references on them. Those references may show which HTML elements allow STYLE values, but not what values have meaning for that element. They may show what JavaScript methods and properties exist, but not which HTML elements support which ones, and so on. Details like which particular properties apply to which particular elements in which versions of Internet Explorer are critical to complex web sites, but generally hard to find - unless you look here.
This book is the missing link. The subtitle really says it best: "A complete cross-reference to HTML, CSS, and JavaScript." This supplements the references you already have, it doesn't supplant them. You'll still need other books for the how and why of each topic, and beginners may not even understand the problem that's being solved here.
I have very few complaints about the content. One is that it's not very explicit about versions of the HTML, CSS, or JavaScript standards that define each feature. Another is that it discusses Internet Explorer and Netscape, but disregards other browsers. And, as expected in a new title of this size, there are a few formatting glitches and typos. None of those problems interfere much with the book's value. A web reference to its many brief examples would have been helpful, too, but seems to be missing.
This isn't a tutorial. There are no "coolness" tips or slick demos. This is for people with plenty of coolness of their own, but lots of hard problems to solve in bringing it to life. Perhaps you've already got a stack of web development manuals, but an ongoing "The answer is in there SOMEWHERE" frustration. In that case, you probably want this book - maybe the answer won't be here, but this book will probably tell you where it is.
//wiredweird
Not a How-To, But a Complete Reference.......2004-10-28
This book is no exception. The world of putting together a web page has changed. Not too many years ago, you learned HTML and you pretty well had a handle on doing a web page. Not true any more. The simple font statement controlled what font you used and various modifiers to the command gave additional things like color and size. This has been replaced with Cascading style sheets. Java and JavaScript have come in to provide a programming capability that didn't exist before.
Here in one volume are the three main web programming languages. It is not, quite possibly, the best introductory text you could find. It is, as the title says, a desk reference. It doesn't say this is HTML and if you want to do a web page start here and try this tag, then let's use that tag. It has every HTML tag, every attribute in HTML and CSS, collections, classes, methods, etc. They are arranged alphabetically, so you can find them easily if you know what you are looking for. Finally, it's up to date with the latest standards so it is probably more current than the individual books you bought earlier.
You don't have to save much time to justify having this book on your desk.
Average customer rating:
JavaScript Programmer's Reference
Christian MacAuley , and
Paul Jobson
Manufacturer: McGraw-Hill Osborne Media
ProductGroup: Book
Binding: Paperback
General
| Java
| Programming
| Computers & Internet
| Subjects
| Books
General
| Programming
| Computers & Internet
| Subjects
| Books
General
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
JavaScript
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Mathematics
| Professional Science
| Professional & Technical
| Subjects
| Books
| Applied
| Chaos & Systems
| Geometry & Topology
| Mathematical Analysis
| Mathematical Physics
| Number Systems
| Pure Mathematics
| Transformations
| Trigonometry
General
| Reference
| Subjects
| Books
Look Inside Computer Books
| Trip
| Specialty Stores
| Books
Similar Items:
ASIN: 0072192968
The best portable desk reference.......2002-02-28
Please say thanks to the authors for me.
- Bob Giuli, Internet Architect
Good idea - too many errors.......2002-02-17
Average customer rating:
Javascript Programmer's Reference (Programmer to Programmer)
Cliff Wootton
Manufacturer: Wrox Press
ProductGroup: Book
Binding: Mass Market Paperback
General
| Java
| Programming
| Computers & Internet
| Subjects
| Books
General
| Programming
| Computers & Internet
| Subjects
| Books
General
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
JavaScript
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Mathematics
| Professional Science
| Professional & Technical
| Subjects
| Books
| Applied
| Chaos & Systems
| Geometry & Topology
| Mathematical Analysis
| Mathematical Physics
| Number Systems
| Pure Mathematics
| Transformations
| Trigonometry
General
| Reference
| Subjects
| Books
ASIN: 1861004591
Superb reference.......2006-11-23
Contextually Useful.......2005-12-20
The book is utterly useless if you aren't already proficient at Javasript. There are no examples. It seems like other reviewers were expecting a "how-to" book, and this was not a how-to book.
Useless Tome.......2003-07-19
Very much useless.......2003-05-20
The CD-ROM is handy.......2002-05-02
Average customer rating:
Official Netscape JavaScript 1.2 Programmer's Reference
Peter Kent , and
Kent Multer
Manufacturer: Ventana Communications Group
ProductGroup: Book
Binding: Paperback
General
| Java
| Programming
| Computers & Internet
| Subjects
| Books
General
| Programming
| Computers & Internet
| Subjects
| Books
General
| Languages & Tools
| Programming
| Computers & Internet
| Subjects
| Books
JavaScript
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Programming
| Web Development
| Computers & Internet
| Subjects
| Books
General
| Networks, Protocols & APIs
| Networking
| Computers & Internet
| Subjects
| Books
General
| Computers & Internet
| Subjects
| Books
General
| Software
| Computers & Internet
| Subjects
| Books
Mathematics
| Professional Science
| Professional & Technical
| Subjects
| Books
| Applied
| Chaos & Systems
| Geometry & Topology
| Mathematical Analysis
| Mathematical Physics
| Number Systems
| Pure Mathematics
| Transformations
| Trigonometry
ASIN: 1566047579
The Reference Bible.......1998-08-08