Hardcore Java 2004

martes, 22 de abril de 2008

Preface

Studying a computer language is a career-long process. Many developers make the mistake of thinking that they have learned enough. They get caught in the corporate cycle of build-and-deploy and don’t seek to expand their knowledge. However, we can hardly blame them for that.

For one, the build-and-deploy cycle is intensive and carries with it a substantial amount of political pressure: managers don’t want you to spend days reading a book or trying out code snippets when bugs and deadlines are looming. However, developers should take the time to experiment and learn more.

When you expand your skills as a developer, there is some initial time investment. However, this will rapidly pay off in increased productivity and quality. Instead of spending hundreds of hours debugging, you can implement coding standards that block bugs and spend a fraction of that time implementing new features. In the end, everyone wins; your company gets higher-quality code and quicker feature turnaround, and you get to spend more time playing Frisbee with your dog.

The second problem that the corporate developer has to deal with is that the majority of computer books are often not appropriate for the intermediate to advanced developer. When looking at my rather impressive computer book library, much of it from O’Reilly, I notice that my books tend to fall into two categories: many are introductions to concepts and most of the others are references to concepts. Although these books are very useful, there is a distinct lack of books that target the intermediate to advanced programmer. However, there is one shining exception in my library.

In a dusty corner of my desk is a book I bought several years ago. Secrets of the C++ Masters by Jeff Alger (Academic Press Limited) is absolutely essential for an intermediate C++ developer. It begins with the assumption that you know the language and then expands from there. The result is a book that can really transform a developer from the intermediate level to a true guru.

That is the goal of this book with regards to the Java™ language. Most of the material is meant to help you avoid many common mistakes made by Java developers. We will also cover nuances of Java, idiosyncrasies of the JDK, and advanced techniques. With luck, this book will increase your productivity and your enjoyment of Java development.

Descarga:

http://rapidshare.com/files/97595170/Hardcore_Java_2004.chm

hacking java - the java professional’s resource kit 1998

Users with intermediate Java skills who are looking for greater in-depth coverage of more higher-end topics will appreciate this helpful guide that takes them to the next level. This book focuses on answering specific questions with combinations of technologies for more advanced applications, and real world advice. - Find out how to speed up Java applets, use animation with Java, extend base classes, and more

- Complete coverage of Java, JavaScript, JDBC, and Java Development Environments all within the context of the solutions and applications

- CD-ROM includes all of the code and tools used in the book as well as additional tools and useful examples

Descarga:

http://rapidshare.com/files/97594119/hacking_java_1999.zip

http://rapidshare.com/files/97594937/hacking_java_-_the_java_professional_s_resource_kit_1998.zip

Getting started with java 1997

