Free Ebook Video Training

Wednesday, June 10, 2009

A Programmer's Guide to Java™ Certification


This book provides an extensive coverage of the Java programming language, with particular emphasis on its syntax and usage. The book is primarily intended for professionals who want to prepare for the Sun Certified Java Programmer Exam (Sun CJPE), but it is readily accessible to any programmer who wants to master the language. For both purposes, it provides an in-depth coverage of essential features of the language and its core Application Programming Interfaces (APIs).
There is a great and increasing demand for certified Java programmers. Sun Microsystems has defined the Sun CJPE which professionals can take to validate their skills. The certification provides IT industry the standard to use for hiring such professionals, and allows the professionals to turn their Java skills into credentials that are important for career advancement.
The book helps the reader to master all features of the Java language, and this mastering of the language can culminate in accomplishing the exam. It provides an extensive coverage of all the objectives defined for the exam by Sun. Since the exam objectives are selective, they do not cover all the essential features of Java. The book provides extensive coverage of additional topics that every Java programmer should master in order to be proficient in this field. In this regard, the book is a comprehensive primer for learning the Java programming language.
This book is not a complete reference for the Java programming language as it does not attempt to list every member of every class from the Java Development Kit (JDK) API documentation. Its purpose is not to document the JDK APIs. It is also not a book on teaching programming techniques. Again, this is not its purpose. Its emphasis is on the Java programming language features, their syntax and correct usage.
The book assumes background in programming. We believe the exam is accessible to any programmer who works through the book. A Java programmer can easily skip over material which is well understood and concentrate on parts that need reinforcing, whereas a programmer new to Java will find the concepts explained from basic principles.
Each topic is explained and discussed thoroughly with examples, and backed by review questions and exercises to reinforce the concepts. Common pitfalls and programming style are discussed where appropriate. The book is not biased toward any particular platform but provides platform-specific details where appropriate.

Download

Download from Uploading.com
Mirror

Network Programming & TCP/IP socket in C

Network Programming :

This document has been written as a tutorial, not a reference. It is probably at its best when
read by individuals who are just starting out with socket programming and are looking for a
foothold. It is certainly not the complete guide to sockets programming, by any means.
Hopefully, though, it'll be just enough for those man pages to start making sense...

TCP/IP spcket in C :

We wrote this book to improve the support for socket-based programming exercises in
our own networking courses. Although some networking texts deal with network programming,
we know of none that cover TCP/IP sockets. Excellent reference books on TCP/IP socket
programming exist, but they are too large and comprehensive to be considered as a supplement
to a networking text. UNIX "man pages" are okay for reference but do not make a very
good tutorial. Our goal, therefore, was to provide a gentle introduction, and a handy reference,
that would allow students to dive right in without too much handholding.

Download

Download from Uploading.com

Mirror :

http://rapidshare.com/files/231368616/Network_Programming.rar

Readme
Password default : booktraining.net

OpenVPN: Building and Integrating Virtual Private Networks: Learn how to build secure VPNs using this powerful Open Source application


Product Description

This book is a comprehensive guide to using OpenVPN for building both secure VPNs. The book is written in a very friendly style that makes this complex topic easy and a joy to read. It first covers basic VPN concepts, then moves to introduce basic OpenVPN configurations, before covering advanced uses of OpenVPN. It's suitable for both experienced and new OpenVPN users.
OpenVPN is a powerful, open source SSL VPN application. It can secure site-to-site connections, WiFi and enterprise-scale remote connections. While being a full-featured VPN solution, OpenVPN is easy to use and does not suffer from the complexity that characterizes other IPSec VPN implementations. It uses the secure and stable TLS/SSL mechanisms for authentication and encryption.
This book is an easy introduction to this popular VPN application. After introducing the basics of security and VPN, the book moves on to cover using OpenVPN, from installing it on various platforms, through configuring basic tunnels, to more advanced features, such as using the application with firewalls, routers, proxy servers, and OpenVPN scripting. While providing the necessary theoretical background, the book takes a practical approach, presenting plenty of examples.
What you will learn from this book
Chapter 1 looks at what VPNs are, how they evolved during the last decade, why it is necessary to modern Benterprises, how typical VPNs work. The chapter also covers some essential networking concepts.
Chapter 2 explains VPN security issues, including symmetric and asymmetric encryption, the SSL/TLS library, and SSL certificates.
Chapter 3 introduces OpenVPN. In this chapter, we learn about the history of OpenVPN, how OpenVPN works, and how OpenVPN compares to IPSec VPN applications.
Chapter 4 covers installing OpenVPN on both Windows, the Mac, Linux, and FreeBSD. It covers the installation on Linux from the source code and RPM packages. Installation on Suse and Debian is covered in detail.
Chapter 5. Here an encryption key for OpenVPN is created and it is then used to setup up our first OpenVPN Tunnel between two windows systems in the same network. The key is then copied on a Linux system and this system is connected through a tunnel to the first windows machine.
Chapter 6 shows how to create x509 server and client certificates for use with OpenVPN. easy-rsa which comes with OpenVPN and is available for both Windows and Linux is used.
Chapter 7 reviews the syntax of the command line tool openvpn, which enables building tunnels quickly. The configuration options of openvpn are covered in detail with examples.
Chapter 8 shows how to make the example tunnels created earlier safer and persistent by choosing a reliable combination of configuration file parameters. It then covers how to configure firewalls on Linux and Windows to work with OpenVPN.
Chapter 9 focuses on using xca, the advanced Windows tool with which x509 certificates can be easily managed. Its Linux equivalent, Tinyca2, which can even manage multiple certificate authorities, is also covered.
Chapter 10 covers advanced OpenVPN configurations, including Tunneling through a proxy server, pushing routing commands to clients, pushing and setting the default route through a tunnel, Distributed compilation through VPN tunnels with distcc, and OpenVPN scripting.
Chapter 11 shows how to debug and monitor VPN tunnels. It covers standard networking tools that can be used for scanning and testing the connectivity of a VPN server.

Download
Mirror

Effective Java: Programming Language Guide


Written for the working Java developer, Joshua Bloch's Effective Java Programming Language Guide provides a truly useful set of over 50 best practices and tips for writing better Java code. With plenty of advice from an indisputable expert in the field, this title is sure to be an indispensable resource for anyone who wants to get more out of their code.
As a veteran developer at Sun, the author shares his considerable insight into the design choices made over the years in Sun's own Java libraries (which the author acknowledges haven't always been perfect). Based on his experience working with Sun's best minds, the author provides a compilation of 57 tips for better Java code organized by category. Many of these ideas will let you write more robust classes that better cooperate with built-in Java APIs. Many of the tips make use of software patterns and demonstrate an up-to-the-minute sense of what works best in today's design. Each tip is clearly introduced and explained with code snippets used to demonstrate each programming principle.
Early sections on creating and destroying objects show you ways to make better use of resources, including how to avoid duplicate objects. Next comes an absolutely indispensable guide to implementing "required" methods for custom classes. This material will help you write new classes that cooperate with old ones (with advice on implementing essential requirements like the equals() and hashCode() methods).
The author has a lot to say about class design, whether using inheritance or composition. Tips on designing methods show you how to create understandable, maintainable, and robust classes that can be easily reused by others on your team. Sections on mapping C code (like structures, unions, and enumerated types) onto Java will help C programmers bring their existing skills to Sun's new language. Later sections delve into some general programming tips, like using exceptions effectively. The book closes with advice on using threads and synchronization techniques, plus some worthwhile advice on object serialization.
Whatever your level of Java knowledge, this title can make you a more effective programmer. Wisely written, yet never pompous or doctrinaire, the author has succeeded in packaging some really valuable nuggets of advice into a concise and very accessible guidebook that arguably deserves a place on most any developer's bookshelf. --Richard Dragan

Download

Mirror

Linux Bible 2007 Edition


Get ready to master the basics and beyond with this in-depth guide to Linux. You’ll discover how Linux is productive enough to use as your only desktop system and powerful enough to run entire corporate enterprise installations. Plus, you’ll walk through 16 different Linux distributions, find step-by-step instructions, be introduced to new programming tools, and tap into the world of free software, all aimed at helping you succeed with Linux.

