Archive for the ‘Java’ Category:
MooTools Essentials
Over the past several years, JavaScript has undergone some serious changes while simultaneously becoming more and more important to both developers and users of the Web. By now, people just expect pages to be
interactive, and it’s up to you, the web developer, to meet those expectations and, when possible, exceed them. Say you went to a web site today and encountered an item—a video, a story, a photo, a download—and next to that item’s title was a five-star rating system with an invitation for you to click a star to rate it. Without thinking about it, you’d expect to be able to click the star of your choice and see the rating change. It might not surprise you if the page reloaded to ask you to register or log in, but the next time you rated something, you’d expect the rating to change to match your choice. But if every time you clicked a star the whole page reloaded, you’d feel something was wrong. Maybe you wouldn’t be able to put your finger on it (most users certainly wouldn’t think JavaScript or Ajax might be behind the problem), but
something would feel odd. More »
Java Script : The Good Parts
Most programming languages contain good and bad parts, but JavaScript has more than its share of the bad, having been developed and released in a hurry before it could be refined. This authoritative book scrapes away these bad features to reveal a subset of JavaScript that’s more reliable, readable, and maintainable than the language as a whole-a subset you can use to create truly extensible and efficient code. Considered the JavaScript expert by many people in the development community, author Douglas Crockford identifies the abundance of good ideas that make JavaScript an outstanding object-oriented programming language-ideas such as functions, loose typing, dynamic objects, and an expressive object literal notation. Unfortunately, these good ideas are mixed in with bad and downright awful ideas, like a programming model based on global variables. When Java applets failed, JavaScript became the language of the Web by default, making its popularity almost completely independent of its qualities as a programming language. More »
Effective Java 2nd Edition
FANTASTIC ebooks !
The Java programming language, for example, is object-oriented with singleinheritance and supports an imperative (statement-oriented) coding style withineach method. The libraries address graphic display support, networking, distrib-uted computing, and security. But how is the language best put to use in practice? There is another point. Programs, unlike spoken sentences and unlike most books and magazines, are likely to be changed over time. It’s typically not enough to produce code that operates effectively and is readily understood by other persons; one must also organize the code so that it is easy to modify. There may be ten ways to write code for some task T. Of those ten ways, seven will be awkward, inefficient, or puzzling. Of the other three, which is most likely to be similar to the code needed for the task T’ in next year’s software release? More »