Introduction
Java is an object-oriented programming language. Switching to
object-oriented programming (OOP) from other programming paradigms
can be difficult. Java focuses on creating objects (data structures or
behaviors) that can be assessed and manipulated by the program.
Like other programming languages, Java provides support for reading
and writing data to and from different input and output devices. Java uses
processes that increase the efficiency of input/output, facilitate
internationalization, and provide better support for non-UNIX platforms.
Java looks over your program as it runs and automatically deallocates
memory that is no longer required. This means you don’t have to keep
track of memory pointers or manually deallocate memory. This feature
means a program is less likely to crash and that memory can’t be
intentionally misused.
This book is intended to serve programmers who use other languages as a
general introduction to the Java programming language. It introduces the
reader to the major elements of Java programming and provides links and
suggested reading for further exploration. You may order most book titles
from Fatbrain (http://fatbrain.com/). Unlinked titles may be out of print,
but are still useful and generally available. For more extensive lists of
resources, see “Learning more about Java” in the Quick Start.

Descarga:

http://rapidshare.com/files/97593201/getting_started_with_java_1997.pdf

Fundamentals of OOP and Data Structures in Java 2001

Fundamentals of OOP and Data Structures in Java presents the fundamentals of Object-Oriented Programming (OOP) and Graphical User Interface (GUI) programming with Java as the example language. Wiener and Pinson introduce each of the major data structures with supporting, GUI-based laboratory programs designed to reinforce the basic concepts and principles. These laboratories allow the reader to explore and experiment with the properties of each data structure. All source code for the laboratories is available on the Web. By integrating the principles of OOP and GUI programming, this unique book presents the fundamental issues of data structures within the context of paradigms that are essential to today’s professional software developer. The text assumes only an elementary understanding of Java and no experience with OOP.

Descarga:

http://rapidshare.com/files/97592845/Fundamentals_of_OOP_and_Data_Structures_in_Java_2001.pdf

Essentials of the Java Programming part I - part II 2000

If you are interested in learning the Java(tm) programming language but hesitate to dive into overly dense, theoretical resources, Essentials of the Java(tm) Programming Language is the perfect starting point. This accessible, hands-on tutorial employs a “learn-by-doing” approach to introduce you to the basics. It starts with a simple program, then develops it bit by bit, adding new features and explaining important concepts with each subsequent lesson. This simple program grows into a general electronic commerce application that illustrates many of the Java 2 platform’s most important elements. You will learn such Java programming language essentials as: The difference between applications, applets, and servlets/JavaServer Pages(tm) Building a user interface that accepts user input Reading and writing data to files and databases Network communications, including RMI and sockets Collections Serialization Packages and JAR file format Internationalization Security fundamentals, including cryptographic software Essentials of the Java(tm) Programming Language ends with an explanation of object-oriented programming concepts, made far more understandable and relevant as a result of the hands-on experience acquired throughout the book. After working through this book, you will have the foundation necessary to comfortably progress to more advanced learning materials for the Java programming language and utilize the subtleties and more sophisticated capabilities of the language.

Descarga:

parte 1

http://rapidshare.com/files/97589933/Essentials_of_the_Java_Programming_part_I_2000.pdf

parte 2

http://rapidshare.com/files/97590144/Essentials_of_the_Java_Programming_part_II_2000.pdf

enterprise javabeans developer’s guide 1997

Introduction
The Enterprise JavaBeans Developer’s Guide explains how to create
enterprise beans with JBuilder and use them in building distributed
systems. JBuilder has a set of designers, wizards, and tools that greatly
simplifies the creation, testing, and deploying of enterprise beans. You can
create enterprise beans for deployment to the Borland Enterprise Server
5.0, the Borland AppServer 4.5, the BEA WebLogic Servers 6.x and 5.1, the
IBM WebSphere Application Servers 3.5 and 4.0, and the Sun-Netscape
iPlanet Application Server 6.0.

Descarga:

http://rapidshare.com/files/97373622/enterprise_javabeans_developer_s_guide_1997.pdf

Enterprise JavaBeans 3.0 5th Ed 2006

Enterprise JavaBeans™ is the core component technology of the Java Enterprise Edition platform. It is an enterprise infrastructure designed to provide developers with the automatic management of many of the services essential to enterprise applications. The EJB containerthe immediate environment of enterprise bean components and the provider of managed services to themis at the center of this architecture.

However, to use this managed environment in earlier versions of EJB, developers had to write to APIs that focused more on the EJB container’s requirements than on the business logic of enterprise applications. Consequently, EJB development was unnecessarily complex. For example:

  • Implementation of various EJB interfaces led to a lot of boilerplate code for methods that were required by the interface, but not needed by the application.

  • An XML deployment descriptor was required to integrate the application with its environment and with container services. Access to the components’ environment was clumsy and nonintuitive.

  • The design of container-managed persistence made domain object modeling unnecessarily complex and heavyweight. While container-managed persistence was originally conceived as an ease-of-use facility, in practice, it was awkward and limiting.

Descarga:

3ra edicion:

http://rapidshare.com/files/97368688/Enterprise_JavaBeans_3.0_5th_Ed_2006.chm

Workbook de la 3ra edicion:

http://rapidshare.com/files/97373123/Enterprise_JavaBeans_-_JBoss_3.2_Workbook_3rd_Ed_2003.pdf

4ta edicion:

http://rapidshare.com/files/97372947/Enterprise_JavaBeans_4th_Ed_2004.chm

EJB Cookbook 2003

Book Description

Just as cookbooks contain step-by-step directions for creating different dishes, this book contains recipes for solving problems concerning Enterprise JavaBeans. Topics addressed range from simple, everyday issues to complex design issues using EJB patterns. Intended for developers with some EJB development experience, an understanding of the concepts of enterprise development and the basics of EJB programming is assumed. This book clearly addresses problems and issues and avoids the use of EJB keywords, making it ideal for developers who want quick solutions to frequent problems—or simply EJB development ideas. Easy-to-find recipes range from the common to the advanced and include techniques for securing a message-driven bean, generating EJB code, and improving an entity bean persistence layer.

Descarga:

http://rapidshare.com/files/97368087/EJB_Cookbook_2003.pdf

Effective Java - Programming Language Guide - 1st Ed 2001

Topics covered:

  • Best practices and tips for Java
  • Creating and destroying objects (static factory methods, singletons, avoiding duplicate objects and finalizers)
  • Required methods for custom classes (overriding equals(), hashCode(), toString(), clone(), and compareTo() properly)
  • Hints for class and interface design (minimizing class and member accessibility, immutability, composition versus inheritance, interfaces versus abstract classes, preventing subclassing, static versus nonstatic classes)
  • C constructs in Java (structures, unions, enumerated types, and function pointers in Java)
  • Tips for designing methods (parameter validation, defensive copies, method signatures, method overloading, zero-length arrays, hints for Javadoc comments)
  • General programming advice (local variable scope, using Java API libraries, avoiding float and double for exact comparisons, when to avoid strings, string concatenation, interfaces and reflection, avoid native methods, optimizing hints, naming conventions)
  • Programming with exceptions (checked versus run-time exceptions, standard exceptions, documenting exceptions, failure-capture information, failure atomicity)
  • Threading and multitasking (synchronization and scheduling hints, thread safety, avoiding thread groups)
  • Serialization (when to implement Serializable, the readObject(), and readResolve() methods)

Descarga:

http://rapidshare.com/files/97367162/Effective_Java_-_Programming_Language_Guide_-_1st_Ed_2001.pdf

Effective Enterprise Java 2004

“With this book, Ted Neward helps you make the leap from being a good Java enterprise developer to a great developer!”
—John Crupi, Sun Distinguished Engineer coauthor, Core J2EE Patterns

If you want to build better Java enterprise applications and work more efficiently, look no further. Inside, you will find an accessible guide to the nuances of Java 2 Platform, Enterprise Edition (J2EE) development. Learn how to:

  • Use in-process or local storage to avoid the network

  • Set lower isolation levels for better transactional throughput

  • Use Web services for open integration

  • Consider your lookup carefully

  • Pre-generate content to minimize processing

  • Utilize role-based authorization

  • Be robust in the face of failure

  • Employ independent JREs for side-by-side versioning

Ted Neward provides you with 75 easily digestible tips that will help you master J2EE development on a systemic and architectural level. His panoramic look at the good, the bad, and the ugly aspects of J2EE development will address your most pressing concerns. Learn how to design your enterprise systems so they adapt to future demands. Improve the efficiency of your code without compromising its correctness. Discover how to implement sophisticated functionality that is not directly supported by the language or platform. After reading Effective Enterprise Java , you will know how to design and implement better, more scalable enterprise-scope Java software systems.

Descarga:

http://rapidshare.com/files/97366551/Effective_Enterprise_Java_2004.chm

Eclipse Rich Client Platform Designing, Coding, and Packaging Java™ Applications 2005

Build Powerful, Cross-Platform Rich Client Applications

Eclipse is more than a state-of-the-art IDE: its Rich Client Platform (RCP) plug-ins form an outstanding foundation for any desktop application, from chat applications to enterprise software front-ends. In Eclipse Rich Client Platform, two leaders of the Eclipse RCP project show exactly how to leverage Eclipse for rapid, efficient, cross-platform desktop development.

In addition to explaining the power of Eclipse as a desktop application development platform, the authors walk step-by-step through developing a fully featured, branded RCP application. They introduce a wide range of techniques, including developing pluggable and dynamically extensible systems, using third-party code libraries, and packaging applications for diverse environments. You’ll build, refine, and refactor a complete prototype; customize the user interface; add Help and Update features; and build, brand, and ship the finished software.

  • For every Java developer, regardless of previous Eclipse experience

  • Thoroughly covers Eclipse 3.1’s new RCP features and its extensive new tools for designing, coding, and packaging RCP applications

  • Presents techniques for branding and customizing the look and feel of RCP applications

  • Shows how to overcome the challenges and “rough edges” of RCP development

  • Discusses the similarities and differences between RCP and conventional plug-in development

  • Includes an overview of OSGi, the base execution framework for Eclipse

If you want to develop and deploy world-class Java applications with rich, native GUIs, and use Eclipse RCPget this book.

Descarga:

http://rapidshare.com/files/97366369/Eclipse_Rich_Client_Platform_Designing__Coding__and_Packaging_Java__Applications_2005.chm

Eclipse A Java Developers Guide 2004

The Eclipse project is moving towards a June release of Eclipse 3.0. The week of February 2-5, 2004, has been a big one for them: more than five hundred developers attended EclipseCon in Anaheim, California, and on the first day of the conference, the new Eclipse Foundation was announced. The press release describes this foundation as “an independent body that will drive the platform’s evolution to benefit the providers of software development offerings and end users.”

Descarga:

http://rapidshare.com/files/97365256/Eclipse_A_Java_Developers_Guide_2004.chm

Libro + Solucionario - Algebra de Baldor

Para mi y para miles de estudiantes, el mejor libro de algebra que ha existido y con solucionario de todos los ejercicios resueltos paso a paso.

Descarga Libro: Algebra_de_Baldor.rar

Descarga del Solucionario: Solucionario_de_Baldor.pdf

Libro + Solucionario - Matematicas Discreta y Combinatoria, Ralph P. Grimaldi 5ta ed.

Click en la imagen para verla más grande.

Para mi el mejor libro de matematicas discretas que he visto y uno que estuve buscando durante varios meses hasta ahora que lo pongo a disposición de todos, está en formato .djvu, para visualizarlo necesitan el Visor DJVU que lo pueden descargar de este post.

Contenido del libro:

Descarga del libro: Discrete_and_Combinatorial_Mathematics_5th_ed_-_R._Grimaldi.djvu

Descarga del respectivo solucionario:
El solucionario esta por partes, pero no dividido con el winrar sino que las partes en que se divide el contenido del libro, pueden verlo en el indice haciendo click en las pequeñas imagenes de arriba.

parte 1 Sol_Discrete_and_Combinatorial_Mathematics_5ed_R._Grimaldi_Part_1.rar

parte 2 Sol_Discrete_and_Combinatorial_Mathematics_5ed_R._Grimaldi_Part_2.rar

partes 3 y 4 Sol_Discrete_and_Combinatorial_Mathematics_5ed_R._Grimaldi_Part_3_and_4.rar

Libro - Fisica Universitaria 11 edicion, Sears - Zemansky

El libro está en formato scan pero la calidad es exelente y lo mejor es que está en español.

Este libro lo pongo por capitulos porque si lo subo de un solo queda un archivo demasiado grande, además recuerden que este blog está para compartir y dar a conocer material para que puedan estudiar y no es un sitio de pirateria, por lo tanto si les gusta el material y si tienen el dinero para comprarlo, háganlo y contribuyan con esta industria.

Este libro lo digitalizé porque lo necesitaba y ahora se los comparto, más adelante subo el volumen 2, yo se que es un poco cansado escanear los libros pero si alguien tiene un libro y puede digitalizarlo pues le digo que lo haga y lo comparta, aunque sea un capitulo cada mes es información valiosisima para todos nosotros.

Los rar no tienen pass y si quieren pasarselos a sus amigos, háganlo sin remordimientos.

Click en las imagenes para ver el indice del libro.

El solucionario de este libro lo encuentran en este post.

Descarga:

Volumen 1

Capitulo_1_Sears.rar

Capitulo_2_Sears.rar

Capitulo_3_Sears.rar

Capitulo_4_Sears.rar

Capitulo_5_Sears.rar

Capitulo_6_Sears.rar

Capitulo_7_Sears.rar

Capitulo_8_Sears.rar

Capitulo_9_Sears.rar

Capitulo_10_Sears.rar

Capitulo_11_Sears.rar

Capitulo_12_Sears.rar

Capitulo_13_Sears.rar

Capitulo_14_Sears.rar

Capitulo_15_Sears.rar

Capitulo_16_Sears.rar

Capitulo_17_Sears.rar

Capitulo_18_Sears.rar

Capitulo_19_Sears.rar

Capitulo_20_Sears.rar

Volumen 2

Capitulo_21_Sears.rar

Capitulo_22_Sears.rar

Capitulo_23_Sears.rar

Capitulo_24_Sears.rar

Capitulo_25_Sears.rar

Capitulo_26_Sears.rar

Capitulo_27_Sears.rar

Capitulo_28_Sears.rar

Capitulo_29_Sears.rar

Dentro de poco subo los capitulos que hacen falta…

Todos los libros en un solo post!!!!!!!!

Ahora tengo muchisimo que estudiar y realmente estoy comprometido con eso y es por ese motivo que ya no voy a publicar los libros y solucionarios individualmente sino que lo voy a hacer de un solo golpe donde todo estará en un solo post.

Lo que si es seguro es que me falta mucho material para subir y publicar así que voy a seguir publicando libros y solucionarios conforme los vaya subiendo.

Son muy pocos libros los que tienen pass, y para los que lo necesiten es:

Pass: solucionesbook.wordpress.com

Libros

Fisica para cientificos e ingenieros 6ta ed, Serway
http://rapidshare.com/files/69346892…samuraywil.rar

Calculo Tracendentes Tempranas 5ta Edicion, Stewart
http://rapidshare.com/files/72467900…_Stewart .rar

Calculo Conceptos y Contextos, 5ta ed, Stewart
http://rapidshare.com/files/72520396…d_Contexts.rar

Calculo 5ta Edicion, James Stewart
http://rapidshare.com/files/72523763…es_Stewart.rar

Calculo 4ta edicion, James Stewart
Parte 1 http://rapidshare.com/files/73206011…a_Ed.part1.rar
Parte 2 http://rapidshare.com/files/73213679…a_Ed.part2.rar
Parte 3 http://rapidshare.com/files/73214372…a_Ed.part3.rar

La Biblia de Java
http://rapidshare.com/files/73220977…Del.Java.2.rar

Schaums Mathematical Handbook of Formulas and Tables
http://rapidshare.com/files/73434001…d_Tabl es.rar

854 Problemas y soluciones seleccionados de Fisica Elemental Jotsev Krvehemokov
http://rapidshare.com/files/73435920…r_vehemkov.rar

Problemas y soluciones a Mecanismos de Reaccion en Quimica Organica, Groutas
Parte 1 http://rapidshare.com/files/73442272…utas.part1.rar
Parte 2 http://rapidshare.com/files/73447603…utas.part2.rar
Parte 3 http://rapidshare.com/files/73449406…utas.part3.rar

Zwillinger Standard Probaility and Statistica Tables and Formulas
http://rapidshare.com/files/77744923…d_Formulas.rar

Utilizacion de Dreamweaver CS3
http://rapidshare.com/files/78812226…weaver_CS3.pdf

Ampliación de Dreamweaver CS3
http://rapidshare.com/files/78790693…reamweaver.pdf

Referencia API de Dreamweaver CS3
http://rapidshare.com/files/78800389…reamweaver.pdf

Guia para desarrolladores de Spry CS3
http://rapidshare.com/files/78791250…e_Spry_1.4.pdf

Utilizacion de Flash CS3
http://rapidshare.com/files/78824257…_Flash_CS3.pdf

Programacion en ActionScrpt 3.0 para Flash CS3
http://rapidshare.com/files/78793082…Script_3.0.pdf

Referencia de los componentes y el lenguaje de ActionScript 3.0 para Flash CS3
http://rapidshare.com/files/78800691…Script_3.0.pdf

Utilizacion de Adobe Premiere Pro CS3
http://rapidshare.com/files/78807511…re_Pro_CS3.pdf

Utilizacion de Fireworks CS3
http://rapidshare.com/files/78815420…eworks_CS3.pdf

Utilizacion de Illustrator CS3
http://rapidshare.com/files/78847829…trator_CS3.pdf

Utilizacion de Photoshop CS3
http://rapidshare.com/files/78869870…toshop_CS3.pdf

C# A Fondo
http://rapidshare.com/files/78879039…Tom.Archer.rar

Utilizacion de Dreamweaver 8
http://rapidshare.com/files/78882928…reamweaver.rar

Dreamweaver 8 API Reference
http://rapidshare.com/files/78879836…_Reference.rar

Extending Dreamweaver 8
http://rapidshare.com/files/78880050…reamweaver.rar

Primeros Pasos con Dreamweaver 8
http://rapidshare.com/files/78881371…amweaver_8.rar

Utilizacion de Fireworks 8
http://rapidshare.com/files/78884154…ireworks_8.rar

Extending Fireworks 8
http://rapidshare.com/files/78884329…ireworks_8.rar

Primeros pasos con Fireworks 8
http://rapidshare.com/files/78886843…ireworks_8.rar

Primeros pasos con Flash 8
http://rapidshare.com/files/78890501…on_Flash_8.rar

Primeros pasos con Flash Lite
http://rapidshare.com/files/78890617…Flash_Lite.rar

Referencia al lenguaje ActionScript 2.0
http://rapidshare.com/files/78892220…Script_2.0.rar

Referencia al lenguaje ActionScript de Flash Lite
http://rapidshare.com/files/78892308…Lite _1.x.rar

Referencia al lenguaje de componentes en Flash 8
http://rapidshare.com/files/78893008…omponentes.rar

Tutoriales de Flash 8
http://rapidshare.com/files/78893899…de_Flash_8.rar

Utilizaicion de Componentes en Flash 8
http://rapidshare.com/files/78894682…en_Flash_8.rar

Utilizacion de Flash 8
http://rapidshare.com/files/78895099…de_Flash_8.rar

Utilizacion de Flash Video Encoder 8
http://rapidshare.com/files/78886904…eo_Encoder.rar

Ampliacion de Flash 8
http://rapidshare.com/files/78889501…de_Flash_8.rar

Aprendizaje de ActionScript 2.0 en Flash 8
http://rapidshare.com/files/78890089…en_Flash_8.rar

Aprendizaje de ActionScript en Flash Lite 1.x
http://rapidshare.com/files/78889520…h_Lite_1.x.rar

Desarrollo de aplicaciones en Flash Lite
http://rapidshare.com/files/78890302…Flash_Lite.rar

Muestras de Flash 8
http://rapidshare.com/files/78890332…de_Flash_8.rar

Diseño de Bases de Datos, Problemas Resueltos
Parte 1 http://rapidshare.com/files/79023679…os.part1 .rar
Parte 2 http://rapidshare.com/files/79282879…os.part2 .rar

Coleccion de libros de Harry Potter en Ingles
http://rapidshare.com/files/79287183…Potter_ing.rar

Coleccion de libros de Harry Potter en español
http://rapidshare.com/files/79288783…Potter_esp.rar

Excel 2007 Formulas - Wiley
http://rapidshare.com/files/79297741…7.Formulas.rar

QUE - Formulas and Functions with Microsoft Excel 2003, Business Solutions
http://rapidshare.com/files/79301684…_Solutions.rar

Microsoft Office Excel 2007 Bible, Wiley
http://rapidshare.com/files/79304143…2007_Bible.rar

Calculo de Larson 6ta ed en español Volumen 1
Parte 1 http://rapidshare.com/files/79311564…a_ed.part1.rar
Parte 2 http://rapidshare.com/files/79315377…a_ed.part2.rar

Calculo de Larson 6ta ed en español Volumen 2
Parte 1 http://rapidshare.com/files/79320808…a_ed.part1.rar
Parte 2 http://rapidshare.com/files/79307367…a_ed.part2.rar

Algebra de Baldor
http://rapidshare.com/files/79326347…_de_Baldor.rar

Wolfram - Mathematica 5 Book, Full
http://rapidshare.com/files/79500520…ica_Book_5.rar

El metodo de combate de Bruce Lee, Entrenamiento Básico
http://rapidshare.com/files/80353011…o_b _sico.rar

El Metodo de combate de Bruce Lee, La Habilidad en las técnicas
http://rapidshare.com/files/80361488…s_t_cnicas.rar

El metodo de combate de Bruce Lee, Tecnicas Avanzadas
http://rapidshare.com/files/80362156…vanza das.rar

El metodo de combate de Bruce Lee, Técnicas de Defensa Personal
http://rapidshare.com/files/80363267…a_personal.rar

Bruce Lee, Kung fu chino, El arte filosófico de defensa personal
http://rapidshare.com/files/80364012…pers onal.rar

Bruce Lee, El arte de exprearte con el cuerpo
http://rapidshare.com/files/80364046…_el_cuerpo.rar

Bruce Lee, El Tao Jeet Kune Do
http://rapidshare.com/files/80366687…et_kune_do.rar

80 Libros de figuras origami
http://rapidshare.com/files/80399144…gami-Books.rar

La Biblia de C#, español
Parte 1 40 mb http://rapidshare.com/files/80405102…e_C_.part1.rar
Parte 2 3 mb http://rapidshare.com/files/80410740…e_C_.part2.rar

UML, El Lenguaje Unificado de Modelado, Manual de Referencia esp
http://rapidshare.com/files/80413818…Referencia.rar

El Sexo en la Historia
http://rapidshare.com/files/80417530…ia_-_Libro.rar

Utilización de Adobe Acrobat Profesional 8
http://rapidshare.com/files/80485113/help.pdf

Aprenda Excel con 277 Misterios Resueltos en Excel, Ing.
Parte 1 40 mb http://rapidshare.com/files/80555017…lved.part1.rar
Parte 2 2 mb http://rapidshare.com/files/80555451…lved.part2.rar

Como hacer de todo con Flash 8, Ing.
http://rapidshare.com/files/80558696…th_Flash_8.rar

La Biblia de JavaScript 5ta ed, ing.
http://rapidshare.com/files/80560671…th_Edition.rar

Las Posiciones del Kamasutra, full color, español
http://rapidshare.com/files/80567092…s-posturas.rar

Aprendiendo PHP y MySQL, Ing.
http://rapidshare.com/files/80572489….2006_html.zip

Los Secretos de Google
http://rapidshare.com/files/80579730…_de_Google.rar

Masaje erotico para parejas ilustrado, esp
http://rapidshare.com/files/80580935…_ilustrado.rar

Microsoft Office Access 2007, Referencia completa, Ing.
http://rapidshare.com/files/80585936…e.Jan.2007.rar

La Biblia de Excel 2007, Ing.
http://rapidshare.com/files/80590834…2007_Bible.rar

55 Diseños de Origami, “arte en papel”
http://rapidshare.com/files/80591237…eory_Books.rar

Formulas y Funciones con Microsoft Office Excel 2007, Ing.
http://rapidshare.com/files/80599373… xcel_2007.rar

The Zen of CSS Design, Visual Enlightenment ofr the Web 2005, Ing
http://rapidshare.com/files/80603871… _Web_2005.rar

La Biblia de Ubuntu Linux 2007, Ing.
http://rapidshare.com/files/80810462…e_Jan_2007.rar

250 HTML and Web Design Secrets 2004, Ing.
http://rapidshare.com/files/80812207…Bo ok-DDU.rar

La Biblia de 3D Studio Max 8, Ing
Parte 1 40 mb http://rapidshare.com/files/81317018…blia.part1.rar
Parte 2 21 mb http://rapidshare.com/files/81323896…blia.part2.rar

Actualizacion 14 de enero de 2008

La Biblia de Access 2007, ing.
http://rapidshare.com/files/81332310…e.Jan.2007.rar

Como hacer aviones origami que vuelan, ing.
http://rapidshare.com/files/82035027…s_That_Fly.rar

Ingenieria del Software, esp.
http://rapidshare.com/files/82038404…e_Software.rar

Diseño Orientado a Objetos con UML, esp.
http://rapidshare.com/files/82038788…os_con_UML.rar

Geometria y Trigonometria de Baldor, esp.
Parte 1 30 mb http://rapidshare.com/files/82061934…tria.part1.rar
Parte 2 30 mb http://rapidshare.com/files/82071831…tria.part2.rar
Parte 3 30 mb http://rapidshare.com/files/82078066…tria.part3.rar

La biblia de MySQL, esp.
http://rapidshare.com/files/82086652…a_de_MySQL.rar

Excel 2003 InsideOut, con ejemplos de practica, ing.
http://rapidshare.com/files/82090485…emplos_xls.rar

Programacion Orientada a Objetos y Java 2da ed, Springer, ing.
http://rapidshare.com/files/82096986…n_Sep_2007.rar

Web Standards Solutions - The Markup and Style Handbook
http://rapidshare.com/files/82222476…e_Handbook.pdf

Aprendiendo php y MySQL, ing.
http://rapidshare.com/files/82223609….2006_html.zip

Libros de desarrollo Web
[url]http://rapidshare.com/files/82233034/Libros_de_Desarrollo_Web.rar[/ur]

Secretos de Animacion en Flash CS3, ing.
Parte 1 40 mb http://rapidshare.com/files/82269621…rets.part1.rar
Parte 2 40 mb http://rapidshare.com/files/82325834…rets.part2.rar
Parte 3 34 mb http://rapidshare.com/files/82344624…rets.part3.rar

La biblia de Visio 2007, ing.
http://rapidshare.com/files/82788120…e.Apr.2007.rar

La biblia de Word 2003, ing.
http://rapidshare.com/files/82793637…bible_2003.rar

Una Introduccion a la Programacion con Wofram Mathematica, ing.
http://rapidshare.com/files/82795529…hematica.ra r

Calculos con Wolfram Mathematica, ing.
http://rapidshare.com/files/82796187…athematica.rar

Convertirse en experto en Wolfram Mathematica, ing.
http://rapidshare.com/files/82797277…athematica.zip

Una Introduccion a las Ecuaciones Diferenciales Parciales con Mathematica y Maple
http://rapidshare.com/files/82799545…_and_Maple.rar

La Biblia de AutoCAD 2008 y AutoCAD LT 2008 con ejemplos y ejercicios, ing.
Parte 1 40 mb http://rapidshare.com/files/83083304…ible.part1.rar
Parte 2 40 mb http://rapidshare.com/files/83092346…ible.part2.rar
Parte 3 40 mb http://rapidshare.com/files/83096854…ible.part3.rar

Libro + Solucionario - Calculo Tracendentes tempranas 5a Ed James Stewart

Libro + Solucionario - Calculo 5ta Ed. James Stewart


Descarga del Libro: Password: solucionesbook.wordpress.com
http://rapidshare.com/files/72523763/Book_Calculus_5th_Edition_-_James_Stewart.rar

Descarga del solucionario:

Pass: solucionesbook.wordpress.com

Parte 1

Parte 2

Parte 3

Libro de texto - Física para cientificos e ingenieros, Serway - Jewett 6ta Ed.

Uno de los mejores libros de texto de física que es usado ampliamente en las aulas universitarias, aunque está en inglés es una exelente referencia.

Descarga:

http://rapidshare.com/files/69346892/Text_Book_Serway_S_E_6a_ed_por_samuraywil.rar