Download

http://uploading.com/files/3DVNZ3JI/Wiley.Linux.Bible.2007.Edition.Mar.2007.pdf.html
Mirror

Visual SourceSafe 2005 Software Configuration Management in Practice


Visual SourceSafe 2005 Software Configuration Management in Practice
Packt Publishing | February 16, 2007 | ISBN: 1904811698 | PDF | 7.6 Mb | 404 page


This book uses a real-world case-study project to teach you how to manage software configuration efficiently using Visual SourceSafe 2005, Microsoft’s Software Configuration Management (SCM) solution for independent developers and for developers working in small- and medium-sized teams.

It also provides a best-practices reference on using SourceSafe 2005 to manage the software development lifecycle. This book is for .NET developers, testers and configuration managers who: Use Visual Studio .NET 2005 for building software. Want to use software configuration to manage their products in day-to-day activities. Want to improve their efficiency by learning to use the best practices with SourceSafe. Want to install, manage, and configure Visual SourceSafe 2005 for optimal operation. The book does not assume previous knowledge of Software Configuration Management or Visual SourceSafe. It takes the reader from the ground up and is a great resource for people starting to learn about this subject. Readers with previous SourceSafe experience will benefit by discovering the improved and new features in Visual SourceSafe 2005.

Download
Mirror1
Mirror2

Lynda AJAX Crash Course by SitePoint


In The AJAX Crash Course, published by SitePoint, instructor Kevin Yank explores the many technologies that come together in AJAX applications. These technologies include the Document Object Model (DOM), Extensible Markup Language (XML), JavaScript, and XMLHttpRequest (XHR). Along with providing an application tour, Kevin explains how to make intelligent decisions about which of these tools to use, and gives hands-on examples of how to apply them.

Download
http://www.uploading.com/files/STG1SPEI/booktraining.net_lynda.com.ajax.crash_.c...zip.html
Mirror :

Eclipse and Java: Using the Debugger


This free video tutorial will teach you how to use the Eclipse Java Debugger. It is based on Eclipse version 3.3. This is for programmers who have completed the "Total Beginners" tutorial or have some familiarity with Eclipse and Java. No prior experience with the Eclipse Debugger is needed.

The 7 lessons are each about 15 minutes long and total about 1 3/4 hours. The lessons guide you through a step-by-step process of running debug sessions, setting breakpoints, stepping through a running program, and examining variables and expressions. Then we use this knowledge to fix some bugs in our code.

We use the "personal lending library" application developed in the Total Beginners tutorial. Each lesson is fully narrated. Along the way, we learn some very cool Eclipse functionality. See the Tutorial Companion Guide for more information about the tutorial, or look at the tutorial lesson outlines.

We learn how to debug programs written using test-driven development, running debug sessions using the JUnit testing facility in Eclipse. We also learn to debug standard Java programs. The lessons are designed for you to work side-by-side, pausing and rewinding the video as needed.
download links:
http://rapidshare.com/files/241307423/debugger-lesson.part1.rar
http://rapidshare.com/files/241307121/debugger-lesson.part2.rar

http://uploading.com/files/UFZ0QL8F/debugger-lesson.part2.rar.html
http://uploading.com/files/SF9OBQOG/debugger-lesson.part1.rar.html

Vietnam - The Ten Thousand Day War Disc 1/2


Vietnam - The Ten Thousand Day War Disc 1/2
English | XviD MPEG 4 Codec ~807 kbps | 640 x 516 | MP3 VBR ~122 kbps | 25 fps | 7 x 48 min | 5 GB



The real story behind the longest, most controversial war in modern history. Known as history's first "living room war," the Vietnam conflict is presented in this nearly 10-hour documentary with clarity, authority, and insight, complete on 2 DVDs. Written by Pulitzer Prize-winning journalist Peter Arnett and narrated by Richard Basehart (Moby Dick, La Strada), Vietnam: The Ten Thousand Day War covers the entire conflict, examining the shifting attitudes of the United States toward Vietnam from 1945, when the battleground was known as French Indochina, to 1975, when Saigon fell to the North Vietnamese. This superb award-winning series of programs re-examines without blame or judgment the rise and fall of America's 20-year commitment to the war in Vietnam. Forceful and evocative, with film clips shot by both sides, it revisits the time and place that molded a generation and changed the course of American politics forever.






Episode 1 - America in Vietnam
Quote: The first episode gives the viewer an overview of the transition of the Vietnam issue from early Cold War hot spot to the center of a controversy that threatened to tear America apart.

Episode 2 - Dien Bien Phu
Quote: This episode examines the fateful withdrawal of the French from Vietnam after its losses at Dien Bien Phu, which in turn signaled the beginning of direct American involvement in the region.

Episode 3 - Days of Decision
Quote:This episode examines the fateful decision by President Johnson to send American combat troops into Vietnam, setting off the most strident political controversy in modern American history.

Episode 4 - Uneasy Allies
Quote: This episode examines the relationship between the political powers in the United States and Saigon. It was a most uneasy alliance, fraught with dangers for both sides

Episode 5 - The Guerilla Society
Quote: This episode recounts the story of the Ho Chi Minh Trail, the 1,500 mile trail along which the communist forces of the North traveled into South Vietnam.

Episode 6 - Firepower
Quote: This episode examines the vastly superior firepower of the United States, and how it proved ineffective in fighting in the guerilla warfare in the jungles of Vietnam.

Episode 7 - Tet!
Quote: This episode follows the events of the siege of Khe Sahn and the subsequent Tet Offensive, which inflamed antiwar sentiment at home in the United States.


http://hotfile.com/dl/5690613/6ae75b8/10dy_1.13.part1.rar.html
http://hotfile.com/dl/5690634/94aaa97/10dy_1.13.part2.rar.html
http://hotfile.com/dl/5690686/5ee532e/10dy_1.13.part3.rar.html
http://hotfile.com/dl/5690568/af026bc/10dy_1.13.part4.rar.html
http://hotfile.com/dl/5690748/920175a/10dy_1.13.part5.rar.html
http://hotfile.com/dl/5690712/134306d/10dy_1.13.part6.rar.html
http://hotfile.com/dl/5690587/7be58d1/10dy_1.13.part7.rar.html

http://hotfile.com/dl/5690732/4eb21d7/10dy_2.13.part1.rar.html
http://hotfile.com/dl/5690743/5d0fc2d/10dy_2.13.part2.rar.html
http://hotfile.com/dl/5690766/1e4248f/10dy_2.13.part3.rar.html
http://hotfile.com/dl/5690792/0d24faf/10dy_2.13.part4.rar.html
http://hotfile.com/dl/5690814/60158b1/10dy_2.13.part5.rar.html
http://hotfile.com/dl/5690833/aad0ac5/10dy_2.13.part6.rar.html
http://hotfile.com/dl/5690847/0e17c42/10dy_2.13.part7.rar.html

http://hotfile.com/dl/5690861/55320c2/10dy_3.13.part1.rar.html
http://hotfile.com/dl/5690882/6fd696f/10dy_3.13.part2.rar.html
http://hotfile.com/dl/5690915/5ddbedb/10dy_3.13.part3.rar.html
http://hotfile.com/dl/5690927/ffc8500/10dy_3.13.part4.rar.html
http://hotfile.com/dl/5690952/5e4190e/10dy_3.13.part5.rar.html
http://hotfile.com/dl/5690993/a37678a/10dy_3.13.part6.rar.html
http://hotfile.com/dl/5691015/b20f8c4/10dy_3.13.part7.rar.html

http://hotfile.com/dl/5691029/d198bae/10dy_4.13.part1.rar.html
http://hotfile.com/dl/5691058/4d40fe1/10dy_4.13.part2.rar.html
http://hotfile.com/dl/5691087/244d5b4/10dy_4.13.part3.rar.html
http://hotfile.com/dl/5691109/855b2be/10dy_4.13.part4.rar.html
http://hotfile.com/dl/5691129/f4d8efc/10dy_4.13.part5.rar.html
http://hotfile.com/dl/5691152/a73e04d/10dy_4.13.part6.rar.html
http://hotfile.com/dl/5691169/d0148e6/10dy_4.13.part7.rar.html

