Showing posts with label javascript. Show all posts
Showing posts with label javascript. Show all posts

Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer) Review

Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer) ReviewI want to preface this review by stating that I read this book without working through much of the code, as I was doing a compare/contrast between XMPP and AMQP over the holidays.
That being said, I thoroughly enjoyed the author's presentation, and this was a standout book from Wrox for me, as they've improved the quality of their paper (thicker and now white), typesetting (smaller margins), and I suppose even the use of a graphic for the cover (as opposed to the author's picture) was well-received ...
The author is clearly well-versed in XMPP, and the introduction was very effective at getting me up to speed on using XMPP in an immediately sense. The chapters built upon one another in complexity, and I never felt lost, or had to re-read along the way.
Overall, I thought this book was effective, and the author's style made for an enjoyable read - one that wasn't terribly dry and at once didn't feel self-indulgent ...Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer) OverviewCreate real-time, highly interactive apps quickly with the powerful XMPP protocol
XMPP is a robust protocol used for a wide range of applications, including instant messaging, multi-user chat, voice and video conferencing, collaborative spaces, real-time gaming, data synchronization, and search. This book teaches you how to harness the power of XMPP in your own apps and presents you with all the tools you need to build the next generation of apps using XMPP or add new features to your current apps. Featuring the JavaScript language throughout and making use of the jQuery library, the book contains several XMPP apps of increasing complexity that serve as ideal learning tools.
Coverage Includes:
Getting to Know XMPP
Designing XMPP Applications
Saying Hello: The First Application
Exploring the XMPP Protocol: A Debugging Console
Microblogging in Real Time: An Identica Client
Talking with Friends: One-on-One Chat
Exploring Services: Service Discovery and Browsing
Group Chatting: A Multi-User Chat Client
Publishing and Subscribing: A Shared Sketch Pad Introduction
Writing with Friends: A Collaborative Text Editor
Playing Games: Head to Head Tic-Tac-Toe
Getting Attached: Bootstrapping BOSH
Deploying XMPP Applications
Writing Strophe Plug-ins

Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.

Want to learn more information about Professional XMPP Programming with JavaScript and jQuery (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Scripting in Java: Languages, Frameworks, and Patterns Review

Scripting in Java: Languages, Frameworks, and Patterns
Average Reviews:

(More customer reviews)
Are you looking to buy Scripting in Java: Languages, Frameworks, and Patterns? Here is the right place to find the great deals. we can offer discounts of up to 90% on Scripting in Java: Languages, Frameworks, and Patterns. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Scripting in Java: Languages, Frameworks, and Patterns Review"Scripting in Java" is a great book to get started with using scripting languages that interact with Java. It is assumed the reader knows Java syntax, a reasonable assumption. The author does go into detail on dynamic vs static languages, the role of the JVM and other concepts. This is helpful as it highlights the important parts when thinking about scripting languages. When discussing any scripting language, the author includes a section on setting it up.
The description of scripting languages, benefits, syntax and libraries is all good. The author shows how to call scripting languages from Java and vice versa. I particularly like how the author pointed out concepts about each language such as how variables are handled. I also like how the author addressed concerns people, myself included, have about scripting languages. The end of the book covers advanced concepts about the scripting framework.
My only complaint is the formatting of the book. It has very large two inch margins. The text is only four inches wide. This makes the book seem heavier/thicker than it needs to be. More importantly, some of the code listings don't follow the huge margin requirement. On some pages, you see a code fragment that honors the two inch margin and another only a half inch from the edge of the book. This happens just often enough to be disorienting when reading.
Overall, the book is very good and I recommend it.Scripting in Java: Languages, Frameworks, and Patterns Overview

Want to learn more information about Scripting in Java: Languages, Frameworks, and Patterns?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Simply JavaScript Review

Simply JavaScript
Average Reviews:

(More customer reviews)
Are you looking to buy Simply JavaScript? Here is the right place to find the great deals. we can offer discounts of up to 90% on Simply JavaScript. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Simply JavaScript ReviewSimply Javascript by Kevin Yank and Cameron Adams lives up to the subtitle of Everything you need to learn Javascript from scratch. Javascript is a tricky subject to tackle. The Internet is full of Javascript snippets and code samples everywhere you look. Often times these code samples are less than satisfactory when you are addressing accessibility within your website. Many of the code samples contain outdated and proprietary code samples, making it a task to work out kinks and debug. The good news with this book is that they stick to a standard. All code used in this book uses object literal notation. Sticking to a coding style and format helps make this book an incredible read. Throughout this book you will learn the underpinnings of Javascript and how you can achieve different tasks.
Learning Javascript from scratch can be a daunting task. After all, there are several libraries and free scripts that you can essentially download and plugin to your website. But what happens when things go wrong? What happens when you need to modify the script to fit your needs? Having a solid foundation and understanding of Javascript will help you as you begin to develop for your own needs. This book gently walks you through the steps you need to take to achieve that solid foundation.Chapter 1 starts off with a brief primer of unobtrusive Javascript and it's role in the three layers of the web. HTML is your content. CSS is your presentation. Javascript is your behavior. These three aspects need to be separate from one another and also co-exist at the same time. Gone are the days of inline event handlers and functions. Using the power of the DOM you can rest assured your HTML will be pure and your applications will work flawlessly without Javascript enabled.
Chapter 2 spends some time setting up the foundation for beginners. This chapter walks you through statements, comments, variables and different variable types, conditions and loops, functions, and objects. Whew, that was a mouthful. This is where the standard of coding is introduced that will be used throughout the rest of the book. Things such as code indenting and formatting are touched on as well. This allows you to write clean code that is readable by you and other developers who may be working with your code. As stated earlier, all code uses object literal notation, and therefore this is explained in this chapter. A few examples are given and we are off to building some handy tools.

Chapter 3 gives you the necessary road map. This chapter is devoted to traversing the Document Object Model. A few helper classes are shown here that will allow us to retrieve elements by class name, add class names to an element, remove class names from an element, and check for the existence of class names within in an element. These will be used extensively throughout the book and are placed in their Core object. In addition to being able to traverse by class names, there is also the list of standard elements such as getElementById and getElementsByTagName. With these powerful tools at our finger tips we can now begin altering our pages as deemed necessary. The example given here is one of striping table rows. For those who don't do this on the server side, this simple task allows you to stripe your rows via the DOM.
Sure it's cool to add stripes to a table, but how can we do more? Chapter 4 is all about Events and the power they add to interacting with the DOM. The brief history lesson in this chapter helps us understand the different interpretations of different browsers and how we can use object detection to abstract these tasks into the Core object. Event Listeners and Event Handlers are both discussed in great detail. We move on to two working examples: Rich tooltips and Accordion. Rich tooltips are used to extract information from our title attribute and then apply them to a more stylish hover tooltip effect. Accordion allows us to save space on our pages by gradually showing the content as it is requested by either a click or keyboard event.
Chapter 5 gets us moving even more. This chapter is devoted to Animation and is probably one of the more complex chapters of the book. We are introduced to two methods, setTimeout and setInterval. Working mainly with setTimeout we are able to achieve our animation effects. This chapter looks at the principles of animation and an example of path-based motion with a soccer ball. We then use our new-found knowledge to extend our tooltip to show after a specified time, and our accordion is given a nice slide effect. We simply extend the code from our previous chapter to make these things happen. This is a good example of the benefits of working with objects and decoupling inside of your Javascript.
Chapter 6 gives use a few more tools to work with Forms. Forms are never easy to manipulate. Whether it be the style or the behavior. The beginning of the chapter starts with smaller scripts and examples of manipulating forms. This is done by specifying dependent fields and only showing them when necessary, and creating cascading menus from a select and it's optgroup. We then move on to some more advanced features for validation and creating a custom slider. These have been presented before in other areas, so nothing is really new in this area. However, this is all a part of understanding the bigger picture and the possibilities. It is about getting the creative juices flowing.
Chapter 7 discusses the inevitable testing for errors and debugging your application. We walk through the different types of erros: syntax, runtime, and logic. With each of these code samples are given with errors. We then use the tools of the browsers to make sense of their often cryptic error messages. In order to debug Javascript there is an invaluable tool in Firebug, a plugin for the popular Firefox web browser.
More interaction is still left as chapter 8 moves us to AJAX. Some very strong disclaimers are made as to when and where to use the right tool for the right job. Caution is also given in regards to assistive devices such as screen readers. With the warnings out of the way, we move to a some practical examples. The first is a small weather widget and the second is an extension to form validation.
The book finishes off by looking too the future of Javascript. Discussions of Rich Internet Applications and their place inside of the web help to stimulate your mind as you think about the possibilities. Not only about building applications on the web, but also using Javascript for such things as Dashboard Widgets and even browser development. In the hands of responsible developers, the future looks exciting for Javascript.
The Appendix is a very important part to this book, and I like its placement. The appendix goes through the Core methods used throughout the entire book. But why wait until the end of the book? Had this chapter shown up earlier it would have caused more confusion than necessary, and more explanation that necessary. As a reader you have the option to read this appendix first, but I felt it was well placed and covered thoroughly at the end of the book. By this point in the book you will have gained enough knowledge to dive in, whereas the beginning might have left you asking all the wrong questions.
If you have been developing Javascript for any amount of time, then you are most likely aware of the array of libraries available to us. These include Prototype, Scriptaculous, jQuery, Dojo, MooTools, and YUI to name a few. Each chapter of this book ends with a discussion of the libraries and how they can be used to help achieve the different tasks. Some libraries can achieve some tasks, while others still take a little work. The authors give a fair coverage to the libraries but do not dwell on them as the end-all-be-all of Javascript. If anything, the author's stress that you understand your Javascript at the core and know why you are doing what you are doing. This book sticks to unobtrusive principles and doesn't take shortcuts. The authors strive to make sure the code is of high quality and compatible cross-browser, but they never take the easy way out. Things such as innerHTML are put away in favor of building the DOM on the fly. This adds to the overall excellent quality of this book. The excellent code coupled with beautiful illustrations make this book easy to take small chunks at a time.Simply JavaScript Overview
Everything you need to learn JavaScript from Scratch!

Packed with numerous examples, Simply JavaScript is a step-by-step introduction to programming in JavaScript the right way. Learn how easy it is to use JavaScript to solve real-world problems, build smarter forms, track user events (such as mouse clicks and key strokes), and design eye-catching animations. Then move into more powerful techniques using the DOM and Ajax.
Learn JavaScript's built-in functions, methods, and properties. Easily integrate JavaScript in your web site. Use JavaScript to validate form entries and interact with your users. Understand how to respond to user events. Create animations that bring your web site to life. Start programming using the DOM and Ajax.
Unlike other JavaScript books, modern best practices such as progressive enhancement, accessibility and unobtrusive scripting are used from the very beginning. All the code in the book is also cross-browser compatible and downloadable for free, so you can get started instantly!


Want to learn more information about Simply JavaScript?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

jQuery Mobile Review

jQuery Mobile
Average Reviews:

(More customer reviews)
Are you looking to buy jQuery Mobile? Here is the right place to find the great deals. we can offer discounts of up to 90% on jQuery Mobile. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

jQuery Mobile ReviewI thought this book "okay" for getting started with jQuery Mobile. However, I thought this book was going to be more than just a small introduction to jQuery Mobile. Don't get me wrong, it does provide enough information to get you going in developing your jQuery Mobile website, BUT it lacks in proper documentation.
This book was below my expectations for an O'Reilly book. You are better off just going to the jQuery Mobile website, and reading their documentation in all honesty. Beware though, even the jQuery Mobile website documentation isn't all that clear,also. So you will have to experiment.jQuery Mobile Overview
Native apps have distinct advantages, but the future belongs to mobile web apps that function on a broad range of smartphones and tablets. Get started with jQuery Mobile, the touch-optimized framework for creating apps that look and behave consistently across many devices. This concise book provides HTML5, CSS3, and JavaScript code examples, screen shots, and step-by-step guidance to help you build a complete working app with jQuery Mobile.

If you're already familiar with the jQuery JavaScript library, you can use your existing skills to build cross-platform mobile web apps right now. This book shows you how.

Get a high-level overview of jQuery Mobile: how it works and how to use it
Learn about paging and navigation, including dialogs, Ajax content, and history
Employ jQuery Mobile's extensive event system to create rich interactions
Work with toolbars, buttons, lists, forms, and other UI elements
Create a variety of visual designs with jQuery Mobile's sophisticated theming system
Use the jQuery Mobile API for finer control over elements and interactions
Put everything together and build a mobile app from start to finish


Want to learn more information about jQuery Mobile?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Practical DWR 2 Projects (Expert's Voice in Java) Review

Practical DWR  2 Projects (Expert's Voice in Java)
Average Reviews:

(More customer reviews)
Are you looking to buy Practical DWR 2 Projects (Expert's Voice in Java)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Practical DWR 2 Projects (Expert's Voice in Java). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Practical DWR 2 Projects (Expert's Voice in Java) ReviewDWR has a highly specific function and at 521 pages the reader could expect a thorough book on the subject, but I think you will be disappointed. This is really a 1-star book, however I gave it 2 stars because the author has gone to the trouble of putting this book together for what is a narrow readership segment within the software developer community.
Pages 129 through to the end of the book are a compendium of projects that illustrate the use of DWR. I don't like having to read through illustrated projects to discover general techniques. For example the first coverage of DWR configuration via annotations is buried in one such project near the end. You might strike lucky and find one of these projects gives your in-house project a head start but as a structured introduction to DWR this main bulk of the book fails.
So that leaves 128 pages for detailed DWR coverage? Unfortunately there is further disappointing news, pages 1 to 38 are just an elementary introduction to AJAX augmented with plenty of cartoons. DWR gets it first mention on page 39!
The final and only 80 pages of true DWR tutorial disappointed me further. The first 5 star book review here compliments the jocular style of the prose, unfortunately when you are looking for the few pieces of substance in this book these jokes only serve to annoy.Practical DWR 2 Projects (Expert's Voice in Java) Overview

Want to learn more information about Practical DWR 2 Projects (Expert's Voice in Java)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language Review

Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language
Average Reviews:

(More customer reviews)
Are you looking to buy Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language? Here is the right place to find the great deals. we can offer discounts of up to 90% on Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language Review"I never got the chance to meet the inventors of `Notes', but these guys were true visionaries." This is the first sentence in a 748 pages book about XPages that was recently published by IBM Press.
The book is written by Martin Donnelly, Mark Wallace and Tony McGuckin with a foreword by Philippe Riand. Although all authors declare that "none of us had been down the book-writing road before", the book is well written, even for readers that do not have english as the first language.
The main content starts with a high level overview about XPages. Even if you are already experienced in XPages development, it is worth reading this chapter. Start writing your first XPages application and follow the instructions step by step. The resulting application is a good starting point to put enhancements on top.
If you run into a problem regarding security settings on the server take a look at the very end of the book where you find the settings that have to be applied to your server.
IMHO, this information should be part of the "Getting Everything You Need" chapter.
The anatomy of an XPage is described in detail in chapter 4. Newbees to this field should read this chapter carefully. You will need this information if you want to dig deeper into XPages development later on.
Chapter 12 explains how to build your own user interface controls. This part of the book is not easy to understand for a non experienced developer, but if you follow the step by step instruction carefully, you will succeed.
All over the book you find tons of source code and numerous screenshots. It would be a good idea to make the source code available for download. But perhaps it is already available and I missed this part in the book.
The book also gives credit to all of the members of the Notes Community that started back in 8.5 with spreading the news about XPages in blogs, podcasts etc. Take these ressources as a supplement to the information you find in the book.
As a conclusion, I would recommend this book to every developer that wants to start with XPages development.Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language OverviewThe first complete, practical guide to XPages development - direct from members of the XPages development team at IBM LotusMartin Donnelly, Mark Wallace, and Tony McGuckin have written the definitive programmer's guide to utilizing this breakthrough technology. Packed with tips, tricks, and best practices from IBM's own XPages developers, Mastering XPages brings together all the information developers need to become experts - whether you're experienced with Notes/Domino development or not. The authors start from the very beginning, helping developers steadily build your expertise through practical code examples and clear, complete explanations. Readers will work through scores of real-world XPages examples, learning cutting-edge XPages and XSP language skills and gaining deep insight into the entire development process. Drawing on their own experience working directly with XPages users and customers, the authors illuminate both the technology and how it can be applied to solving real business problems. Martin Donnelly previously led a software startup that developed and distributed small business accounting software. Donnelly holds a Commerce degree from University College Cork and an M.S. in Computer Science from Boston University. Mark Wallace has worked at IBM for 15 years on many projects as a technical architect and application developer. Tony McGuckin participates in the Lotus OneUI Web Application and iWidget Adoption Workgroup. He holds a bachelor's degree in Software Engineering from the University of Ulster.

Want to learn more information about Mastering XPages: A Step-by-Step Guide to XPages Application Development and the XSP Language?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Ajax in Action Review

Ajax in Action
Average Reviews:

(More customer reviews)
Are you looking to buy Ajax in Action? Here is the right place to find the great deals. we can offer discounts of up to 90% on Ajax in Action. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Ajax in Action ReviewLet me first preface this review by saying this is the first technical book that I've read cover to cover TWICE prior to posting a review. I had to make sure the stuff stuck, because the material covered in Manning's very excellent "Ajax in Action" is really deep. But bringing the next evolution of user experience, giving your web applications a rich client feel, isn't completely easy. This won't scare you away from using Ajax in your existing applications, but make you aware of exactly what to expect.
The book first starts out by presenting a healthy discussion of the key components of remote scripting - CSS, the DOM, JavaScript's XmlHttpRequest object and client callbacks - and how they interact within the scope of your project. Before diving into full-on Ajax development, authors Dave Crane and Eric Pascarello discuss the need for object-oriented JavaScript programing, which will be foreign and awkward to most developers, even those coming from procedural backgrounds like Java and C++. The authors familiarize you with the various ways of composing the unconventional constructs available (JSON-RPC, prototypes) for optimizing remote scripting.
Best practices are encouraged throughout the chapters and enforced in all code snippets. The use of patterns like Observer, Command and MVC and refactoring and module-based programming (mainly .NET assemblies and Java servlets) permeate the entire work. The actual meat of the book doesn't get started until Chapter 9, which the authors clearly state, dealing with the aforementioned discussion of raw JavaScript programming that'll be completely new to most people. But for those not wanting to engage in the massive task of writing syntax by hand, the major libraries available are thankfully referenced.
The book also isn't a "copyist's" title, one that can provide working code right out of the gate. Also, the audience for this work should be fairly sopisticated and experienced with modern-day web programming, as the book assumes a certain level of competency and doesn't waste time with rudimentary concepts or examples. Crane and Pascarello take a platform-agnostic look at incorporating Ajax-style programming into web applications, citing examples in PHP, Java and .NET, and accordingly the examples are all partial and abstracted, to be implemented in whatever platform the developer/reader is familiar with.
This is also one of the few books that I've ever recommended people read the appendices in addition to the chapters. Most titles have supplementary info that doesn't match the flow of the chapters, or exclusionary stuff you can skip, but this book is really a tome of good reading. Appendix B is an outstanding discussion on JavaScript OOP, providing an introduction to and examples in JSON.
Ajax programming is a lot more complex than it lets on, but not as daunting as you might think. This book is critical in your understanding of how to make the next big thing in web development to work for you. A must-have.Ajax in Action Overview
Val's Blog "A tremendously useful field guide specifically written for developers down in the trenches...waiting for the killer solution..."

Web users are getting tired of the traditional web experience. They get frustrated losing their scroll position; they get annoyed waiting for refresh; they struggle to reorient themselves on every new page. And the list goes on. With asynchronous JavaScript and XML, known as "Ajax," you can give them a better experience. Once users have experienced an Ajax interface, they hate to go back. Ajax is new way of thinking that can result in a flowing and intuitive interaction with the user.

Ajax in Action helps you implement that thinking--it explains how to distribute the application between the client and the server (hint: use a "nested MVC" design) while retaining the integrity of the system. You will learn how to ensure your app is flexible and maintainable, and how good, structured design can help avoid problems like browser incompatibilities. Along the way it helps you unlearn many old coding habits. Above all, it opens your mind to the many advantages gained by placing much of the processing in the browser. If you are a web developer who has prior experience with web technologies, this book is for you.


Want to learn more information about Ajax in Action?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

XML: Visual QuickStart Guide (2nd Edition) Review

XML: Visual QuickStart Guide (2nd Edition)
Average Reviews:

(More customer reviews)
Are you looking to buy XML: Visual QuickStart Guide (2nd Edition)? Here is the right place to find the great deals. we can offer discounts of up to 90% on XML: Visual QuickStart Guide (2nd Edition). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

XML: Visual QuickStart Guide (2nd Edition) ReviewTruth be told, I do not work as a Web developer, but on a daily basis my job has me in contact with business clients and Web application developers. My clients require robust Web applications, my developers make it happen. Because of legacy data issues, shared disparate databases, and the need for them to handshake; XML Web services have become a standard solution in many commercial Web solutions. Though I am somewhat familiar with the basics of XML I wanted to go deeper to better myself and better my knowledge in client/tech conversations. What I did not want to do is to go so deep as to read a monster 1000+ page tome that would require weeks of book study, application and befuddlement.
Instead, Mr. Goldberg's book provided me a concise break down the structure of XML markup language in a detailed/digestible enough manner to keep me engaged and participatory. Each chapter cleverly builds on previous topics, so as to provide a pyramid learning approach. This enabled me to go deeper than before into the more arcane areas of the language (XPath patterns, functions, expressions, XSL-FO, DTD's, schemas, etc.) so it could be more easily understood.
If you are new to XML, curious, or need enough to know to be dangerous in your job, then this book is for you. BTW, I highly recommend that you download his chapter samples so as to follow along and to tinker with. I read the entire book in a weekend and returned to work on Monday loaded for bear. Now I keep it at my desk for easy reference.XML: Visual QuickStart Guide (2nd Edition) OverviewWhat is XML? XML, or eXtensible Markup Language, is a specification for storing information. It is also a specification for describing the structure of that information. And while XML is a markup language (just like HTML), XML has no tags of its own. It allows the person writing the XML to create whatever tags they need. The only condition is that these newly created tags adhere to the rules of the XML specification.In the seven years since the first edition of "XML: Visual QuickStart Guide" was published, XML has taken its place next to HTML as a foundational language on the Internet. XML has become a very popular method for storing data and the most popular method for transmitting data between all sorts of systems and applications. The reason being, where HTML was designed to display information, XML was designed to manage it.This book begins by showing you the basics of the XML language. Then, by building on that knowledge, additional and supporting languages and systems will be discussed. To get the most out of this book, you should be somewhat familiar with HTML, although you don't need to be an expert coder by any stretch. No other previous knowledge is required. "XML: Visual QuickStart Guide, 2nd Edition" is divided into seven parts. Each part contains one or more chapters with step-by-step instructions that explain how to perform XML-related tasks. Wherever possible, examples of the concepts being discussed are displayed, and the parts of the examples on which to focus are highlighted. The order of the book is intentionally designed to be an introduction to the fundamentals of XML, followed by discussions of related XML technologies. • In Part 1 of the book, you will learn how to create an XML document. It's relatively straightforward, and even more so if you know a little HTML. • Part 2 focuses on XSL, which is a set of languages designed to transform an XML document into something else: an HTML file, a PDF document, or another XML document. Remember, XML is designed to store and transport data, not display it. • Parts 3 and 4 of the book discuss DTD and XML Schema, languages designed to define the structure of an XML document. In conjunction with XML Namespaces (Part 5), you can guarantee that XML documents conform to a pre-defined structure, whether created by you or by someone else. • Part 6, Developments and Trends, details some of the up-and-coming XML-related languages, as well as a few new versions of existing languages. • Finally, Part 7 identifies some well-known uses of XML in the world today; some of which you may be surprised to learn. This beginner's guide to XML is broken down as follows: • Introduction • Chapter 1: Writing XML • Part 2: XSL • Chapter 2: XSLT • Chapter 3: XPath Patterns and Expressions • Chapter 4: XPath Functions • Chapter 5: XSL-FO • Part 3: DTD • Chapter 6: Creating a DTD • Chapter 7: Entities and Notations in DTDs • Chapter 8: Validation and Using DTDs • Part 4: XML Schema • Chapter 9: XML Schema Basics • Chapter 10: Defining Simple Types • Chapter 11: Defining Complex Types • Part 5: Namespaces • Chapter 12: XML Namespaces • Chapter 13: Using XML Namespaces • Part 6: Recent W3C Recommendations • Chapter 14: XSLT 2.0 • Chapter 15: XPath 2.0 • Chapter 16: XQuery 1.0 • Part 7: XML in Practice • Chapter 17: Ajax, RSS, SOAP and More

Want to learn more information about XML: Visual QuickStart Guide (2nd Edition)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone Review

Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone
Average Reviews:

(More customer reviews)
Are you looking to buy Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone? Here is the right place to find the great deals. we can offer discounts of up to 90% on Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone ReviewI was very excited to get this book, as I had pre-ordered it before it was even published. I received it today and was surprised by how thin it was, 172 pages not counting the appendices. Not a big deal, though I'm used to huge volumes with other programing/development related books. In fact, it's nice not having to lug around a 20-pound volume.
The author dives right in on the subject in Chapter 1 discussing two distinct methods for developing iPhone apps with HTML, CSS and JavaScript. Applications can be deployed as full-fledged iPhone apps (not requiring hosted server files) or as iPhone web-apps (requiring hosting files on a server). The author goes on to explain how this is possible using Apple's iPhone SDK and either, QuickConnectiPhone or PhoneGap, both of which are JavaScript APIs. The author, Lee S. Barney, is actually the creator of the QuickConnectiPhone (hereafter, QCIP) project.
The first project uses the QCIP method in Dashcode, part of Apple's iPhone SDK, and is essentially 5 easy steps in a 'Hello World' project. Button, text, click button, text changes. Note, this doesn't actually create a final iPhone app proper, rather it creates a demo that will run in the iPhone simulator, sans the app button. Part two describes how to import the files you have just created into Xcode, another part of the iPhone SDK, to compile a finished iPhone app.
The problem is, that right out of the gate, the demo throws a compiler error and doesn't work as intended. After several re-reads of the text to make sure I'm not brain-farting, I begin digging into the code to find that the main.js file has some functionality that has been code generated that is creating the error and that seemingly has nothing to do with the demonstration at hand. I comment that functionality out, and the demo runs without error.
Step Two involves importing the files that were created in Dashcode into Xcode. Suffice it to say this is quite a lengthy multi-step affair, that is not as simple as going to the File menu and selecting Import files. I say this for any one who has not used Xcode before. It is software that many HTML/CSS/Javascript developers will find daunting. If you've used Xcode before, no big surprises, though much time is spent undoing things and deleting things, moving files around, etc. It seems that a better written QCIP project template could have handled alot of that, but then again, I've never written an Xcode project template before and am a novice Mac programmer.
The authors explanations in Step Two already have my head spinning and I can see that I am going to need to go though this material very slowly. The authors instructions read like a run on sentence with no pauses in between "do this" and "then click on that", making it rather hard to follow along, especially given the small, IMO, font size and tight leading of the text. The structure of the steps and explanations could have been written in a format that made following them easier.
To qualify this review, I will state that I have been a web designer/developer for about 8 years, using HTML, CSS, PHP, Lasso, ColdFusion and JavaScript. I just got into iPhone development within the last couple of months and was hoping this book would provide that "Ah, Ha!" moment, allowing me to develop iPhone apps without having to learn Objective-C. Even though the book suggests this is possible, it's contents are full of Objective-C explanations, code and methodologies.
Searching the publishers website, I could not find an errata to help with the problems I was having, albeit the book was just published this week.
I do like the premise the author has created with his methods, along with the QuickConnectiPhone framework, he is obviously a very smart individual on the subject.
Perhaps, the book has been rushed to market. The again, perhaps too, is this review.
I will keep working with the material in this book and am hopeful it turns a corner somewhere. If so, I will be sure to revise this review. If not, I'll be taking at least one of my stars back.
Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone Overview

Want to learn more information about Developing Hybrid Applications for the iPhone: Using HTML, CSS, and JavaScript to Build Dynamic Apps for the iPhone?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library) Review

Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library)
Average Reviews:

(More customer reviews)
Are you looking to buy Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library) ReviewI was trying to learn Adobe AIR and was looking for some good set of learning resources. I found the book "Adobe AIR for Javascript Developers" from Oreilly by and started reading it online. A cool book, the authors have done great job on presenting the topics as an easilit readable pocket guide. Soon after reading this book, i felt i got the right resource i want for now.
* I found this book a bit more than a usual pocket guide.
* If you are a beginner and don't know anything about AIR, then this book is the best bet.
* The chapters were well organized to take you from novice stage to advanced stage in AIR.
* Covers ADOBE AIR 1.0
* Chapter I and II of this book teaches you many information and technical details about the AIR which might lots of time if you have to get it from Internet.
* The authors have given lots of code snippets while explaining a topic instead of lots of theoretical text. Some thing that programmers always look for.
* This book also gives an insight about Webkit engine, architecture of AIR and the security model of AIR
The most interesting part in this book is the "Mini cookbook".
* The mini cookbook chapter contains worked out samples with complete code explanation. It includes samples that can help you understand (from AIR perspective) Application Chrome, Windowing, File API, File Pickers, Service and Server Monitoring, Online/Offline, Drag-and-Drop, Embedded Database, Command-Line Arguments, Networking, Sound.
* This book is worth buying for its content coverage and its also very cheap.
Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library) Overview
Written by members of the Adobe Integrated Runtime (AIR) product team, this is the official guide to the beta release of Adobe's new cross-platform desktop runtime, previously known by its code name Apollo. This book explains how you can use AIR to build and deploy HTML and JavaScript-based web applications to the desktop, using all of the tools and technologies with which you are already familiar. Everything you need to know about this platform is right here, so you can start building applications with AIR right away. Topics include:

What AIR is, and the problems this runtime aims to solve
How to set up your development environment
How to create your first app using HTML and JavaScript
The HTML and JavaScript environments within AIR
How to do common tasks, presented in the easy-to-use O'Reilly Cookbook format
Also included is a guide to AIR packages, classes and command line tools. Once you understand the basics of building an HTML- and JavaScript-based AIR applications, this pocket guide makes an ideal reference for tackling specific problems. Welcome to the revolution!Adobe Developer Library is a co-publishing partnership between O'Reilly Media and Adobe Systems, Inc. and is designed to produce the number one information resources for developers who use Adobe technologies. Created in 2006, the Adobe Developer Library is the official source for comprehensive learning solutions to help developers create expressive and interactive web applications that can reach virtually anyone on any platform. With top-notch books and innovative online resources covering the latest in rich Internet application development, the Adobe Developer Library offers expert training and in-depth resources, straight from the source.

Want to learn more information about Adobe Integrated Runtime (AIR) for JavaScript Developers Pocket Guide (Adobe Developer Library)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Ajax in Practice Review

Ajax in Practice
Average Reviews:

(More customer reviews)
Are you looking to buy Ajax in Practice? Here is the right place to find the great deals. we can offer discounts of up to 90% on Ajax in Practice. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Ajax in Practice ReviewThe back cover says that "Ajax in Practice" is a "second generation" book. The book covers a mix of problem/solution descriptions for common problems, Ajax tips and advanced JavaScript techniques. The cookbook style is useful if you are trying to implement a specific Ajax effect. The book touches on a number of libraries/toolkits where appropriate. It also covers integrating with existing Ajax libraries.
The book assumes you know basic JavaScript, CSS and HTML. If you are new to Ajax, I recommend reading a "first generation" book like "Ajax in Action" first. This book is a lot easier to follow if you have some exposure to Ajax. In particular, the problem/solution style involves learning by reading a lot of code. This is overwhelming on the first shot. I had to pull out my copy of "Ajax in Action" to follow parts of it. While some of the examples are long, they don't include unnecessary code.
I liked that the book has a common flow to it. Even though there are seven authors/contributors, the style is the same and it makes sense. I learned a lot about specific uses of Ajax along with examples/techniques of good Ajax code. This should definitely be the second Ajax book you read!Ajax in Practice Overview
Ajax in Practice provides example-rich coverage of Ajax packed with ready-to-use code and practical recipes for common and not-so-common tasks. Ajax developers now face the move from Ajax-as-theory to Ajax-in-practice. Ajax in Practice guides web developers through the transition from learning about Ajax to successfully applying Ajax-driven techniques in real-world development scenarios.

Ajax gives web developers the potential to create rich user-centered internet applications. But Ajax also adds a new level of complexity and sophistication to those applications. Ajax in Practice tackles Ajax head-on, providing countless hands-on techniques and tons of reusable code to address the specific issues developers face when building Ajax-driven solutions.

After a brief overview of Ajax, this book takes the reader through dozens of working examples, all presented in an easy-to-use cookbook format. Readers will learn how to implement drag-and-drop interfaces and will discover how to create effective nagigation strategies for their applications. Unlike a traditional cookbook, though, Ajax in Practice provides a thorough discussion of each technique presented and shows how the individual components can be connected to create powerful solutions. A fun "mash-up" chapter concludes the book. Throughout Ajax in Practice, the examples chosen are interesting, entertaining, and practical.


Want to learn more information about Ajax in Practice?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

JavaScript: The Complete Reference, Second Edition Review

JavaScript: The Complete Reference, Second Edition
Average Reviews:

(More customer reviews)
Are you looking to buy JavaScript: The Complete Reference, Second Edition? Here is the right place to find the great deals. we can offer discounts of up to 90% on JavaScript: The Complete Reference, Second Edition. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

JavaScript: The Complete Reference, Second Edition ReviewI'm not sure why there are no other reviews of the 2nd edition of this book here, but let me rectify that now. This is an extraordinarily lucid presentation of JavaScript and its related technologies. It certainly deserves the praise it received from other reviewers (see reviews of prior edition). I've only read through chapter 12, but I've learned more from this book than three prior JavaScript texts combined. From coverage of core JavaScript to a rigorous examination of JavaScript objects and the various object models, the authors have delivered exactly what I was looking for. I've always been confused about the proper interpretation of the `this' keyword. The authors explain precisely how and why that keyword operates in different contexts and I feel totally comfortable with it now. I also have to complement the authors and editors on the quality of the writing and the accuracy of the text. The writing is tight, the code samples are well crafted and self-contained and I've only found four mistakes in 400 pages of text. In fact, I've never seen so few errors in a technical book of this size. I highly recommend this book to anyone, regardless of your level of expertise.JavaScript: The Complete Reference, Second Edition OverviewCreate dynamic, interactive Web pages with the latest upgrade to this flexible development tool. Coverage includes event handling, object oriented programming, IE specific content, XML, and sample code that lets you work through projects and provides groundwork for your own creations. Provides information for new and non-professional developers and also more advanced coverage for experienced JS developers who want a comprehensive reference.

Want to learn more information about JavaScript: The Complete Reference, Second Edition?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

JavaScript Programmer's Reference (Wrox Programmer to Programmer) Review

JavaScript Programmer's Reference (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy JavaScript Programmer's Reference (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on JavaScript Programmer's Reference (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

JavaScript Programmer's Reference (Wrox Programmer to Programmer) ReviewAs a reference, this book works really well. One can pick up the book and quickly find anything from information about basic syntax, the DOM, to advanced features like Ajax and JSON. The examples stand alone from previous chapters, so there is no need to read the book linearly from cover to cover.
But if one *were* to read the book from cover to cover, it makes a great introduction to JavaScript for designers or others who are already familiar with HTML and CSS. White's writing style is pitch-perfect for such a use--the information is easy to follow while not being "dumbed-down."
The bottom line: great reference, but don't be afraid to use this to learn JavaScript as it is used today.JavaScript Programmer's Reference (Wrox Programmer to Programmer) OverviewLearn everything about utilizing the JavaScript language with the next generation of Rich Internet Applications from the accessible information in JavaScript Programmer's Reference, both a tutorial and a reference guide for web developers. Master methods for using Java with applications like Microsoft's Silverlight, Ajax, Flex, Flash and AIR by practicing with hands-on examples with practical, usable code. Employ this complete JavaScript reference to help you understand JavaScript Data Types, Variables, Operators, Expressions and Statements, work with JavaScript Frameworks and data, and improve performance with Ajax.

Want to learn more information about JavaScript Programmer's Reference (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

JavaScript 24-Hour Trainer (Wrox Programmer to Programmer) Review

JavaScript 24-Hour Trainer (Wrox Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy JavaScript 24-Hour Trainer (Wrox Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on JavaScript 24-Hour Trainer (Wrox Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

JavaScript 24-Hour Trainer (Wrox Programmer to Programmer) ReviewI am a mid level web developer and i have been looking for a really good JavaScript book.There are a lot of JavaScript books out there in the market,but i think those are too big for a junior to mid level developer.This book is really concise and gets to the point.What i liked the most about this book is the DVD that comes with this book.I am already into the 4th chapter in 2 hrs and hopefully i will finish this book soon and have a better understanding of JavaScript.
Thank you Jeremy for your real hard work.I definitely recommend this book if you are an absolute beginner or have some knowledge working with it
RJ
Jacksonville, FLJavaScript 24-Hour Trainer (Wrox Programmer to Programmer) Overview

Want to learn more information about JavaScript 24-Hour Trainer (Wrox Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Ajax: The Definitive Guide Review

Ajax: The Definitive Guide
Average Reviews:

(More customer reviews)
Are you looking to buy Ajax: The Definitive Guide? Here is the right place to find the great deals. we can offer discounts of up to 90% on Ajax: The Definitive Guide. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Ajax: The Definitive Guide Review§
There is a LOT of code in this 950 page book. I guess there is something here for everyone because there is code not directly related to Ajax but is directed to HTML structure or CSS presentational aspects or to frameworks that may include Ajax conveniences.
In fact, the amount of code may interfere with the author's object of appealing to two very different types of people with this book: Web developers and project managers looking for a high-level view. Except for some intro chapters and the odd breather between 10-15 page code listings, I don't think any project managers *I* have worked with would extract much from the book.
The book has 4 sections:
Part 1 - Ajax Fundamentals: the basic technologies that could form the core of a typical Ajax application.
Part 2 - Ajax Foundations: approaches to standards-compliant structure, separation of the presentational layer and client-side behaviors. Code code code!
Part 3 - Ajax in Applications: describes the specific implementations of these technologies into Web applications. More code!
Part 4 - Wrapping Up: tips on optimization.
In addition, there are some reference appendices on XML and XSLT; on JavaScript frameworks; on Ajax implementation risks; and most interestingly, a catalog of freely available Web service APIs.
One thing I did not like about the code listings was the use of Prototype style $() function syntax. This means when I see something like:
var titleText = $('title').firstChild;
I had to check whether .firstChild was a reference to a Prototype object or a reference to the standard DOM object. If the standard object, it would have been a whole lot clear just to have written document.getElementById().
The book index is actually pretty good. With 950 pages stuffed with content, you will probably be thankful for that!
§Ajax: The Definitive Guide Overview
Is Ajax a new technology, or the same old stuff web developers have been using for years? Both, actually. This book demonstrates not only how tried-and-true web standards make Ajax possible, but how these older technologies allow you to give sites a decidedly modern Web 2.0 feel.Ajax: The Definitive Guide explains how to use standards like JavaScript, XML, CSS, and XHTML, along with the XMLHttpRequest object, to build browser-based web applications that function like desktop programs. You get a complete background on what goes into today's web sites and applications, and learn to leverage these tools along with Ajax for advanced browser searching, web services, mashups, and more. You discover how to turn a web browser and web site into a true application, and why developing with Ajax is faster, easier and cheaper. The book also explains:

How to connect server-side backend components to user interfaces in the browser
Loading and manipulating XML documents, and how to replace XML with JSON
Manipulating the Document Object Model (DOM)
Designing Ajax interfaces for usability, functionality, visualization, and accessibility
Site navigation layout, including issues with Ajax and the browser's back button
Adding life to tables & lists, navigation boxes and windows
Animation creation, interactive forms, and data validation
Search, web services and mash-ups
Applying Ajax to business communications, and creating Internet games without plug-ins
The advantages of modular coding, ways to optimize Ajax applications, and more
This book also provides references to XML and XSLT, popular JavaScript Frameworks, Libraries, and Toolkits, and various Web Service APIs. By offering web developers a much broader set of tools and options, Ajax gives developers a new way to create content on the Web, while throwing off the constraints of the past. Ajax: The Definitive Guide describes the contents of this unique toolbox in exhaustive detail, and explains how to get the most out of it.

Want to learn more information about Ajax: The Definitive Guide?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

HTML5: The Missing Manual Review

HTML5: The Missing Manual
Average Reviews:

(More customer reviews)
Are you looking to buy HTML5: The Missing Manual? Here is the right place to find the great deals. we can offer discounts of up to 90% on HTML5: The Missing Manual. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

HTML5: The Missing Manual ReviewI have mixed feelings when it comes to this book. At some point it is entertaining and can teach you the basics of HTML very well, however, it is too basic for a professionals or semiprofessionals. Topics covered within the book are well explained, it covers basics of the HTML 5. You will find here information regarding new tags, new ways of input validation, progress bars, sliders, video embedding, audio embedding, managing the canvas, working in offline environment, etc. If you are not sure whether this book is for, ask yourself question, where you put yourself. Do you start your adventure with HTML? Or maybe you are HTML veteran? If you are about to begin your experience with HTML 5, this book sounds like a good read. At the very beginning, Matthew lays down the basics of the HTML 5. You literally build a simple HTML page by extending it step by step. Second chapter gives you the overview of how to create a structure of the page, how to use new tags and what to avoid (especially the old markups). I really enjoyed part four, where details related to forms are laid down - how to create them, how to validate values, how to provide users with input suggestions - entirely at the browser's side. Video and audio related section will shade some light in terms of the variety of video/audio codecs - there are few of them, and they can make you confused, believe me. Another great benefit is that you get CSS explained by examples rather than by definition. However, you may fell slightly disappointed if you are looking for a CSS reference.
I like the style of the book. It is really simple written, at least that's what I think. You shouldn't have any issues with following what Matt tries to explain. Keep in mind, however, that this book is rather brief overview of HTML 5 rather than comprehensive HTML 5 reference. Great plus for Matt for putting lots of references to external resources and for really impressive examples. You will be guided how to find them at the very begging of the book.HTML5: The Missing Manual Overview
HTML5 is more than a markup language—it's a dozen independent web standards all rolled into one. Until now, all it's been missing is a manual. With this thorough, jargon-free guide, you'll learn how to build web apps that include video tools, dynamic drawings, geolocation, offline web apps, drag-and-drop, and many other features. HTML5 is the future of the Web, and with this book you'll reach it quickly.

The important stuff you need to know:

Structure web pages in a new way. Learn how HTML5 helps make web design tools and search engines work smarter.
Add audio and video without plugins. Build playback pages that work in every browser.
Draw with Canvas. Create shapes, pictures, text, and animation—and make them interactive.
Go a long way with style. Use CSS3 and HTML5 to jazz up your pages and adapt them for mobile devices.
Build web apps with rich desktop features. Let users work with your app offline, and process user-selected files in the browser.
Create location-aware apps. Write geolocation applications directly in the browser.


Want to learn more information about HTML5: The Missing Manual?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Building on SugarCRM Review

Building on SugarCRM
Average Reviews:

(More customer reviews)
Are you looking to buy Building on SugarCRM? Here is the right place to find the great deals. we can offer discounts of up to 90% on Building on SugarCRM. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Building on SugarCRM ReviewThis "book" looks like it was thrown together by copying some text from various SugarCRM marketing materials and some random code that the author had on his hard drive.
In 80 pages he starts from "What is SugarCRM", to a pseudo-manual type of coverage of a couple key GUI pieces and then spends the second half on PHP code examples - which makes any of the 3 pieces completely useless. Not a single one of the questions I had (and for which I bought the book) were addressed, because other than platitudes like "type the label" in the field where it says "label", there was absolutely nothing until you jump into code.
And if you are a developer, then the code example is too long for the few things it addresses, and it's basically all just standard PHP which you really don't need a book on SugarCRM for.
Finally, and most irritating, is that the book starts with a breakdown of the editions (and what features are available in which). Now, the main differences between Community and Commercial editions, according to this section is "Support for Teams", a "Reporting Tool", "Mobile Version" and "Office Plugin".
So off I go into the next few chapters to understand how logic, dependencies and workflows work, which is really what I cared about and couldn't figure out how to get to it in my implementation. After spending a few hours reading, trying to figure out what's wrong with my installation, etc.. I finally saw the ONE TIME mention, in the middle of an unrelated sentence, that these things are only available in the Commercial Editions. Needless to say I run Community and none of it works!
How about mentioning this in the section where he describes the differences between the editions, especially given that the rest of the book is dedicated to it? How about making sure that it's clear that these chapters only apply to commercial, before readers waste their time? Even better, how about making that clear before people buy this piece of junk?
I want my money back for this useless book and for the time and irritation wasted on it.
I have bought many books published by ORA - shame on them for publishing this.
Building on SugarCRM Overview
In the crowded field of customer relationship management (CRM) systems, SugarCRM stands out—not only for its modular design, but also for the ease with which you can develop, customize, and extend your CRM applications. This concise book provides a thorough overview of the development tools and APIs available in SugarCRM 6.2, showing both developers and nondevelopers alike how to use them to build a sample application step-by-step.

You'll learn how to bend and twist SugarCRM's extensible MVC framework to create custom applications, including solutions for automating your business that go beyond traditional CRMs.

Learn how SugarCRM modules interact with one another through data relationships
Build your CRM application with SugarCRM's GUI developer tools—without touching code
Use built-in design templates with Module Builder to design new CRM modules
Customize modules with the Studio tool to add new fields or additional relationships between modules
Automate common and tedious tasks within your application, using custom PHP code with SugarCRM's powerful API
Integrate external applications into your CRM solution through SugarCRM's web services API


Want to learn more information about Building on SugarCRM?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Beginning ASP.NET 2.0 AJAX (Programmer to Programmer) Review

Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)
Average Reviews:

(More customer reviews)
Are you looking to buy Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)? Here is the right place to find the great deals. we can offer discounts of up to 90% on Beginning ASP.NET 2.0 AJAX (Programmer to Programmer). Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Beginning ASP.NET 2.0 AJAX (Programmer to Programmer) ReviewI bought this book based on a long, positive history with WROX products. I've got a whole shelf full of these volumes on various topics and they've historically been the best in the business.
Not so with this volume. These guys are obviously uberdorks who got an A in Computer Science and a C- in Language Arts. The writing is scattered, clunky, and generally subpar, making it very difficult to decipher portions of the book - let alone learn any programming disciplines from it. (In that regard, the editor(s) and proofreader of the volume also deserved to be flogged with a wet noodle.)
I expect a far more professional approach and delivery than this book provides. I'll struggle through it and learn the material, but it shouldn't be this difficult... The time of technical training manuals being written by eggheads with no affinity for interpersonal communication passed twenty years ago. Shame on WROX for releasing this volume in such disarray.Beginning ASP.NET 2.0 AJAX (Programmer to Programmer) Overview
Written by a high-power team of Microsoft MVPs, this book provides a comprehensive introduction to the ASP.NET AJAX features
After a quick overview of the architecture and features of ASP.NET 2.0 AJAX, coverage then goes on to show developers how to build richer, more responsive dynamic Web sites and Web applications
Dives into such topics as ASP.NET 2.0 AJAX user interface design issues, JavaScript enhancements with AJAX, how to use the UpdatePanel for implementing server-side controls, and XML scripting in AJAX
Also offers an outline of the ASP.NET 2.0 AJAXControl Toolkit, and discusses implementing drag and drop functions, databinding, debugging and security, ASP.NET services, and bridging and gadgets
The companion Web site provides readers with a rich set of code examples


Want to learn more information about Beginning ASP.NET 2.0 AJAX (Programmer to Programmer)?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Pro JavaScript Techniques Review

Pro JavaScript Techniques
Average Reviews:

(More customer reviews)
Are you looking to buy Pro JavaScript Techniques? Here is the right place to find the great deals. we can offer discounts of up to 90% on Pro JavaScript Techniques. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Pro JavaScript Techniques Review§
"Pro JavaScript Techniques" is definitely for experienced and advanced scripters. The level of abstraction is high in this treatment of the latest trends of JavaScript. If you are looking for ready-made scripts to solve some specific problem in your site or application, you are looking for a different sort of book.
If you have ever gone to Douglas Crockford's site to learn about advanced concepts in JavaScript, and withdrew dazed and abused by his obtuse examples -- but with a conviction that there was something valuable to learn there -- this book is for you.
The author states, and I agree, that understanding Chapter 2, "Object Oriented JavaScript" is the key to the puzzle. "The phrase object-oriented JavaScript is somewhat redundant, as the JavaScript language is completely object-oriented and is impossible to use otherwise. However, a common shortcoming of most new programmers is to write their code functionally without any context or grouping."
The chapter contains a clear exposition of what the author means by "context or grouping." In fact, his concise but relevant example code to explain the distinction between privileged methods and static methods lit up all sorts of light bulbs in my head...Finally! :-)
Be aware that the author's approach has a particular bias in that it is often directed at the *programmer* coming into Web scripting. The idea is to make the JavaScripting world appear more like the programming languages already known. You learn "how to go about writing a variety of object-oriented code to suit anyone coming from another programming language."
This is a great book -- but not for all.
§Pro JavaScript Techniques OverviewJavaScript usage on the Web has changed in recent times, due to increased JavaScript support in web browsers, and new techniques coming to light. JavaScript is also now being looked on as a proper programming language, whereas in it's inception it was regarded as little more than a scripting toy.This book addresses all the points above in detail - modern browser support (including information on Internet Explorer 7), Object-Oriented JavaScript, testing and debugging, Unobtrusive JavaScript techniques using DOM Scripting, Ajax, creating and using blocks of reusable code, and looking towards the future of JavaScript.It backs up all the concepts with real world examples and full-blown case studies, and also includes several reference sections to allow developers to look up details quickly and easily.

Want to learn more information about Pro JavaScript Techniques?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...

Closure: The Definitive Guide Review

Closure: The Definitive Guide
Average Reviews:

(More customer reviews)
Are you looking to buy Closure: The Definitive Guide? Here is the right place to find the great deals. we can offer discounts of up to 90% on Closure: The Definitive Guide. Check out the link below:

>> Click Here to See Compare Prices and Get the Best Offers

Closure: The Definitive Guide ReviewI read Closure: The Definitive Guide as part of O'Reilly's rough cuts program, and I can honestly say that the book is one of the best technical books I've read in quite some time. It's clear that the author sought to leave no stone unturned in writing this book; he succeeded brilliantly. His writing style is concise but not at all confusing, leading to a great book that lends itself just as well to sit-down reading as it does a reference guide.
This book is definitely targeted towards developers, not managers. You should have at least some experience with JavaScript and the DOM before reading this. The author thankfully doesn't rehash the basics of such material before digging into Closure, but he also doesn't make the assumption that you need to have written a book on JavaScript in order to understand how to use everything. After you read the introduction chapter, you can safely skip some parts and come back to them later as you begin to understand Closure's design patterns. I thoroughly read most chapters and just skimmed others, which was great because it let me get familiar with the material without getting bogged down in all the details present in such an immense SDK.
Closure is most likely overkill if you're just building one-off websites, but if you want to build something more, do yourself a favor and buy this book and read it. Don't sell yourself short. Otherwise you'll be doomed to blindly throwing jQuery, MooTools, Prototype, or the like onto your canvas and hoping it'll work just as well for your large app -- it won't. Soon after you begin developing with Closure and reading this book, you'll experience the joy and relief that only a proper JavaScript TOOLKIT can provide.
Overall, this is a really great book that I wouldn't hesitate to recommend to any front-end developer who is tasked with building a web application that they want to be fast, browser-agnostic, and bug free.Closure: The Definitive Guide Overview

Want to learn more information about Closure: The Definitive Guide?

>> Click Here to See All Customer Reviews & Ratings Now
Read More...