http://hotfile.com/dl/5691201/81c9209/10dy_5.13.part1.rar.html
http://hotfile.com/dl/5691230/e83d501/10dy_5.13.part2.rar.html
http://hotfile.com/dl/5691252/2cc60c7/10dy_5.13.part3.rar.html
http://hotfile.com/dl/5691268/0b34850/10dy_5.13.part4.rar.html
http://hotfile.com/dl/5797834/ab6e5ba/10dy_5.13.part5.rar.html
http://hotfile.com/dl/5797861/7fb4bcd/10dy_5.13.part6.rar.html
http://hotfile.com/dl/5797892/e355944/10dy_5.13.part7.rar.html

http://hotfile.com/dl/5797916/26381ff/10dy_6.13.part1.rar.html
http://hotfile.com/dl/5797941/23f7cbe/10dy_6.13.part2.rar.html
http://hotfile.com/dl/5797966/aa3735b/10dy_6.13.part3.rar.html
http://hotfile.com/dl/5797997/27a2dcc/10dy_6.13.part4.rar.html
http://hotfile.com/dl/5798024/b1e5b2f/10dy_6.13.part5.rar.html
http://hotfile.com/dl/5798057/0ce9be6/10dy_6.13.part6.rar.html
http://hotfile.com/dl/5798096/999b93a/10dy_6.13.part7.rar.html

http://hotfile.com/dl/5798112/2b23961/10dy_7.13.part1.rar.html
http://hotfile.com/dl/5798128/e2363a5/10dy_7.13.part2.rar.html
http://hotfile.com/dl/5798151/ea2a986/10dy_7.13.part3.rar.html
http://hotfile.com/dl/5798175/0919bdc/10dy_7.13.part4.rar.html
http://hotfile.com/dl/5798188/3b077bb/10dy_7.13.part5.rar.html
http://hotfile.com/dl/5798198/0ef8820/10dy_7.13.part6.rar.html
http://hotfile.com/dl/5798215/a9aaf2f/10dy_7.13.part7.rar.html

Mirror links
http://rapidshare.com/files/242575916/10dy_1.13.part1.rar
http://rapidshare.com/files/242576390/10dy_1.13.part2.rar
http://rapidshare.com/files/242576120/10dy_1.13.part3.rar
http://rapidshare.com/files/242575861/10dy_1.13.part4.rar
http://rapidshare.com/files/242576136/10dy_1.13.part5.rar
http://rapidshare.com/files/242575780/10dy_1.13.part6.rar
http://rapidshare.com/files/242575887/10dy_1.13.part7.rar
http://rapidshare.com/files/242576848/10dy_2.13.part1.rar
http://rapidshare.com/files/242576780/10dy_2.13.part2.rar
http://rapidshare.com/files/242576752/10dy_2.13.part3.rar
http://rapidshare.com/files/242577081/10dy_2.13.part4.rar
http://rapidshare.com/files/242577006/10dy_2.13.part5.rar
http://rapidshare.com/files/242576870/10dy_2.13.part6.rar
http://rapidshare.com/files/242577064/10dy_2.13.part7.rar
http://rapidshare.com/files/242581258/10dy_3.13.part1.rar
http://rapidshare.com/files/242581242/10dy_3.13.part2.rar
http://rapidshare.com/files/242581075/10dy_3.13.part3.rar
http://rapidshare.com/files/242581812/10dy_3.13.part4.rar
http://rapidshare.com/files/242581214/10dy_3.13.part5.rar
http://rapidshare.com/files/242581184/10dy_3.13.part6.rar
http://rapidshare.com/files/242581855/10dy_3.13.part7.rar
http://rapidshare.com/files/242581966/10dy_4.13.part1.rar
http://rapidshare.com/files/242581089/10dy_4.13.part2.rar
http://rapidshare.com/files/242581442/10dy_4.13.part3.rar
http://rapidshare.com/files/242581085/10dy_4.13.part4.rar
http://rapidshare.com/files/242581259/10dy_4.13.part5.rar
http://rapidshare.com/files/242581460/10dy_4.13.part6.rar
http://rapidshare.com/files/242581219/10dy_4.13.part7.rar
http://rapidshare.com/files/242581094/10dy_5.13.part1.rar
http://rapidshare.com/files/242581253/10dy_5.13.part2.rar
http://rapidshare.com/files/242581851/10dy_5.13.part3.rar
http://rapidshare.com/files/242581897/10dy_5.13.part4.rar
http://rapidshare.com/files/242581431/10dy_5.13.part5.rar
http://rapidshare.com/files/242581074/10dy_5.13.part6.rar
http://rapidshare.com/files/242581818/10dy_5.13.part7.rar
http://rapidshare.com/files/242581203/10dy_6.13.part1.rar
http://rapidshare.com/files/242581108/10dy_6.13.part2.rar
http://rapidshare.com/files/242581277/10dy_6.13.part3.rar
http://rapidshare.com/files/242581482/10dy_6.13.part4.rar
http://rapidshare.com/files/242581391/10dy_6.13.part5.rar
http://rapidshare.com/files/242581058/10dy_6.13.part6.rar
http://rapidshare.com/files/242586082/10dy_6.13.part7.rar
http://rapidshare.com/files/242586784/10dy_7.13.part1.rar
http://rapidshare.com/files/242586312/10dy_7.13.part2.rar
http://rapidshare.com/files/242586703/10dy_7.13.part3.rar
http://rapidshare.com/files/242586099/10dy_7.13.part4.rar
http://rapidshare.com/files/242586750/10dy_7.13.part5.rar
http://rapidshare.com/files/242586625/10dy_7.13.part6.rar
http://rapidshare.com/files/242585952/10dy_7.13.part7.rar

Disc 2:
http://www.megaupload.com/?f=UV2HRVN3

Snort 2.1 Intrusion Detection, Second Edition


Called "the leader in the Snort IDS book arms race" by Richard Bejtlich, top Amazon reviewer, this brand-new edition of the best-selling Snort book covers all the latest features of a major upgrade to the product and includes a bonus DVD with Snort 2.1 and other utilities. Written by the same lead engineers of the Snort Development team, this will be the first book available on the major upgrade from Snort 2 to Snort 2.1 (in this community, major upgrades are noted by .x and not by full number upgrades as in 2.0 to 3.0). You will be given invaluable insight into the code base of Snort, and in depth tutorials of complex installation, configuration, and troubleshooting scenarios. Snort has three primary uses: as a straight packet sniffer, a packet logger, or as a full-blown network intrusion detection system. It can perform protocol analysis, content searching/matching and can be used to detect a variety of attacks and probes. Snort uses a flexible rules language to describe traffic that it should collect or pass, a detection engine that utilizes a modular plug-in architecture, and a real-time alerting capability. A CD containing the latest version of Snort as well as other up-to-date Open Source security utilities will accompany the book.

Download


Readme
Password default : booktraining.net

Eclipse and Java: Introducing Persistence


This video screencam tutorial will teach you how to save your Java objects to disk files using Eclipse version 3.3. This is for beginning programmers who have completed the "Total Beginners" tutorial or have some basic familiarity with Eclipse and Java. The 12 lessons total about 3 hours and are each about 15 minutes long. The lessons guide you through a step-by-step process adding save-to-file and get-from-file methods using the "personal lending library" application developed in the "Total Beginners" tutorial. Each lesson is fully narrated. Along the way, we learn some very cool Eclipse functionality.

All of the code for the lessons is typed in "real time". This allows the demonstration of many Eclipse Java editor features that speed up coding. Code snapshots as of the end of each lesson are provided in the Tutorial Companion Guide. These allow you to jump in at any lesson and to make sure your code matches the sample code.

Test-driven development is used throughout the lessons, using the JUnit testing facility in Eclipse. The lessons are designed for you to work side-by-side, pausing and rewinding the video as needed. See the Tutorial Companion Guide for more information about the tutorial, or look at the tutorial lesson outlines.
download links:
http://rapidshare.com/files/241309783/persistence.part1.rar
http://rapidshare.com/files/241309572/persistence.part2.rar


http://uploading.com/files/TFLPVQP4/persistence.part2.rar.html
http://uploading.com/files/YNPF2QSB/persistence.part1.rar.html

Total Training - Adobe: Fireworks CS4


Description: Total Training for Adobe Fireworks CS4 introduces you to Adobe's web graphic development program, Fireworks. After watching this training, you'll know how to create vector graphics, layouts and interactive buttons for a website. You'll also learn about the interface, and unlock the flexible features that allow you to edit bitmap images, apply automated Commands, and optimize images for the Web.

In addition, you'll explore the more dynamic Web features, including creating slices, linking hotspots, animating states, and more. This series is just what you need to get up to speed quickly on everything Fireworks has to offer!

Highlights
Learn how to edit and touch-up photos
Find out how to create and manipulate vector graphics
Discover best practices for organizing and designing using layers
See how easy adding and formatting text can be
Learn how to create slices and hotspots for web optimization and interactivity
download links:
http://rapidshare.com/files/241312192/ttadfrwrks4.part3.rar
http://rapidshare.com/files/241312185/ttadfrwrks4.part1.rar
http://rapidshare.com/files/241312163/ttadfrwrks4.part2.rar
http://rapidshare.com/files/241312066/ttadfrwrks4.part4.rar
http://rapidshare.com/files/241312021/ttadfrwrks4.part5.rar
http://rapidshare.com/files/241311973/ttadfrwrks4.part6.rar

http://uploading.com/files/55A0TWMP/ttadfrwrks4.part6.rar.html
http://uploading.com/files/C9ZIR6JP/ttadfrwrks4.part5.rar.html
http://uploading.com/files/WSS6G4VO/ttadfrwrks4.part4.rar.html
http://uploading.com/files/F3N8J4V4/ttadfrwrks4.part2.rar.html
http://uploading.com/files/G7QI6JD9/ttadfrwrks4.part1.rar.html
http://uploading.com/files/UWQU7CXO/ttadfrwrks4.part3.rar.html

Talented Pixie - Photoshop CS4: level 3


Talented Pixie - Photoshop CS4: level 3 | 300.5 MB
Rls Date : 04/06/09 | Supplier : iNK H0RN

This advanced course is designed for people already using Photoshop but need to take their skills to a higher level.

download links:
http://rapidshare.com/files/240994705/tpapcs43.part2.rar
http://rapidshare.com/files/240994665/tpapcs43.part3.rar
http://rapidshare.com/files/240994654/tpapcs43.part1.rar
http://rapidshare.com/files/240994486/tpapcs43.part4.rar

http://uploading.com/files/G6IMZPTL/tpapcs43.part4.rar.html
http://uploading.com/files/K03EGT2P/tpapcs43.part1.rar.html
http://uploading.com/files/ZBXAGW6Y/tpapcs43.part3.rar.html
http://uploading.com/files/ZHANAPYA/tpapcs43.part2.rar.html

Talented Pixie - Illustrator CS4: level 2


Take your knowledge and skills up to the next level with this course. Learn some great tips and tricks and plenty of shortcuts to make your life easier.

The DVD contains the following videos

Blending objects
The Appearance panel
Live paint
Live trace and Live paint
Patterns
Outline and offset path
Brush options
Symbols

Exporting Illustrator into InDesign
Charts and graphs
Save for the web
Placing graphics in Illustrator
download links:
http://rapidshare.com/files/241313879/i-tpaics42.part1.rar
http://rapidshare.com/files/241313648/i-tpaics42.part2.rar

http://uploading.com/files/1DKD24ZX/i-tpaics42.part2.rar.html
http://uploading.com/files/U7HWK6G8/i-tpaics42.part1.rar.html

Windows Forms Programming in C#

Image
Amazon.com Review
Everything changes in the Microsoft .NET Framework and the C# language, including the creation of graphical user interfaces (GUIs). Windows Forms Programming in C# explains the Windows Forms (WinForms) environment to programmers who have some experience with .NET programming, and in the process (thanks to a clear and deliberate expository style) reveals a lot about .NET to less experienced developers. The overall effect is that almost every reader comes away with better knowledge of .NET, not just its user-interface libraries and behaviors.

Author Chris Sells takes care to balance code samples with explanatory text, meaning that most chapters take on a characteristic "code, explanation, effect" style (in which "effect" is usually documented with a screen shot). This approach is effective, and serves both to answer "How do I..." questions and inspire "I should give that a try!" exploration. Once in a while, callouts will link two or more screen shots with a sample of code, graphically illustrating how code affects the appearance of a form and how it's represented in the Visual Studio development environment. On top of his clear teaching style, Sells calls attention to workarounds for shortcomings in the .NET environment (particularly where similar limitations don't exist in Microsoft Foundation Classes), helping to improve programmer productivity in the growing .NET environment. --David Wall

Topics covered: How to use the WinForms environment within the Microsoft .NET Framework. Dialog boxes, drawing, printing, and controls all are covered by means of explanations and lots of illustrative examples, and there's good coverage of the WinForms event model, too. An appendix compares MFC and the .NET Framework.

Product Description
Text focuses on the topics developers need to know in order to build real-world applications, including: form layout, multiple top-level and non-rectangular windows, custom drawing, hosting and bulding controls, data binding, moving from MFC, and more. Softcover. DLC: Microsoft .NET Framework.

Downlink Link:
Uploading
Rapidshare

Teach Youself Visual C# 2008 In 24 Hours

Image

Book Details:
http://www.informit.com/store/product.aspx?isbn=0672329905

Sams Teach Yourself Visual C#® 2008 in 24 Hours

James Foxall

Starter Kit

DVD includes Visual C#® 2008 Express Edition

In just 24 sessions of one hour or less, you will be up and running with Visual C# 2008. Using a straightforward, step-by-step approach, each lesson builds upon the previous one, allowing you to learn the essentials of Visual C# from the ground up.

By the Way notes present interesting pieces of information.

Did You Know? tips offer advice or teach an easier way to do something.

Watch Out! cautions advise you about potential problems and help you steer clear of disaster.

Learn how to...

  • Use the powerful design environment of Visual Studio 2008
  • Design a feature-rich interface using components such as tree views and tabs
  • Create robust applications using modern error handling
  • Draw fast graphics using GDI+
  • Build a database application using ADO.NET
  • Distribute a Visual C# 2008 application

James Foxall is vice president of Tigerpaw Software, Inc. (www.tigerpawsoftware.com), a Bellevue, Nebraska, Microsoft Certified Partner specializing in commercial database applications. He manages the development, support, training, and education of Tigerpaw CRM+, an award-winning application that automates contact management, marketing, service and repair, proposal generation, inventory control, and purchasing. Tigerpaw has more than 20,000 licensed users in 27 countries. Foxall’s experience in creating certified Office-compatible software has made him an authority on application interface and behavior standards. In addition to being a well-known author, James is an international speaker on Microsoft technologies, has taught at the college level, and contributes to several journals.


Downlink Link:
Uploading
Rapidshare

Vedic Maths in CD's : A complete package

http://www.eslteachersboard.com/webbbs/images/classifieds/pic5737.jpg

The origin of Vedic Mathematics may date back to very early ages, but from modern researches, it has been found that the ancient scriptures relate to wonderful ideas and ways to solve mathematical problems without much stress to human mind. These proven techniques are nonetheless very useful to modern learners as well. These are ways to sharpen your mind. As you advance to the higher levels, you find yourself becoming more and more adept at doing rapid mathematical calculations.

I have splitted the " .rar" files into smaller ones so that free rapidshare users can also take advantage by downloading these files. Use "HJSplit" to join these files.

To keep the topic alive, just a bit of "thanx" would be gratifying. Best of luck and enjoy!

http://rapidshare.com/files/242936431/VM1OnCD.rar.003
http://rapidshare.com/files/242936446/VM3OnCD.rar.004
http://rapidshare.com/files/242936452/VM1OnCD.rar.004
http://rapidshare.com/files/242936456/VM3OnCD.rar.002
http://rapidshare.com/files/242936469/VM3OnCD.rar.003
http://rapidshare.com/files/242936471/VedicMaths.rar
http://rapidshare.com/files/242936472/VedicMath_Original.rar
http://rapidshare.com/files/242936473/VM1OnCD.rar.001
http://rapidshare.com/files/242936474/VM2OnCD.rar.002
http://rapidshare.com/files/242936480/VM3OnCD.rar.005
http://rapidshare.com/files/242936493/VM2OnCD.rar.004
http://rapidshare.com/files/242936505/VM2OnCD.rar.001
http://rapidshare.com/files/242936508/VM2OnCD.rar.003
http://rapidshare.com/files/242936523/VM3OnCD.rar.001
http://rapidshare.com/files/242936525/VM1OnCD.rar.002

Professional C#

Image


Book Details:
http://www.amazon.com/Professional-C-2nd-Simon-Robinson/dp/1861007043
Product Description
It is no exaggeration to describe the C# language and its associated environment, the .NET Framework, as the most important new technology for developers in many years. .NET provides a new environment within which you can develop almost any Windows-based or web-based application, while C# is a new programming language designed specifically to work with .NET.

Entirely revised and updated for the Golden Release of .NET, Professional C# 2nd Edition is the ideal introduction to the C# language and the .NET Framework, and will become an indispensable companion for any user of C# and .NET.

Offering an unparalleled breadth and depth of coverage, this book provides the information that you need to learn the key concepts of the C# language, and then takes you on to a complete exploration of programming the .NET Framework with C#, so that you are ready to develop powerful C# applications in the .NET environment.

Topics covered include:

- How to program in the object-oriented C# language

- Writing Windows applications and Windows services

- Writing web pages and web services with ASP.NET

- Manipulating XML using C#

- Understanding .NET Assemblies

- Using ADO.NET to access databases

- Integration with COM, COM+, and Active Directory

- Distributed applications with .NET Remoting

- Generating graphics, and printing documents using C#

- Accessing the Internet with C#, and network programming

- Handling files and the Registry, and controlling .NET security

From the Publisher
This book is aimed at experienced developers, probably coming from a C++, Java, or VB background, but no previous experience of C# or .NET programming is assumed.

This book will provide the ideal introduction to writing C# programs on the .NET Framework for developers who are serious about C#, and want all the facts, now.



Downlink Link:
Uploading
Rapidshare

Programming C#, 4th Edition

cover

Book Details:
http://www.amazon.com/Programming-C-3-0-Jesse-Liberty/dp/0596527438

This book is a tutorial, both on C# and on writing .NET applications with C#. If you are a proficient C# 1.1 programmer, and all you want to know is what is new in C# 2.0, put this book down, and buy Visual C# 2005: A Developer's Notebook (O'Reilly Media, Inc.). If, on the other hand, you want to brush up on your C# skills, or you are proficient in another programming language like C++ or Java, or even if this is your first programming language, then this book is for you.

Programming C#, Fourth Edition, was written for programmers who want to develop applications for the .NET platform. No doubt many of you already have experience in C++, Java, or Visual Basic (VB). Other readers may have experience with other programming languages, and some readers may have no specific programming experience but perhaps have been working with HTML and other web technologies. This book is written for all of you, though if you have no programming experience at all, you may find some of it tough going.

If you're migrating from C, C++, VB 6, or Java, the following sections should give you some basic comparisons with C#. More importantly, keep an eye out for notes specifically for you throughout the book.

TABLE OF CONTENT:
Chapter 01 - C# and the .NET Framework
Chapter 02 - Getting Started: "Hello World"
Chapter 03 - C# Language Fundamentals
Chapter 04 - Classes and Objects
Chapter 05 - Inheritance and Polymorphism
Chapter 06 - Operator Overloading
Chapter 07 - Structs
Chapter 08 - Interfaces
Chapter 09 - Arrays, Indexers, and Collections
Chapter 10 - Strings and Regular Expressions
Chapter 11 - Handling Exceptions
Chapter 12 - Delegates and Events
Chapter 13 - Building Windows Applications
Chapter 14 - Accessing Data with ADO.NET
Chapter 15 - Programming ASP.NET Applications and Web Services
Chapter 16 - Putting It All Together
Chapter 17 - Assemblies and Versioning
Chapter 18 - Attributes and Reflection
Chapter 19 - Marshaling and Remoting
Chapter 20 - Threads and Synchronization
Chapter 21 - Streams
Chapter 22 - Programming .NET and COM
Appendix A - C# Keywords

Download here


Uploading
Rapidshare

Inside C#

Image


Book Details:
http://www.amazon.com/Inside-C-Second-Tom-Archer/dp/product-description/0735616485
Aimed at those with some previous programming experience, Inside C# shows developers the unique strengths, advantages, and tips for coding with C#. This fast-paced and in-depth tutorial will let you use Microsoft's newest programming language on the emerging .NET platform successfully.

The outstanding strength of this text is its in-depth language tutorial on C#, with complete coverage of basic and advanced object-oriented programming techniques. New language features like properties, indexers, and attributes get full coverage, alongside the basics of using classes and inheritance.

The book relies on using Visual Studio 6.0 and the command-line .NET tools for running programs. (Visual Studio.NET, the next version of Visual Studio, was unavailable when the book was written.) First to market with an in-depth language tutorial, the focus of Inside C# is on basic and advanced language features. By viewing generated code (using the ILDASM disassembler tool), the author examines how class design features work under the hood.

The language tutorial digs into features, beginning with a "Hello, World" program and delving into class design features before moving on to more basic features like expressions, operators, and flow control. This sequence makes the book best suited to the experienced developer, since some excellent in-depth material on the most advanced features of C# is presented before the basics of the language. Throughout, you'll learn the newest features of the language, how to use it, and a sense of its personality.

There's also plenty of material on the underlying Microsoft .NET platform, from the basics of the Common Language Runtime (CLR) to assemblies (used to deploy .NET applications), plus getting older COM components to interoperate with the newer .NET standard.

For anyone who's programmed before and wants to learn C# quickly, this in-depth guide anchored with plenty of short, effective examples provides what you need. Inside C# shows off the unique strengths of this new and exciting language and provides a solid introduction to the .NET platform. --Richard Dragan

Topics covered:

  • Introduction to C# and the Microsoft .NET Framework
  • Tutorial for object-oriented programming
  • A "Hello, World" program in C#
  • Command-line .NET tools (including the C# compiler and the ILDASM disassembler)
  • C# types
  • Boxing and unboxing variables
  • In-depth guide to C# class design (including members and methods, constructors, constants and read-only fields, garbage collection, and inheritance)
  • Method overloading
  • Virtual and static methods
  • Properties
  • Arrays
  • Indexers
  • Attributes
  • Interfaces (declaring and implementing interfaces, plus interfaces combined with inheritance)
  • Expressions and operators in C# (including operator precedence)
  • Program flow control
  • Exception handling classes and techniques
  • Operator overloading
  • Delegates and event handlers
  • Multithreaded programming techniques (including thread safety and synchronization)
  • C# reflection and metadata
  • Using unmanaged code and pointers from within C#
  • COM interoperability
  • Assemblies and deployment in C#
Downlink Link:
Uploading
Rapidshare

Essential ASP.NET With Examples in C#

 Essential ASP.NET With Examples in C#The Microsoft .NET Framework is exactly what its name implies: A general system onto which a lot of application-specific technologies are stuck. Essential ASP.NET With Examples in C# assumes you know something about the .NET way of doing things, and want to know more about how you can use its ASP.NET facet to implement robust and stylish Web applications. Fritz Onion, in a manner typical of this series, introduces key ASP.NET concepts logically, and with lots of code listings that make it clear how the concepts should be translated into reality. The truth be told, Onion excels at combining conceptual information with practical examples. This is unusual among writers of technical books, who tend to be good at (at best) one or the other.

Typically, the author approaches a capability of ASP.NET–validation of submitted form data, say–by presenting a quick summary of the problem and then attacking it (or components of it) with code. The code segments (which tend not to be too long, and so relatively easy to trace and comprehend) are then dissected, and special attention called to details of particular interest to the local problem. It's a great way to learn if you already have a grasp of the basics, as you can either go hands-on with your own system or absorb the author's wisdom through the book alone.


Book Details:
http://www.bookpool.com/sm/0201760401

Download

Uploading
Rapidshare

Mastering C# Database Programming

Mastering C# Database Programming

Book Details:
http://as.wiley.com/WileyCDA/WileyTitle/productCd-0782141838.html

Product Description
Enter a New World of Database Programming
C# and ADO.NET facilitate the development of a new generation of database applications, including remote applications that run on the Web. Mastering C# Database Programming is the resource you need to thrive in this new world. Assuming no prior experience with database programming, this book teaches you every aspect of the craft, from GUI design to server development to middle-tier implementation. If you’re familiar with earlier versions of ADO, you’ll master the many new features of ADO.NET all the more quickly. You’ll also learn the importance of XML within the new .NET paradigm. Coverage includes:


* Accessing a database using C# and ADO.NET
* Using SQL to access a database
* Using Visual Studio .NET to build applications
* Creating and modifying database tables
* Understanding ADO.NET classes
* Designing, building, and deploying Web applications that access a database
* Designing, building, and deploying effective Web services
* Using SQL Server’s built-in XML capabilities
* Working with a database in a disconnected manner
* Using advanced transaction controls
* Using Transact-SQL to create stored procedures and functions in a SQL Server database

From the Back Cover
Enter a New World of Database Programming

C# and ADO.NET facilitate the development of a new generation of database applications, including remote applications that run on the Web. Mastering C# Database Programming is the resource you need to thrive in this new world. Assuming no prior experience with database programming, this book teaches you every aspect of the craft, from GUI design to server development to middle-tier implementation. If you’re familiar with earlier versions of ADO, you’ll master the many new features of ADO.NET all the more quickly. You’ll also learn the importance of XML within the new .NET paradigm. Coverage includes:

* Accessing a database using C# and ADO.NET
* Using SQL to access a database
* Using Visual Studio .NET to build applications
* Creating and modifying database tables
* Understanding ADO.NET classes
* Designing, building, and deploying Web applications that access a database
* Designing, building, and deploying effective Web services
* Using SQL Server’s built-in XML capabilities
* Working with a database in a disconnected manner
* Using advanced transaction controls
* Using Transact-SQL to create stored procedures and functions in a SQL Server database

Download

Uploading
Rapidshare

Data Structures and Algorithms Using C#

cover

C# programmers: no more translating data structures from C++ or Java to use in your programs! Mike McMillan provides a tutorial on how to use data structures and algorithms plus the first comprehensive reference for C# implementation of data structures and algorithms found in the .NET Framework library, as well as those developed by the programmer.

The approach is very practical, using timing tests rather than Big O notation to analyze the efficiency of an approach. Coverage includes array and ArrayLists, linked lists, hash tables, dictionaries, trees, graphs, and sorting and searching algorithms, as well as more advanced algorithms such as probabilistic algorithms and dynamic programming. This is the perfect resource for C# professionals and students alike.

This book is written primarily as a practical overview of the data structures and algorithms all serious computer programmers need to know and understand. Given this, there is no formal analysis of the data structures and algorithms covered in the book. Hence, there is not a single mathematical formula and not one mention of Big Oh analysis (if you don’t know what this means, look at any of the books mentioned in the bibliography). Instead, the various data structures and algorithms are presented as problem-solving tools. Simple timing tests are used to compare the performance of the data structures and algorithms discussed in the book.

The only prerequisite for this book is that the reader have some familiarity with the C# language in general, and object-oriented programming in C# in particular.

TABLE OF CONTENT:
Chapter 01 - An Introduction to Collections, Generics, and the Timing Class
Chapter 02 - Arrays and ArrayLists
Chapter 03 - Basic Sorting Algorithms
Chapter 04 - Basic Searching Algorithms
Chapter 05 - Stacks and Queues
Chapter 06 - The BitArray Class
Chapter 07 - Strings, the String Class, and the StringBuilder Class
Chapter 08 - Pattern Matching and Text Processing
Chapter 09 - Building Dictionarie
Chapter 10 - Hashing and the Hashtable Class
Chapter 11 - Linked Lists
Chapter 12 - Binary Trees and Binary Search Trees
Chapter 13 - Sets
Chapter 14 - Advanced Sorting Algorithms
Chapter 15 - Advanced Data Structures and Algorithms for Searching
Chapter 16 - Graphs and Graph Algorithms
Chapter 17 - Advanced Algorithms

Download

Uploading
Rapidshare

Database Programming With C#

Image
http://www.amazon.com/Database-Programming-C-Carsten-Thomsen/dp/1590590104
Product Description
Need to master database programming in C#? Then Database Programming with C# is your ultimate resource! You will learn to create database details like tables, constraints, projects, stored procedures, views, triggers, and more. You will build on example code from the book's beginning, wrapping up in the final chapter. (The example application is a complete user management system that includes SQL Server, Active Directory, and Message Queuing.)

Example code explains connecting and manipulating data in MySQL 3.23.45 and later, Oracle 8i and later, Microsoft Access 2000 and later, and SQL Server. So if you're connecting to SQL Server 2000, you'll find information on the SQLXML 2.0 plug-in for manipulating SQL Server data using XML from managed code or using HTTP. Exchange Server 2000 connection and data manipulation are also covered with original working code.

About the Author
Carsten Thomsen is a Microsoft MVP, a recognition he received in August 1999. He lives in his native Denmark and currently holds the MCSE, MCAD, and MCSD certifications. Carsten has been programming in Visual Basic for almost 12 years, and he specializes in data access, object-oriented analysis and design, and enterprise development. These days, Carsten is primarily focused on development with Visual Studio .NET, using MSF, UML, Visual Basic .NET, and C#, but he also enjoys working with Microsoft SharePoint Portal Server 2003, Microsoft Content Management Server 2002, and Microsoft BizTalk Server 2004. Carsten is now working as a .NET consultant mainly in London and Dublin, but he also does the odd .NET training job.



Downlink Link:
Uploading
Rapidshare

C# Programming For The Absolute Beginner

Image

Book Details:
http://www.amazon.com/Microsoft-C-Programming-Absolute-Beginner/dp/1931841160

Product Description
If you are new to programming with C# and are looking for a solid introduction, this is the book for you. Developed by computer science instructors, books in the for the absolute beginner series teach the principles of programming through simple game creation. You will acquire the skills that you need for more practical C# programming applications and will learn how these skills can be put to use in real world scenarios. Best of all, by the time you finish this book you will be able to apply the basic principles you've learned to the next programming language you tackle.

About the Author
Andy Harris began teaching computing at the university level in the late 1980s as a part-time job. Since 1995, he has been a full-time lecturer at the Computer Science Department of Indiana University - Purdue University at Indianapolis (IUPUI). He now manages the IUPUI Streaming Media Lab and teaches classes in several programming languages. Andy resides in Noblesville, Indiana.
Downlink Link:
Uploading
Rapidshare

Advanced C# Programming

http://www.holbornbooks.co.uk/images/books/155673.jpg
Book Details:
http://www.holbornbooks.co.uk/books/155673/Kimmel,-Paul/Advance-C%23-Programming/
This advanced resource is ideal for experienced programmers seeking practical solutions to real problems. Discover valuable coding techniques and best practices while learning to master Microsoft's newest cross-platform programming language. This definitive guide will show you how to expertly apply and integrate C# into your business applications. Create user controls, special effects text, dynamic user interfaces, custom attributes--plus, you'll also find reliable security and authentication methods.

Downlink Link:
Uploading
Uploading
Rapidshare

D0wn10ad
Mirr0r

The Art of UNIX Programming (Addison-Wesley Professional Computing Series)

The Art of UNIX Programming (Addison-Wesley Professional Computing Series)
The Art of UNIX Programming
Addison-Wesley Professional; 1st edition | ISBN: 0131429019 | 512 pages | September 17, 2003 | CHM | 1 Mb

Unix ranks among the great engineering accomplishments of the last half of the twentieth century, and its heir–Linux–seems already imposing and still on its way to achieving its full potential. Eric S. Raymond argues in The Art of UNIX Programming that the excellence of Unix derives as much from the fact that it was (and continues to be) a community effort as from the fact that a lot of smart people have worked to design and build it. Raymond, best known as the author of the open-source manifesto The Cathedral and the Bazaar, says in his preface that this is a “why-to” book, rather than a “how-to” book. It aims to show new Unix programmers why they should work under the old “hacker ethic”–embracing the principles of good software design for its own sake and of code-sharing.

That said, a great deal of valuable practical information appears in this book. Very little of it is in the form of code; most of the practical material takes the form of case studies and discussions of aspects of Unix, all aimed at determining why particular design characteristics are good. In many cases, the people who did the work in the first place make guest appearances and explain their thinking–an invaluable resource. This book is for the deep-thinking software developer in Unix (and perhaps Linux in particular). It shows how to fit into the long and noble tradition, and how to make the software work right.



D0wn10ad

Learnkey : (MCSE 70-291) Windows 2003 Implementing A Network Infrastructure

The Windows Server 2003 Implementing Network Infrastructure course from LearnKey prepares you with the knowledge and skills needed to implement, manage, and maintain a Windows Server 2003 network. Expert instructor Aaron Spurlock covers critical topics like how to implement server IP addressing, name resolution, network security, routing and remote access. At the conclusion of the course, you will understand the skills required to implement a Windows Server 2003 network, and be prepared to pass MCP exam 70-291. Windows 2003 Implementing A Network Infrastructure Aaron Spurlock

Benefits

• Develop your abilities and IT credibility.
• Increase your career opportunities and earning potential.
• This course meets MCP exam 70-291 objectives.

Download

http://hotfile.com/dl/5855641/38aa6e1/LK.70.291.5CD.part01.rar.html
http://hotfile.com/dl/5855647/a51ebf2/LK.70.291.5CD.part02.rar.html
http://hotfile.com/dl/5855670/e1c6398/LK.70.291.5CD.part03.rar.html
http://hotfile.com/dl/5855678/ca9210e/LK.70.291.5CD.part04.rar.html
http://hotfile.com/dl/5855689/ebd7bd6/LK.70.291.5CD.part05.rar.html
http://hotfile.com/dl/5855704/6b2ec4a/LK.70.291.5CD.part06.rar.html
http://hotfile.com/dl/5855716/f388bf5/LK.70.291.5CD.part07.rar.html
http://hotfile.com/dl/5855731/2c0fb63/LK.70.291.5CD.part08.rar.html
http://hotfile.com/dl/5855743/f67298a/LK.70.291.5CD.part09.rar.html
http://hotfile.com/dl/5855751/1e048ab/LK.70.291.5CD.part10.rar.html
http://hotfile.com/dl/5855772/f2baa0e/LK.70.291.5CD.part11.rar.html
http://hotfile.com/dl/5855787/df2c5c0/LK.70.291.5CD.part12.rar.html
http://hotfile.com/dl/5855795/21820c1/LK.70.291.5CD.part13.rar.html
http://hotfile.com/dl/5855806/e7ba932/LK.70.291.5CD.part14.rar.html
http://hotfile.com/dl/5855823/8fa9d70/LK.70.291.5CD.part15.rar.html
http://hotfile.com/dl/5855836/ec3035d/LK.70.291.5CD.part16.rar.html
http://hotfile.com/dl/5855856/78ac2fd/LK.70.291.5CD.part17.rar.html
http://hotfile.com/dl/5855864/b32c97c/LK.70.291.5CD.part18.rar.html
http://hotfile.com/dl/5855868/ae1faa9/LK.70.291.5CD.part19.rar.html
http://hotfile.com/dl/5855882/dc5d599/LK.70.291.5CD.part20.rar.html
http://hotfile.com/dl/5855892/0fda0b9/LK.70.291.5CD.part21.rar.html
http://hotfile.com/dl/5855905/dac1222/LK.70.291.5CD.part22.rar.html
http://hotfile.com/dl/5855917/a348510/LK.70.291.5CD.part23.rar.html
http://hotfile.com/dl/5855926/0963b50/LK.70.291.5CD.part24.rar.html
http://hotfile.com/dl/5855938/a041aae/LK.70.291.5CD.part25.rar.html
http://hotfile.com/dl/5855941/961d52e/LK.70.291.5CD.part26.rar.html
http://hotfile.com/dl/5855950/58e4307/LK.70.291.5CD.part27.rar.html
http://hotfile.com/dl/5855962/18d9ded/LK.70.291.5CD.part28.rar.html
http://hotfile.com/dl/5855973/99f9859/LK.70.291.5CD.part29.rar.html
http://hotfile.com/dl/5855983/61d1335/LK.70.291.5CD.part30.rar.html
http://hotfile.com/dl/5856585/93b953e/LK.70.291.5CD.part31.rar.html
http://hotfile.com/dl/5856600/7e4a874/LK.70.291.5CD.part32.rar.html
http://hotfile.com/dl/5856614/ee9a76f/LK.70.291.5CD.part33.rar.html
http://hotfile.com/dl/5856626/31e9013/LK.70.291.5CD.part34.rar.html
http://hotfile.com/dl/5856638/cf61d88/LK.70.291.5CD.part35.rar.html
http://hotfile.com/dl/5856649/44c768c/LK.70.291.5CD.part36.rar.html
http://hotfile.com/dl/5856660/7c97d7e/LK.70.291.5CD.part37.rar.html
http://hotfile.com/dl/5856674/d2da1fe/LK.70.291.5CD.part38.rar.html
http://hotfile.com/dl/5856687/836e507/LK.70.291.5CD.part39.rar.html
http://hotfile.com/dl/5856697/7cfd1e1/LK.70.291.5CD.part40.rar.html
http://hotfile.com/dl/5856714/319f7d1/LK.70.291.5CD.part41.rar.html
http://hotfile.com/dl/5856723/2f067d9/LK.70.291.5CD.part42.rar.html
http://hotfile.com/dl/5856735/57d868c/LK.70.291.5CD.part43.rar.html
http://hotfile.com/dl/5856745/c049aca/LK.70.291.5CD.part44.rar.html
http://hotfile.com/dl/5856756/2486ba2/LK.70.291.5CD.part45.rar.html
http://hotfile.com/dl/5856767/2d6e61c/LK.70.291.5CD.part46.rar.html
http://hotfile.com/dl/5856785/bbd0134/LK.70.291.5CD.part47.rar.html
http://hotfile.com/dl/5856795/095de10/LK.70.291.5CD.part48.rar.html
http://hotfile.com/dl/5856809/6f97c82/LK.70.291.5CD.part49.rar.html
http://hotfile.com/dl/5856821/22621e0/LK.70.291.5CD.part50.rar.html
http://hotfile.com/dl/5856838/ec59dc6/LK.70.291.5CD.part51.rar.html
http://hotfile.com/dl/5856851/1cc647c/LK.70.291.5CD.part52.rar.html
http://hotfile.com/dl/5856869/f48f98d/LK.70.291.5CD.part53.rar.html
http://hotfile.com/dl/5856892/a3c1e37/LK.70.291.5CD.part54.rar.html
http://hotfile.com/dl/5856899/40be541/LK.70.291.5CD.part55.rar.html

Mirror
http://rapidshare.com/files/242773660/LK.70.291.5CD.part08.rar
http://rapidshare.com/files/242773669/LK.70.291.5CD.part01.rar
http://rapidshare.com/files/242773672/LK.70.291.5CD.part12.rar
http://rapidshare.com/files/242773677/LK.70.291.5CD.part10.rar
http://rapidshare.com/files/242773678/LK.70.291.5CD.part24.rar
http://rapidshare.com/files/242773680/LK.70.291.5CD.part28.rar
http://rapidshare.com/files/242773681/LK.70.291.5CD.part23.rar
http://rapidshare.com/files/242773684/LK.70.291.5CD.part05.rar
http://rapidshare.com/files/242773685/LK.70.291.5CD.part20.rar
http://rapidshare.com/files/242773690/LK.70.291.5CD.part11.rar
http://rapidshare.com/files/242773736/LK.70.291.5CD.part29.rar
http://rapidshare.com/files/242773921/LK.70.291.5CD.part03.rar
http://rapidshare.com/files/242773926/LK.70.291.5CD.part22.rar
http://rapidshare.com/files/242773956/LK.70.291.5CD.part14.rar
http://rapidshare.com/files/242773966/LK.70.291.5CD.part26.rar
http://rapidshare.com/files/242773968/LK.70.291.5CD.part06.rar
http://rapidshare.com/files/242773969/LK.70.291.5CD.part19.rar
http://rapidshare.com/files/242773976/LK.70.291.5CD.part21.rar
http://rapidshare.com/files/242773981/LK.70.291.5CD.part25.rar
http://rapidshare.com/files/242773983/LK.70.291.5CD.part18.rar
http://rapidshare.com/files/242773988/LK.70.291.5CD.part13.rar
http://rapidshare.com/files/242773998/LK.70.291.5CD.part17.rar
http://rapidshare.com/files/242774002/LK.70.291.5CD.part30.rar
http://rapidshare.com/files/242774021/LK.70.291.5CD.part09.rar
http://rapidshare.com/files/242774024/LK.70.291.5CD.part16.rar
http://rapidshare.com/files/242774034/LK.70.291.5CD.part27.rar
http://rapidshare.com/files/242774040/LK.70.291.5CD.part04.rar
http://rapidshare.com/files/242774045/LK.70.291.5CD.part15.rar
http://rapidshare.com/files/242774059/LK.70.291.5CD.part02.rar
http://rapidshare.com/files/242774069/LK.70.291.5CD.part07.rar
http://rapidshare.com/files/242778449/LK.70.291.5CD.part43.rar
http://rapidshare.com/files/242778452/LK.70.291.5CD.part53.rar
http://rapidshare.com/files/242778453/LK.70.291.5CD.part47.rar
http://rapidshare.com/files/242778456/LK.70.291.5CD.part40.rar
http://rapidshare.com/files/242778457/LK.70.291.5CD.part33.rar
http://rapidshare.com/files/242778460/LK.70.291.5CD.part45.rar
http://rapidshare.com/files/242778465/LK.70.291.5CD.part48.rar
http://rapidshare.com/files/242778468/LK.70.291.5CD.part51.rar
http://rapidshare.com/files/242778472/LK.70.291.5CD.part36.rar
http://rapidshare.com/files/242778478/LK.70.291.5CD.part55.rar
http://rapidshare.com/files/242778482/LK.70.291.5CD.part50.rar
http://rapidshare.com/files/242778490/LK.70.291.5CD.part54.rar
http://rapidshare.com/files/242778492/LK.70.291.5CD.part41.rar
http://rapidshare.com/files/242778495/LK.70.291.5CD.part37.rar
http://rapidshare.com/files/242778503/LK.70.291.5CD.part31.rar
http://rapidshare.com/files/242778504/LK.70.291.5CD.part44.rar
http://rapidshare.com/files/242778505/LK.70.291.5CD.part46.rar
http://rapidshare.com/files/242778506/LK.70.291.5CD.part34.rar
http://rapidshare.com/files/242778509/LK.70.291.5CD.part32.rar
http://rapidshare.com/files/242778512/LK.70.291.5CD.part42.rar
http://rapidshare.com/files/242778514/LK.70.291.5CD.part52.rar
http://rapidshare.com/files/242778516/LK.70.291.5CD.part49.rar
http://rapidshare.com/files/242778536/LK.70.291.5CD.part38.rar
http://rapidshare.com/files/242778540/LK.70.291.5CD.part35.rar
http://rapidshare.com/files/242778544/LK.70.291.5CD.part39.rar

Mastering Windows SharePoint Services 3.0

Mastering Windows SharePoint Services 3.0

Mastering Windows SharePoint Services 3.0

Windows SharePoint Services (WSS) 3.0 is the latest version of the collaboration tool found in Windows Server 2003 R2—a feature-rich product that can be deployed to help you manage and improve information-sharing across your company’s network. WSS 3.0 is also the underlying technology of Microsoft Office SharePoint Server (MOSS) 2007.

Now with this comprehensive book as your point-by-point guide, you’ll go under the hood of WSS 3.0 and discover how to make it easy to share documents, track tasks, create common workspaces where teams can work collectively, set up surveys and discussion groups, and more.

The book provides step-by-step coverage of what system administrators need to know, including essential techniques for site creation, administration, customization, security, and disaster recovery—plus pages of detailed, real-world examples. You’ll also find practical steps for migrating from version 2.0 to 3.0.



D0wn10ad

Mirr0r

Expert One-on-One Visual Basic 2005 Database Programming

Expert One-on-One Visual Basic 2005 Database Programming

Expert One-on-One Visual Basic 2005 Database Programming

Product Description
Are you hesitant to migrate to Visual Studio(r) 2005? Maybe you’re ready to upgrade to Visual Basic 2005 but feel a bit overwhelmed by ADO.NET 2.0 and the Visual Data Tools of this new release. In this hands-on guide, I’ll share with you the best practices, the latest features, and advanced data management techniques with Visual Basic 2005 and SQL Server or SQL Server Express 2005. Plus, I’ll incorporate simple to moderately complex project examples that feature real-world, database front-end applications with Windows and Web forms.

First, I’ll begin with ADO.NET 2.0 basics, then I’ll move on to designing and programming smart clients with typed DataSets as their data sources. Gradually, I’ll walk you through using DataSource, GridView, and DetailsView Web controls. Finally, I’ll demonstrate how to take advantage of the new T-SQL extensions, in-process Web services, and notifications.



D0wn10ad
Mirr0r

Real-Time Agility: The Harmony/ESW Method for Real-Time and Embedded Systems Development

Real-Time Agility: The Harmony/ESW Method for Real-Time and Embedded Systems Development

Real-Time Agility: The Harmony/ESW Method for Real-Time and Embedded Systems Development

Real-time and embedded systems face the same challenges as traditional software development: shrinking budgets and shorter timeframes. However, these systems can be even more difficult to successfully develop due to additional requirements for timeliness, safety, high reliability, minimal resource usage, and, in some cases, the need to support rigorous industry standards.

In Real-Time Agility, leading embedded-systems consultant Bruce Powel Douglass reveals how to leverage the best practices of agile development to address all these challenges. Douglass introduces the Harmony process: a proven, start-to-finish approach to software development that can reduce costs, save time, and eliminate potential defects.

Replete with examples, this book provides an ideal tutorial in agile methods for real-time and embedded-systems developers. It also serves as an invaluable reference guide “in the heat of battle” for developers working to advance projects, both large and small.



D0wn10ad
Mirr0r

Artificial Intelligence in Education: Building Technology Rich Learning Contexts that Work

Artificial Intelligence in Education: Building Technology Rich Learning Contexts that Work

Artificial Intelligence in Education: Building Technology Rich Learning Contexts that Work

Product Description
The nature of technology has changed since Artificial Intelligence in Education (AIED) was conceptualised as a research community and Interactive Learning Environments were initially developed. Technology is smaller, more mobile, networked, pervasive and often ubiquitous as well as being provided by the standard desktop PC. This creates the potential for technology supported learning wherever and whenever learners need and want it. However, in order to take advantage of this potential for greater flexibility we need to understand and model learners and the contexts with which they interact in a manner that enables us to design, deploy and evaluate technology to most effectively support learning across multiple locations, subjects and times. The AIED community has much to contribute to this endeavour. This publication contains papers, posters and tutorials from the 2007 Artificial Intelligence in Education conference in Los Angeles, CA, USA.



D0wn10ad
Mirr0r
This site does not store any files on its server.We only index and link to content provided by other sites. In case of any query/objection regarding copyright or piracy, please inform us at youzhny197@gmail.com, we will immediately respond to you.