<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Intelligentedu &#187; Free Computer and I.T. Books</title>
	<atom:link href="http://www.intelligentedu.com/blogs/post/category/free_computer_books/feed" rel="self" type="application/rss+xml" />
	<link>http://www.intelligentedu.com/blogs</link>
	<description>Freely available computer and IT training, tutorials, books and ebooks on the web</description>
	<lastBuildDate>Wed, 09 Mar 2011 05:06:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Programming in Java Online Textbook</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4706/programming-in-java-online-textbook</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4706/programming-in-java-online-textbook#comments</comments>
		<pubDate>Mon, 07 Mar 2011 04:31:46 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Best New Free Computer IT Training Tutorial Resources]]></category>
		<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4706</guid>
		<description><![CDATA[Here is another online programming textbook from Princeton, Introduction to Programming in Java. It teaches the classic elements of programming, using an "objects-in-the-middle" approach that emphasizes data abstraction. The author uses specific applications, taken from fields ranging from materials science to genomics to astrophysics to internet commerce, to teach and demonstrate the programming concepts and [...]]]></description>
			<content:encoded><![CDATA[<p>Here is another online programming textbook from Princeton,
<b><a href="http://introcs.cs.princeton.edu/home/">Introduction to
Programming in Java</a></b>. It teaches the classic elements of
programming, using an "objects-in-the-middle" approach that emphasizes
data abstraction. The author uses specific applications,
taken from fields ranging from materials science to genomics to
astrophysics
to internet commerce, to teach and demonstrate the programming concepts
and techniques presented.
Also available are hundreds of easily downloadable
<a href="http://introcs.cs.princeton.edu/code">Java programs</a> and
<a href="http://introcs.cs.princeton.edu/data">real-world data sets</a>.
<br />
<br />
<br />
<a href="http://introcs.cs.princeton.edu/10elements">Chapter 1:
Elements of Programming</a>
<br />
introduces variables; assignment statements; built-in types of data;
conditionals and loops; arrays; and input/output, including graphics
and sound. <br />
<a href="http://introcs.cs.princeton.edu/20functions"><br />
Chapter 2: Functions</a> <br />
introduces
modular programming.
We stress the fundamental idea of dividing a program into components
that
can be independently debugged, maintained, and reused. <br />
<a href="http://introcs.cs.princeton.edu/30oop"><br />
Chapter 3: Object-Oriented Programming</a>
<br />
introduces data abstraction. We emphasize the concept of a
data type and its implementation using Java's class mechanism.
<br />
<a href="http://introcs.cs.princeton.edu/40algorithms"><br />
Chapter 4: Algorithms and Data Structures</a>
<br />
introduces classical algorithms for sorting and searching, and
fundamental data structures, including stacks, queues, and symbol
tables.
<br />
<br />
To get started.<br />
Here are instructions for installing a Java programming environment on
your
<a href="http://introcs.cs.princeton.edu/11hello/mac.html">Mac OS X</a>,
<a href="http://introcs.cs.princeton.edu/11hello/windows.html">Windows</a>,
or
<a href="http://introcs.cs.princeton.edu/11hello/linux.html">Linux</a>
computer.
<br />
<br />
Full programming model.<br />
Also provided are <a href="http://introcs.cs.princeton.edu/stdlib">I/O
libraries</a> for reading and writing text
and binary data, drawing graphics, and producing sound. <br />
<br />
<br />
Here are <b><a href="http://introcs.cs.princeton.edu/lectures/">Lecture
Slides and Demos</a></b> that accompany this textbook,
An Introduction to Programming in Java:<br />
<br />
<u>Elements of Programming</u>:<br />
<a href="http://introcs.cs.princeton.edu/11hello">1.1</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/11hello-2x2.pdf">Your
First Program</a>
<br />
<a href="http://introcs.cs.princeton.edu/12types">1.2</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/12types-2x2.pdf">Built-In
Types of Data</a><br />
<a href="http://introcs.cs.princeton.edu/13flow">1.3</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/13flow-2x2.pdf">Conditionals
and Loops</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/13demo-while.pps">While
loop</a><br />
<a href="http://introcs.cs.princeton.edu/14array">1.4</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/14array-2x2.pdf">Arrays</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/14demo-shuffle.pps">Shuffle</a><br />
<a href="http://introcs.cs.princeton.edu/15inout">1.5</a>&nbsp;&nbsp;<a
href="http://introcs.cs.princeton.edu/lectures/15inout-2x2.pdf">Input
and Output</a><br />
<a href="http://introcs.cs.princeton.edu/16pagerank">1.6</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/16pagerank-2x2.pdf">Random
Surfer</a><br />
<br />
<u>Functions</u>:<br />
<a href="http://introcs.cs.princeton.edu/21function">2.1</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/21function-2x2.pdf">Functions</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/21demo-function.pps">Function
call</a>
<br />
<a href="http://introcs.cs.princeton.edu/22library">2.2</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/22library-2x2.pdf">Libraries
and Clients</a><br />
<a href="http://introcs.cs.princeton.edu/23recursion">2.3</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/23recursion-2x2.pdf">Recursion</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/23demo-factorial.pps">Factorial</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/23demo-gcd.pps">Euclid</a>&nbsp;
<a href="http://mazeworks.com/hanoi/index.htm">Towers of Hanoi</a><br />
<a href="http://introcs.cs.princeton.edu/24modular">2.4</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/24percolation-2x2.pdf">Percolation</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/24demo-dfs.pps">Depth-first
search</a>
<br />
<br />
<u>Object-Oriented Programming</u>:<br />
<a href="http://introcs.cs.princeton.edu/31datatype">3.1</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/31datatype-2x2.pdf">Data
Types</a><br />
<a href="http://introcs.cs.princeton.edu/32datatype">3.2</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/32datatype-2x2.pdf">Creating
Data Types</a>&nbsp; <a
href="http://www.cs.princeton.edu/%7Ewayne/mandel/Mandel.html">Mandelbrot
explorer</a>&nbsp;
<a href="http://www.jonathancoulton.com/songdetails/Mandelbrot%20Set">Mandelbrot
song</a><br />
<a href="http://introcs.cs.princeton.edu/33design">3.3</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/33design-2x2.pdf">Designing
Data Types</a><br />
<a href="http://introcs.cs.princeton.edu/34nbody">3.4</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/34nbody-2x2.pdf">N-Body
Simulation</a><br />
<a href="http://introcs.cs.princeton.edu/35purple">3.5</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/35purple-2x2.pdf">Purple
America</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/35demo-usa.pps">US
Elections (1960 - 2008)</a>
<br />
<br />
<u>Algorithms and Data Structures</u>:<br />
<a href="http://introcs.cs.princeton.edu/41analysis">4.1</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/41analysis-2x2.pdf">Performance</a><br />
<a href="http://introcs.cs.princeton.edu/42sort">4.2</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/42sort-2x2.pdf">Sorting
and Searching</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/42demo-bsearch.pps">Binary
search</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/42demo-merge.pps">Merge</a><br />
<a href="http://introcs.cs.princeton.edu/43stack">4.3</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/43stack-2x2.pdf">Stacks
and Queues</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/43demo-list.pps">Linked
list</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/43demo-iteration.pps">Iteration</a><br />
<a href="http://introcs.cs.princeton.edu/44st">4.4</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/44st-2x2.pdf">Symbol
Tables</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/44demo-inorder.pps">Inorder</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/introalgsds/GrowingTree/">GrowingTree</a><br />
<a href="http://introcs.cs.princeton.edu/45graph">4.5</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/45graph-2x2.pdf">Small-World
Phenomenon</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/45demo-bfs.pps">BFS</a>&nbsp;
<a href="http://oracleofbacon.org/">Oracle of Kevin Bacon</a>
<br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4706&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4706/programming-in-java-online-textbook/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer Science Online Book</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4702/computer-science-online-book</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4702/computer-science-online-book#comments</comments>
		<pubDate>Sat, 05 Mar 2011 00:49:40 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Best New Free Computer IT Training Tutorial Resources]]></category>
		<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[computer programming]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[programming references]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4702</guid>
		<description><![CDATA[This free online computer science book, Introduction to Computer Science (at Princeton University), is an interdisciplinary approach that teaches all of the classic elements of programming, using an "objects-in-the-middle" approach that emphasizes data abstraction. The book focuses four areas of computer science: programming, machine architecture, theory, and systems. The programming topics and concepts are presented [...]]]></description>
			<content:encoded><![CDATA[<p>This free online computer science book, <b><a
href="http://introcs.cs.princeton.edu/cs/">Introduction to Computer
Science</a></b> (at Princeton University), is an interdisciplinary
approach that teaches all of the classic elements of
programming, using an "objects-in-the-middle" approach that emphasizes
data abstraction. The book focuses four
areas of computer science: programming, machine architecture, theory,
and systems.
The programming topics and concepts are presented by demonstrating
specific applications,
taken from fields ranging from materials science to genomics to
astrophysics
to internet commerce. Also available is the <a
href="http://introcs.cs.princeton.edu/list.html">program code</a>.
You can use this online book to learn or increase your programming
skills. <a href="http://introcs.cs.princeton.edu/11hello">Section 1.1</a>
contains
detailed instructions for installing a Java programming environment
on your system.<br />
<br />
<br />
<a href="http://introcs.cs.princeton.edu/10elements">Chapter 1:
Elements of Programming</a>
<br />
introduces variables, assignment statements, built-in types of data,
conditionals and loops, arrays, and input/output, including graphics
and sound. <br />
<br />
<a href="http://introcs.cs.princeton.edu/20functions">Chapter 2:
Functions</a> <br />
introduces
modular programming.
We stress the fundamental idea of dividing a program into components
that
can be independently debugged, maintained, and reused. <br />
<br />
<a href="http://introcs.cs.princeton.edu/30oop">Chapter 3: Object
Oriented Programming</a>
<br />
introduces data abstraction. We emphasize the concept of a
data type and its implementation using Java's class mechanism.
<br />
<br />
<a href="http://introcs.cs.princeton.edu/40algorithms">Chapter 4:
Algorithms and Data Structures</a> <br />
introduces classical algorithms for sorting and searching and
fundamental data structures, including stacks, queues, and symbol
tables.
<br />
<br />
<a href="http://introcs.cs.princeton.edu/50machine">Chapter 5: A
Computing Machine</a>
<br />
introduces an imaginary machine that is similar to real computers.
We specify the machine in full detail and consider machine-language
programs.
<br />
<br />
<a href="http://introcs.cs.princeton.edu/60circuits">Chapter 6: Circuits</a>
<br />
introduces circuits and logical design, culminating in a description of
how a machine might be built from the ground up.
<br />
<br />
<a href="http://introcs.cs.princeton.edu/70theory">Chapter 7: Theory of
Computation</a>
<br />
introduces the scientific discipline concerned with understanding
(efficient) computational phenomena, whether it be man-made,
in nature, or imaginary.
<br />
<br />
<a href="http://introcs.cs.princeton.edu/80systems">Chapter 8: Systems</a>
<br />
introduces the basic components of computer systems that support
programming: compilers, operating systems, networks,
and application systems.
<br />
<br />
<a href="http://introcs.cs.princeton.edu/90scientific">Chapter 9:
Scientific Computation</a>
<br />
introduces some of the most important algorithms that play crucial
roles in
our computational infrastructure, including numerical integration,
matrix computation, data analysis, and Monte Carlo simulation.
<br />
<br /><br />
Here are <a href="http://introcs.cs.princeton.edu/lectures/">Lecture
Slides</a> that accompany this Computer Science book.
<br />
<br />
<u>A Computing Machine</u>:<br />
<a href="http://introcs.cs.princeton.edu/00prologue">0</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/00prologue-2x2.pdf">Prologue</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/00demo-lfsr.pps">LFSR</a>
<br />
<a href="http://introcs.cs.princeton.edu/51data">5.1</a> - <a
href="http://introcs.cs.princeton.edu/53isa">5.3</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/5toy1-2x2.pdf">A von
Neumann Machine</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/xtoy/">Visual X-TOY</a><br />
<a href="http://introcs.cs.princeton.edu/54programming">5.4</a> -
<a href="http://introcs.cs.princeton.edu/55simulator">5.5</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/5toy2-2x2.pdf">Machine
Language Programming</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/5toy-crazy8.pps">Crazy
8</a>
<br />
<br />
<u>Building a Computer</u>:<br />
<a href="http://introcs.cs.princeton.edu/61combinational">6.1</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/61boolean-2x2.pdf">Boolean
Logic and Gates</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/fluid-computer.swf">Hydraulic
computer</a><br />
<a href="http://introcs.cs.princeton.edu/lectures/63sequential.pdf">Sequential
Circuits</a><br />
<a href="http://introcs.cs.princeton.edu/lectures/65architecture.pdf">
TOY Machine Architecture
</a><br />
&nbsp;
<br />
<u>Theory of Computation</u>:<br />
<a href="http://introcs.cs.princeton.edu/71language">7.1</a> - <a
href="http://introcs.cs.princeton.edu/73fsa">7.3</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/7regular-2x2.pdf">Regular
Expressions and DFAs</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/73demo-dfa.pps">DFA</a><br />
<a href="http://introcs.cs.princeton.edu/74turing">7.4</a> - <a
href="http://introcs.cs.princeton.edu/76computability">7.6</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/lectures/7turing-2x2.pdf">Turing
Machines</a>&nbsp; <a
href="http://introcs.cs.princeton.edu/turing/turing.jnlp">Turing
machine simulator</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/74turing-add.pps">Adder</a><br />
<a href="http://introcs.cs.princeton.edu/77intractability">7.7</a>&nbsp;
<a
href="http://introcs.cs.princeton.edu/lectures/77intractability-2x2.pdf">Intractability</a><br />
<a href="http://introcs.cs.princeton.edu/78crypto">7.8</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/78crypto.pdf">Cryptography</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/crypto-history.swf">Crypto
history</a><br />
<br />
<u>Systems</u>:
<br />
<a href="http://introcs.cs.princeton.edu/84network">8.4</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/84network.pdf">Networking</a>
<br />
<br />
<u>Scientific Computing</u>:<br />
<a href="http://introcs.cs.princeton.edu/91float">9.1</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/9scientific-2x2.pdf">Floating
Point</a>
<br />
<a href="http://introcs.cs.princeton.edu/98simulation">9.8</a>&nbsp;
<a href="http://introcs.cs.princeton.edu/lectures/98ising.pdf">Monte
Carlo Simulation</a>
<br /><br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4702&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4702/computer-science-online-book/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Algorithms Online Book and Course Lecture Slides</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4699/algorithms-online-book-and-course-lecture-slides</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4699/algorithms-online-book-and-course-lecture-slides#comments</comments>
		<pubDate>Thu, 03 Mar 2011 23:59:51 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Best New Free Computer IT Training Tutorial Resources]]></category>
		<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[Algorithms]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4699</guid>
		<description><![CDATA[Here is an online algorithms textbook, Algorithms, 4th Edition, hosted by Princeton University. It presents and covers all of the fundamental knowledge you need to understand and apply when using algorithms and data structures in your programming and application development. These are&#160;the most important algorithms and data structures in use today. The book uses specific [...]]]></description>
			<content:encoded><![CDATA[<p>Here is an online algorithms textbook, 

<b><a href="http://algs4.cs.princeton.edu/home/">Algorithms, 4th Edition</a></b>,
hosted by Princeton University. It presents and covers all of the
fundamental knowledge you need to understand and apply when using
algorithms and data structures in your programming and application
development. These are&nbsp;the most important algorithms and data
structures
in use today. The book uses specific applications to science,
engineering, and industry to facilitate the concepts. Here is a list of
the <a href="http://algs4.cs.princeton.edu/algorithms">
algorithms and clients</a> in this textbook.<br /><br /><u>Algorithm Book Chapters</u>:<br /><br /> <a href="http://algs4.cs.princeton.edu/10fundamentals">Chapter 1: Fundamentals</a>
introduces a scientific and engineering basis for comparing algorithms
and making predictions. It also includes our programming model.
<br /><br /> <a href="http://algs4.cs.princeton.edu/20sorting">Chapter 2: Sorting</a>
considers several classic sorting algorithms, including 
insertion sort, mergesort, and quicksort. It also includes a binary
heap implementation of a priority queue.
<br /><br /> <a href="http://algs4.cs.princeton.edu/30searching">Chapter 3: Searching</a>
describes several classic symbol table implementations, including 
binary search trees, red-black trees, and hash tables.
<br /><br /> <a href="http://algs4.cs.princeton.edu/40graphs">Chapter 4: Graphs</a>
surveys the most important graph processing problems, including
depth-first search, breadth-first search, minimum spanning trees,
and shortest paths.
<br /><br /> <a href="http://algs4.cs.princeton.edu/50strings">Chapter 5: Strings</a>
investigates specialized algorithms for string processing,
including string sorting, substring search, tries,
regular expressions, and data compression.
<br /><br /> <a href="http://algs4.cs.princeton.edu/60context">Chapter 6: Context</a>
highlights connections to 
systems programming, scientific computing, commercial applications,
operations research, and intractability.
<br /><br /><br />Also, here are the <b><a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures.html">Lecture Slides and Notes for Princeton's&nbsp;Algorithms and Data Structures course</a></b>.<br /><br />These algorithm course lectures target&nbsp;algorithms for
sorting, searching, and string processing, as well, including geometric and
graph algorithms. They include information on developing
implementations, understanding their performance characteristics, and
estimating their potential effectiveness in applications.<br /><br /><u>Algorithm Lectures</u>:<br /><br />
1. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/01Overview-2x2.pdf">Union-find
</a>
<br />2. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/02Analysis-2x2.pdf">Analysis of algorithms
</a>
<br />3. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/03Stacks-2x2.pdf">Stacks and queues
</a>
<br />4. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/04ElementarySort-2x2.pdf">Elementary sorts</a><br />5. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/05EfficientSorts-2x2.pdf">Efficient sorts</a><br />6. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/06AdvTopicsSorting-2x2.pdf">Advanced topics in sorting</a><br />7. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/07PriorityQueues-2x2.pdf">Priority queues</a><br />8. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/08SymbolTables-2x2.pdf">Elementary symbol tables</a><br />9. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/09BinarySearchTrees-2x2.pdf">Binary search trees</a>
<br />10. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/10BalancedTrees-2x2.pdf">Balanced BSTs
</a>
<br />11. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/11Hashing-2x2.pdf">Hashing
</a>
<br />13. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/13UndirectedGraphs-2x2.pdf">Undirected graphs
</a>
<br />14. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/14DirectedGraphs-2x2.pdf">Directed graphs</a><br />15. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/15MST-2x2.pdf">Minimum spanning trees</a><br />16. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/16ShortestPaths-2x2.pdf">Shortest paths</a><br />17. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/17RadixSorts-2x2.pdf">Radix sorts</a><br />18. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/18Tries-2x2.pdf">Tries</a><br />19. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/19PatternMatching-2x2.pdf">Pattern matching</a> &nbsp; <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/demo/63demo-dfa.ppt">DFA</a> &nbsp;
<a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/demo/63demo-kmp.ppt">KMP</a> &nbsp;
<br />
20. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/20Compression-2x2.pdf">Data compression</a> &nbsp; <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/demo/65demo-huffman.ppt">Huffman*</a>
&nbsp;
<a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/demo/65demo-lzw.ppt">LZW*</a>
<br />
21. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/21Geometric-2x2.pdf">Geometric algorithms</a> &nbsp; <a href="http://www.cse.unsw.edu.au/%7Elambert/java/3d/hull.html">convex hulls</a>&nbsp;
<br />
22. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/22GeometricSearch-2x2.pdf">Geometric search
</a>
&nbsp;&nbsp; <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/demo/gishur/">sweep line intersection</a>
<br />
23. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/23Reductions-2x2.pdf">Reductions</a><br />24. <a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/24CombinatorialSearch-2x2.pdf">Combinatorial search</a> &nbsp; The Longest Path [<a href="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/longest-path.mp3">mp3</a>]
<br /><br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4699&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4699/algorithms-online-book-and-course-lecture-slides/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://www.cs.princeton.edu/courses/archive/spring08/cos226/lectures/longest-path.mp3" length="1681920" type="audio/mpeg" />
		</item>
		<item>
		<title>3 sites with Computer and Programming eBooks</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4696/3-sites-with-computer-and-programming-ebooks</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4696/3-sites-with-computer-and-programming-ebooks#comments</comments>
		<pubDate>Thu, 24 Feb 2011 04:58:10 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[dotNET]]></category>
		<category><![CDATA[free programming ebooks]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[vbscript]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4696</guid>
		<description><![CDATA[Here are 3 sites providing freely available computer and programming ebooks for web application development, dotNET, Python programming, Ajax, Javascript, PHP, HTML, and C programming. ebooks covering: ASPdotNET, C# and dotNET programming, Office applications, Oracle PL-SQL, SQL Server 2008, Windows Presentation Foundation (WPF), Windows Workflow (WF), Windows Communication Foundation. ebooks on HTML Actionscript, Adobe Air, [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <b>3 sites providing freely available computer and
programming ebooks</b> for web application development, dotNET, Python
programming, Ajax, Javascript, PHP, HTML, and C programming.<br />
<br />
<a href="http://yah2008.contiki.co.il/downloads/Books/"></a><br />
<a href="http://yah2008.contiki.co.il/downloads/Books/">ebooks
covering: ASPdotNET, C# and dotNET programming, Office
applications, Oracle PL-SQL, SQL Server 2008, Windows Presentation
Foundation (WPF), Windows Workflow (WF), Windows Communication
Foundation.</a><br />
<br />
<br />
<a href="http://www.rencross.co.uk/ebookshelf/Programming/">ebooks on
HTML Actionscript, Adobe Air, PHP, Python, C programming, and VBScript</a>
<br />
Update March 7, 2011: this site is no longer available. You can try its <a href="http://webcache.googleusercontent.com/search?q=cache:IX4NNqjJCAUJ:www.rencross.co.uk/ebookshelf/Programming/+www.rencross.co.uk/ebookshelf&#038;cd=5&#038;hl=en&#038;ct=clnk&#038;gl=us&#038;source=www.google.com">google cache</a>.
<br />
<br />
<br />
<a href="http://www.baghaali.com/ebook/programming/python/">5 Python
ebooks</a><br />
<a href="http://www.baghaali.com/ebook/programming/ruby/">1 Ruby ebook</a><br />
<a href="http://www.baghaali.com/ebook/programming/web/">Ajax and Javascript (3), CSS (1), PHP with Flash (1), E-Commerce (2), TCP-IP (1)</a><br />
<a href="http://www.baghaali.com/ebook/programming/web/"></a><br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4696&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4696/3-sites-with-computer-and-programming-ebooks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1000+ Computer and Programming eBooks</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4694/1000-computer-and-programming-ebooks</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4694/1000-computer-and-programming-ebooks#comments</comments>
		<pubDate>Sat, 19 Feb 2011 15:54:28 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[cryptography]]></category>
		<category><![CDATA[free programming ebooks]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Linux ebooks]]></category>
		<category><![CDATA[networking ebooks]]></category>
		<category><![CDATA[Solaris]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4694</guid>
		<description><![CDATA[Here is a site hosting well over 1000 computer and programming ebooks, covering many technical areas as seen in the links to the ebook categories below, all freely available. These ebooks will help you become a better developer or networking specialist, or learn how to use some important software. They also cover many topics for [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a site hosting well <b><a
href="http://dump.udderweb.com/Books/">over 1000 computer and
programming ebooks</a></b>, covering many technical areas as seen in
the links to the ebook categories below, all freely available. These
ebooks will help you become a better developer or networking
specialist, or learn how to use some important software. They also
cover many topics for Linux, Unix, and hardware.<br />
<br />
<br />
<u>eBook Categories</u>:<br />
<br />
<a
href="http://dump.udderweb.com/Books/software/operating_systems/linux/">35
Linux eBooks</a><br />
<br />
<a href="http://dump.udderweb.com/Books/software/general/">2 Database
eBooks</a><br />
<br />
<a href="http://dump.udderweb.com/Books/software/operating_systems/">Unix,
Solaris, FreeBSD, OpenBSD eBooks</a><br />
<br />
<a href="http://dump.udderweb.com/Books/hardware/">Computer Hardware
eBooks</a><br />
<br />
<a href="http://dump.udderweb.com/Books/unsorted/">1100 Unsorted
Computer and Programming eBooks</a><br />
<br />
<a href="http://dump.udderweb.com/Books/cryptography/">Cryptography</a><br />
<br />
<a href="http://dump.udderweb.com/Books/programming/">Programming eBooks</a>:<br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/asp/">asp</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/assembly/">assembly</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/bash/">bash</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/c++/">c++</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/c/">c</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/general/">general</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/html-css/">html-css</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/java/">java</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/programming/javascript/">javascript</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/palm/">palm</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/perl/">perl</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/php/">php</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/python/">python</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/ruby/">ruby</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/vb/">vb</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/programming/xml/">xml</a><br />
<br />
<a href="http://dump.udderweb.com/Books/networking/">Networking eBooks</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/networking/firewalls/">firewalls</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/networking/security/">security</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/networking/voip/">voip</a><br />
&nbsp;- <a href="http://dump.udderweb.com/Books/networking/wireless/">wireless</a><br />
<br />
<a href="http://dump.udderweb.com/Books/software/open-source/">eBooks
on Open Source Applications</a>:<br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/apache/">apache</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/bind/">bind</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/cvs/">cvs</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/firefox/">firefox</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/mysql/">mysql</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/nagios/">nagios</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/openswan/">openswan</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/openvpn/">openvpn</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/pgp-gpg/">pgp-gpg</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/snort/">snort</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/ssh/">ssh</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/svn/">svn</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/vi/">vi</a><br />
&nbsp;- <a
href="http://dump.udderweb.com/Books/software/open-source/wireshark/">wireshark</a><br />
<br />
<a href="http://dump.udderweb.com/Books/software/propriatary/">eBooks
on proprietary software apps</a><br /><br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4694&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4694/1000-computer-and-programming-ebooks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>15 PHP eBooks</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4692/15-php-ebooks</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4692/15-php-ebooks#comments</comments>
		<pubDate>Fri, 18 Feb 2011 04:46:40 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4692</guid>
		<description><![CDATA[If you need help with coding PHP on your web pages and apps or if you need some handy PHP references, here is a site that hosts 15 PHP ebooks (some with MySQL). These ebooks are in pdf format.]]></description>
			<content:encoded><![CDATA[<p>If you need help with coding PHP on your web pages and apps or if you need some handy PHP references, here is a
site that hosts <b><a href="http://kralik.kbx.cz/ebook/php/">15 PHP
ebooks</a></b> (some with MySQL). These ebooks are in pdf format.<br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4692&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4692/15-php-ebooks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>171 C# and dotNET ebooks</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4676/171-c-and-dotnet-ebooks</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4676/171-c-and-dotnet-ebooks#comments</comments>
		<pubDate>Mon, 14 Feb 2011 02:43:06 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C Sharp Tutorials]]></category>
		<category><![CDATA[free programming ebooks]]></category>
		<category><![CDATA[VBdotNET]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4676</guid>
		<description><![CDATA[Here are 171 C# and . NET ebooks, along with some covering VB .NET and ASP .NET. These will help you learn and become a better C Sharp and dotNET developer.]]></description>
			<content:encoded><![CDATA[<p>Here are <b><a
 href="http://downloads.expertretail.com/ebooks/">171 C# and
. NET ebooks</a></b>, along with some covering VB .NET and
ASP .NET. These will help you learn and become a better C Sharp and
dotNET developer.<br /><br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4676&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4676/171-c-and-dotnet-ebooks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3 Searches for Computer and Programming eBooks</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4666/3-searches-for-computer-and-programming-ebooks</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4666/3-searches-for-computer-and-programming-ebooks#comments</comments>
		<pubDate>Sat, 05 Feb 2011 03:46:02 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[free ebooks]]></category>
		<category><![CDATA[free programming ebooks]]></category>
		<category><![CDATA[programming references]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4666</guid>
		<description><![CDATA[Here are 3 search sites that will help you find the computer and programming training ebooks and documents you're looking for. The first one, RoyalSearcher, searches rapidshare.com and uploading.com, and the other two search rapidshare only. I have also linked some search result pages for popular technologies, to help you find what you want to [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <b>3 search sites</b> that will help you find the
<b>computer and programming training ebooks and documents</b>
you're looking for. The first one, RoyalSearcher, searches
<a href="http://rapidshare.com" title="http://rapidshare.com" target="_blank">rapidshare.com</a> and <a href="http://uploading.com" title="http://uploading.com" target="_blank">uploading.com</a>, and the other two search rapidshare
only. I have also linked some search result pages for popular
technologies, to help you find what you want to learn more about.<br />
<br />
<a href="http://royalsearcher.com/"><br />
<b>RoyalSearcher</b></a><br />
<form action="http://royalsearcher.com/indexes/url_code/"
 method="post" id="f_search" name="f_search"
 target="_blank">
  <br />
  <input maxlength="50" class="input_search"
 id="suggest" name="search_word"><br />
  <select name="serv" class="my_select"
 id="select_source">
  <option value="0">All</option>
  <option value="1">rapidshare.com</option>
  <option value="2">uploading.com</option>
  </select>
  <br />
  <input value="Search" type="submit"></form>
<br />
Search results from RoyalSearcher:<br />
<br />
&nbsp;- <a href="http://royalsearcher.com/search/ajax">Ajax</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/javascript">JavaScript</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/gwt">GWT</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/python">Python</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/java">Java</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/jsp">JSP</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/php">PHP</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/c-plus-plus">C++</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/csharp">C#</a>
&nbsp;<a href="http://royalsearcher.com/search/c-sharp">C
Sharp</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/dotnet">dotNET</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/asp-net">ASP
.NET</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/ado-net">ADO
.NET</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/flash">Flash</a><br />
&nbsp;- <a
 href="http://royalsearcher.com/search/perl-programming">Perl</a><br />
&nbsp;- <a
 href="http://royalsearcher.com/search/game-programming">Game
programming</a><br />
&nbsp;- <a
 href="http://royalsearcher.com/search/ruby-programming">Ruby</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/ruby-on-rails">Ruby
On Rails</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/sap">SAP</a><br />
&nbsp;- <a
 href="http://royalsearcher.com/search/iphone-development">iPhone</a><br />
&nbsp;- <a
 href="http://royalsearcher.com/search/mobile-programming">Mobile
programming</a><br />
&nbsp;- <a
 href="http://royalsearcher.com/search/oracle-database">Oracle
Database</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/mysql">MySQL</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/sql">SQL</a><br />
&nbsp;- <a href="http://royalsearcher.com/search/sql-server">SQL
Server</a><br />
<br />
<br />
<b><a href="http://www.rapidmore.com/">RapidMore</a></b><br />
<br />
<form method="get"
 action="http://www.rapidmore.com/rapidshare.php" id="ngsrch"
 target="_blank"> <input name="q" tabindex="3"
 id="ng" action="sug.php" autocomplete="off"
 columns="2" capture="0" delay="200" maxlength="50"
 type="text"><br />
  <input tabindex="4" value="Search" id="s-go"
 type="submit"> </form>
<br />
Search results from RapidMore:<br />
<br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=ajax">Ajax</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=JavaScript">JavaScript</a><br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=GWT">GWT</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=Python">Python</a><br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=Java">Java</a><br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=JSP">JSP</a><br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=PHP">PHP</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=C+programming">C
programming</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=csharp">C#</a>
&nbsp;<a href="http://www.rapidmore.com/rapidshare.php?q=C+Sharp">C
Sharp</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=dotNET">dotNET</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=ASP+NET">ASP
.NET</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=ADO+NET">ADO
.NET</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=Silverlight">Silverlight</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=Flash">Flash</a><br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=perl">Perl</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=Game+programming">Game
programming</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=ruby+programming">Ruby</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=Ruby+On+Rails">Ruby
On Rails</a><br />
&nbsp;-&nbsp;<a
 href="http://www.rapidmore.com/rapidshare.php?q=SAP" rel="child">SAP</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=android+development">Android</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=iPhone+development">iPhone</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=Mobile+programming">Mobile
programming</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=ipod+programming">IPod</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=oracle+database">Oracle
Database</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=MySQL">MySQL</a><br />
&nbsp;- <a href="http://www.rapidmore.com/rapidshare.php?q=SQL">SQL</a><br />
&nbsp;- <a
 href="http://www.rapidmore.com/rapidshare.php?q=SQL+Server">SQL
Server</a><br />
<br />
<a href="http://ineedfile.com/"><br />
<b>INeedFile</b></a><br />
<br />
<form action="http://www.ineedfile.com/new_search.php"
 method="get" name="formt" id="search_f"
 target="_blank"><input name="q" id="q"
 autocomplete="off" maxlength="50" type="text"><br />
  <select title="File types" name="filetype" id="type">
  <option
 title=".doc .txt .rtf .pdf .djvu .odt .ott .sxw .stw .sdw .vor .html .htm .pdb .xm .psw"
 value="4" selected="selected">Docs</option>
  <option title="Any" value="0">All files</option>
  <option
 title=".a .ar .cpio .shar .tar .bz2 .F .gz .lzma .lzo .rz .z .Z .7z .ace .arc .alz .arj .cab .cpt .dar .dgc .dmg .gca .ice .j .jar .lzh .lza .lzx .partimage .pq6 .qda .rar .rk .sea .sit .sqk .tgz .tbz2 .uha .zip .zoo .zz"
 value="1">Archives</option>
  <option
 title=".mp3 .mp2 .mp1 .wma .mid .midi .rmi .kar .miz .cda .wav .voc .au .snd .aif .aiff .ogg .nsa"
 value="2">Audio</option>
  <option title=".mpg .mpeg .mp2 .m1v .m2v .avi .asf .avi .vmf .mov"
 value="3">Video</option>
  <option
 title=".iff .dwg .dxf .afx .brk .301 .cal .cals .gif .cgm .cmx .cdr .lbm .cut .eps .ai .ps .fpx .img .hgl .hpg .pgl .jpg .jif .jpeg .jp2 .j2c .jpc .jpx .kdc .pcd .kfx .lv .pic .pct .mac .drw .msp .dgn .ncr .pspimage .psp .psd .pbm .pdf .pgm .png .ppm .raw .svg .svgz .sct .ct .rgb .bw .rgba .sgi .ras .tif .tiff .tga .gem .clp .cur .rle .bmp .dib .wbmp .wbm .wpg .xbm .bm .xwd .wd .xpm .dcx .pcx"
 value="5">Pictures</option>
  <option title=".exe .com .bat .sh .class .msi" value="6">Aplications
  </option>
  <option title=".iso .img .mds .mdf .bwt .ccd .cdi .pdi .nrg .cue"
 value="7">CD, DVD</option>
  </select>
  <br />
  <input value="Search" id="search_b" type="submit">
</form>
<br />
Search results from INeedFile:<br />
<br />
&nbsp;- <a href="http://ineedfile.com/docs/ajax">Ajax</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/javascript">JavaScript</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/gwt">GWT</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/python">Python</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/java">Java</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/jsp">JSP</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/php">PHP</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/c-programming">C
programming</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/csharp">C#</a>
&nbsp;<a href="http://ineedfile.com/docs/c-sharp">C
Sharp</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/dotnet">dotNET</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/asp-net">ASP
.NET</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/ado-net">ADO
.NET</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/flash">Flash</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/perl">Perl</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/game-programming">Game
programming</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/ruby-programming">Ruby</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/ruby-on-rails">Ruby
On Rails</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/sap">SAP</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/android">Android</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/iphone">iPhone</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/ipod">IPod</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/oracle-database">Oracle
Database</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/mysql">MySQL</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/sql">SQL</a><br />
&nbsp;- <a href="http://ineedfile.com/docs/sql-server">SQL
Server</a><br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4666&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4666/3-searches-for-computer-and-programming-ebooks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer and Programming eBooks</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4657/computer-and-programming-ebooks</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4657/computer-and-programming-ebooks#comments</comments>
		<pubDate>Mon, 31 Jan 2011 05:53:25 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C Programming]]></category>
		<category><![CDATA[C++ Courses and Tutorials]]></category>
		<category><![CDATA[free programming books]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Linux ebooks]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[UML]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4657</guid>
		<description><![CDATA[Here many downloadable computer and programming ebooks, onlineweblibrary.com, in the areas listed and linked below. These will help you learn more about these programming technologies and topics. Most of them are in pdf format. Computer&#160;eBook Categories: &#160;- Ada &#160;- C and C++ programming &#160;- Flash&#160;- &#160;- General .NET &#160;- HTML &#160;- Java and JSP &#160;- [...]]]></description>
			<content:encoded><![CDATA[<p>Here many downloadable <b><a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/">computer
and programming ebooks</a></b>, <a href="http://onlineweblibrary.com" title="http://onlineweblibrary.com" target="_blank">onlineweblibrary.com</a>, in
the areas listed and linked below. These will help you learn more about
these programming technologies and topics. Most of them are in pdf
format.<br />
<br />
<br />
<u>Computer&nbsp;eBook Categories</u>:<br />
<br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/ADA/">Ada</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/C/">C
and C++ programming</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/FLASH/">Flash</a>&nbsp;-
<br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/GENERAL.NET/">General
.NET</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/HTML/">HTML</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/JAVAJSP/">Java
and JSP</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/JAVASCRIPT/">JavaScript</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/LINUX/">Linux</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/LISP/">Lisp</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/PHP&amp;MySQL1/">PHP
and MySQL</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/PYTHON/">Python</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/Perl/">Perl</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/RUBY/">Ruby</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/SQL/">SQL</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/SYSTEM%20ADMINISTRATION1/">System
Administration</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/UML/">UML</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/UNIX/">Unix</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/VISUAL%20BASICS1/">Visual
Basic</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/WEB%20DESIGN1/">Wed
Design</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/XML/">XML</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/asp.net/">ASP
.NET</a><br />
&nbsp;- <a
 href="http://www.onlineweblibrary.com/E-books/Ebook%20Progrmming/ipod/">iPod</a><br /><br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4657&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4657/computer-and-programming-ebooks/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>12 eBooks - Mobile, ASP .NET, C#, PHP, SQL Server</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4654/12-ebooks-mobile-asp-net-c-php-sql-server</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4654/12-ebooks-mobile-asp-net-c-php-sql-server#comments</comments>
		<pubDate>Sun, 30 Jan 2011 05:53:28 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[C Sharp Tutorials]]></category>
		<category><![CDATA[dotNET]]></category>
		<category><![CDATA[F Sharp]]></category>
		<category><![CDATA[free programming ebooks]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4654</guid>
		<description><![CDATA[Here are 12 programming ebooks as listed on a google search, covering mobile and iPhone app development, ASP .Net, C#, dotNET, F# &#160;and PHP programming, as well as SQL Server and MS Access. ebook topics: &#160;- Mobile Web Programming &#160;- iPad and iPhone Development &#160;- ASP .NET and Silverlight &#160;- ASP .NET and MVC 2 [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <b><a
 href="http://www.google.com/search?hl=en&amp;source=hp&amp;biw=1030&amp;bih=739&amp;q=site%3Ahttp%3A%2F%2Fwww.tahlildadeh.com%2FFiles%2F&amp;aq=f&amp;aqi=&amp;aql=&amp;oq=">12
programming ebooks</a></b> as listed on a google search,
covering mobile and iPhone app development, ASP .Net, C#, dotNET, F#
&nbsp;and PHP programming, as well as SQL Server and MS Access.<br />
<br />
<u><br />
ebook topics</u>:<br />
<br />
&nbsp;- Mobile Web Programming<br />
&nbsp;- iPad and iPhone Development<br />
&nbsp;- ASP .NET and Silverlight<br />
&nbsp;- ASP .NET and MVC 2<br />
&nbsp;- dotNET Application Programming<br />
&nbsp;- F# (F Sharp) Programming<br />
&nbsp;- ASP .NET and C# for .NET 4 Framework<br />
&nbsp;- Silverlight and C# Programming<br />
&nbsp;- PHP Programming<br />
&nbsp;- SQL Server and SQL Server 2008<br />
&nbsp;- Microsoft Access 2010<br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4654&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4654/12-ebooks-mobile-asp-net-c-php-sql-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 Android Programming Books</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4650/5-android-programming-books</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4650/5-android-programming-books#comments</comments>
		<pubDate>Fri, 28 Jan 2011 06:05:15 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Best New Free Computer IT Training Tutorial Resources]]></category>
		<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[Android]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4650</guid>
		<description><![CDATA[Here are 5 Android Programming books to help you learn how to develop and build Android mobile applications. Android is an open source platform built by Google that includes an operating system, middleware, and applications for the development of devices employing wireless communications. It is really a software platform, rather than just an OS, and [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <b>5 Android Programming books</b> to help you
learn how to develop and build Android mobile applications.<br />
<br />
Android is an open source platform built by Google that includes an
operating system, middleware, and applications for the development of
devices employing wireless communications. It is really a
software platform, rather than just an OS, and will probably be used in
the future in a much wider range of devices than just smart phones. In
practical terms, Android
is an application framework on top of Linux, which facilitates its
rapid deployment in many domains.&nbsp;Android is open source and a
majority of the source is
licensed under Apache2, allowing adopters to add additional proprietary
value in the Android source without source distribution requirements.
Also check out my previous post on some descriptive <a
 href="http://www.intelligentedu.com/blogs/post/best_new_training_sites/4632/8-android-development-guides-and-4-android-presentations">Android
developer guides and presentations</a>.<br />
<br />
<br />
<b><a href="http://commonsware.com/Android/Android-1_0-CC.pdf">The
Busy Coder's Guide to Android Development</a></b><br />
(400 pages, 3.7mb, pdf)<br />
This
book has it all for the Adroid Developer, how to start, a great
detailed explanation of the framework and concepts, and of course, many
coding examples that you are free to use.<br />
<br />
<br />
<b><a
 href="http://androidteam.googlecode.com/files/McGraw%5B1%5D.Hill.Android.A.Programmers.Guide.Jul.2008.eBook-DDU.pdf">Android:
A Programmer's Guide</a></b><br />
(336 pages, 7.2mb, pdf)<br />
This book explains and teaches
mobile device application development using the Open Handset Alliance’s
Android platform. It discusses and covers:
downloading and installing Eclipse and the Android SDK; learning the
Android SDK; writing your first program; using the command-line tools
and the Android&nbsp;Emulator; using intents and the phone dialer;
lists,
menus, and other views; GPS functionality; the Google API with GTalk;
writing your first application; and the Android SDK Tool Reference.<br />
<br />
<br />
<b><a
 href="http://androidteam.googlecode.com/files/professional_android_application_development.pdf">Professional
Android Application Development</a></b><br />
(434 pages, 7.4mb, pdf)<br />
This book will help you learn how to program and develop mobile
applications using version 1 of
the Android software development
kit. Each chapter teached new features and techniques to get the most
out of Android. It covers all the basic functionality as well as
exploring the advanced features through concise and useful examples.
<br />
<br />
Contents:<br />
Introduction<br />
Chapter 1: Hello, Android<br />
Chapter 2: Getting Started<br />
Chapter 3: Creating Applications and A ctivities<br />
Chapter 4: Creating Use r Interfaces<br />
Chapter 5: Intents, Broadcast Receivers, Adapters, and the
Internet<br />
Chapter 6: Data Storage, Retrieval, and Sharing<br />
Chapter 7: Maps, Geocoding, and Location-Based Services<br />
Chapter 8: Working in the Background<br />
Chapter 9: Peer-to-Peer Communication<br />
Chapter 10 : Accessing Android Hardware<br />
Chapter 11: Advanced Android Development <br />
<br />
<br />
<b><a href="http://books.google.com/books?id=ewMdnKNYfOsC">Professional
Android 2 Application Development</a></b>&nbsp; (google
book)<br />
This is the updated version of the above book, and it also takes you
through a series of
sample projects to help you learn and understand Android's new features
and
techniques. It details creating layouts and views to
produce compelling resolution independent user interfaces. It examines
Intents and content providers for sharing data, along with techniques
for
creating map-based applications and using location-based services such
as GPS. It shows you&nbsp;how to create and use background
services, notifications, and alarms and it demonstrates how to create
interactive
homescreen components. Finally, it reviews&nbsp;the Bluetooth,
telephony, and networking
APIs.<br />
<br />
Contents:<br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA1&amp;source=gbs_toc_r&amp;cad=4">
Chapter 1 Hello Android</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA17&amp;source=gbs_toc_r&amp;cad=4">
Chapter 2 Getting Started</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA49&amp;source=gbs_toc_r&amp;cad=4">
Chapter 3
Creating Applications and Activities</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA85&amp;source=gbs_toc_r&amp;cad=4">
Chapter 4 Creating User Interfaces</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA137&amp;source=gbs_toc_r&amp;cad=4">
Chapter 5
Intents Broadcast Receivers Adapters and the Internet</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA187&amp;source=gbs_toc_r&amp;cad=4">
Chapter 6
Files Saving State and Preferences</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA209&amp;source=gbs_toc_r&amp;cad=4">
Chapter 7
Databases and Content Providers</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA285&amp;source=gbs_toc_r&amp;cad=4">Chapter
9
Working in the Background</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA363&amp;source=gbs_toc_r&amp;cad=4">
Chapter 11
Audio Video and Using the Camera</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA389&amp;source=gbs_toc_r&amp;cad=4">
Chapter 12
Telephony and SMS</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA425&amp;source=gbs_toc_r&amp;cad=4">
Chapter 13
Bluetooth Networks and WiFi</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA457&amp;source=gbs_toc_r&amp;cad=4">
Chapter 14 Sensors</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA477&amp;source=gbs_toc_r&amp;cad=4">
Chapter 15
Advanced Android Development</a><br />
<a
 href="http://books.google.com/books?id=ewMdnKNYfOsC&amp;pg=PA529&amp;source=gbs_toc_r&amp;cad=4">
Index</a><br />
<br />
<b><a href="http://books.google.com/books?id=gYk_Dm8zNOYC"><br />
Professional Flash Mobile Development: Creating Android and IPhone
Applications</a></b>&nbsp; (google book)<br />
This book teaches Flash and ActionScript developers how to create
native
applications for Android mobile devices using Flash and Flash Builder.
It shows how to build a variety of apps
and integrate them with core mobile services such as Accelerometer,
GPS, and Photo Library. Learn how to port existing Flash media
to the AIR for Android platform. It provides sample code for building
native Android apps with Flash, migrating existing Flash media, testing
and debugging applications, and more. Also,&nbsp;how to work with
the Android OS file system and SQLite
database.<br />
<br />
Contents:<br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT7&amp;source=gbs_toc_r&amp;cad=3">Introducing
Flash Development for Mobile</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT19&amp;source=gbs_toc_r&amp;cad=3">Setting
Up
Your Development Environment</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT50&amp;source=gbs_toc_r&amp;cad=3">Building
and
Installing VanillaApp</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT105&amp;source=gbs_toc_r&amp;cad=3">Touch
and User Interaction</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT118&amp;source=gbs_toc_r&amp;cad=3">Multitouch</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT132&amp;source=gbs_toc_r&amp;cad=3">Coding
the Document Class</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT149&amp;source=gbs_toc_r&amp;cad=3">Detecting
Motion with Accelerometer</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT179&amp;source=gbs_toc_r&amp;cad=3">Implementing
Auto Orientation</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT341&amp;source=gbs_toc_r&amp;cad=3">Understanding
the Android File and Directory Structure</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT364&amp;source=gbs_toc_r&amp;cad=3">Working
with a
SQLite Database</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT372&amp;source=gbs_toc_r&amp;cad=3">Making
a SQL Query</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT380&amp;source=gbs_toc_r&amp;cad=3">Summary</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT395&amp;source=gbs_toc_r&amp;cad=3">Submitting
Your App to theApp Store</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT409&amp;source=gbs_toc_r&amp;cad=3">Application
Descriptor Settings</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT203&amp;source=gbs_toc_r&amp;cad=3">Geolocation</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT251&amp;source=gbs_toc_r&amp;cad=3">Service
Integration Using URL Protocols</a><br />
<a
 href="http://books.google.com/books?id=gYk_Dm8zNOYC&amp;pg=PT441&amp;source=gbs_toc_r&amp;cad=3">What
You Need
to Use This Book</a><br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4650&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4650/5-android-programming-books/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2 more C# Programming Books</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4641/2-more-c-programming-books</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4641/2-more-c-programming-books#comments</comments>
		<pubDate>Wed, 26 Jan 2011 04:51:03 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[C Sharp Tutorials]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4641</guid>
		<description><![CDATA[Here are two more C# Programming books at google books, with the links to all available chapters. This is the 3rd and final post for C# google books. Here are the first and second posts. C# Essentials Concise but thorough, this second edition of "C# Essentials" introduces the Microsoft C# programming language, including the Microsoft [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <b>two more C# Programming books</b> at
google
books, with the links to all available chapters. This is the 3rd and
final post for C# google books. Here are the <a
 href="http://www.intelligentedu.com/blogs/post/free_computer_books/4605/2-c-programming-books">first</a>
and <a
 href="http://www.intelligentedu.com/blogs/post/free_computer_books/4628/4-more-c-programming-books">second</a>
posts.<br />
<br />
<br />
<b><a href="http://books.google.com/books?id=h5GemiLC3GMC">C#
Essentials</a></b><br />
Concise
but thorough, this second edition of "C# Essentials" introduces the
Microsoft C# programming language, including the Microsoft .NET Common
Language Runtime (CLR) and .NET Framework Class Libraries (FCL) that
support it. This book's compact format and terse presentation of key
concepts serve as a roadmap to the online documentation included with
the Microsoft .NET Framework SDK; the many examples provide much-needed
context.<br />
<br />
This new edition has been updated to cover the final
release of the C# language. In addition to overviews of C#, the CLR,
and the FCL, this new edition of C# Essentials covers:<br />
<br />
&nbsp;- Every C# language element and its syntax, <br />
&nbsp; &nbsp;in reference
format,
including new keywords<br />
&nbsp;- The major C# datatypes, with code examples<br />
&nbsp;- Common C# programming tasks<br />
&nbsp;- Interoperation
with legacy Win32 APIs and COM <br />
&nbsp; &nbsp;components, and the use of C/C++ style
pointers<br />
&nbsp; &nbsp;within the managed context of the CLR<br />
&nbsp;- Common development issues
<br /><br />
<u>
Contents</u>:<br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA1&amp;source=gbs_toc_r&amp;cad=4">Introduction</a><br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA84&amp;source=gbs_toc_r&amp;cad=4">Programming
the NET Framework</a><br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA147&amp;source=gbs_toc_r&amp;cad=4">Framework
Class Library Overview</a><br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA158&amp;source=gbs_toc_r&amp;cad=4">Essential
NETTools</a><br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA169&amp;source=gbs_toc_r&amp;cad=4">B
Regular Expressions</a><br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA179&amp;source=gbs_toc_r&amp;cad=4">Data
Marshaling</a><br />
<a
 href="http://books.google.com/books?id=h5GemiLC3GMC&amp;pg=PA189&amp;source=gbs_toc_r&amp;cad=4">Index</a><br />
<br />
<br />
<b><a href="http://books.google.com/books?id=btlM21ivisMC">The
C# Programming Language</a></b><br />
Publisher's
description: Written by the language's architect and design team
members, The C#
Programming Language is the definitive technical reference for C#.
Moving beyond the online documentation, the book provides the complete
specification of the language along with descriptions, reference
materials, and code samples from the C# design team. Topics covered
include Lexical
Structure, Types, Variables, Conversions, Expressions, Statements,
Namespaces, Exceptions, Attributes, and Unsafe Code. The second part of
the book provides an introduction to and technical specification of
four C# features: Generics, Anonymous Methods,
Iterators, and Partial Types.&nbsp;With
the recent acceptance of C# as a standard by both the International
Organization for Standardization (ISO) and ECMA, understanding the C#
specification has become critical. The C# Programming Language is the
definitive reference for programmers who want to acquire an in-depth
knowledge of C#.<br />
<br />
<u>Contents</u>:<br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA3&amp;source=gbs_toc_r&amp;cad=4">1
Introduction</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA45&amp;source=gbs_toc_r&amp;cad=4">2
Lexical Structure</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA73&amp;source=gbs_toc_r&amp;cad=4">3
Basic Concepts</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA101&amp;source=gbs_toc_r&amp;cad=4">4
Types</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA115&amp;source=gbs_toc_r&amp;cad=4">5
Variables</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA135&amp;source=gbs_toc_r&amp;cad=4">6
Conversions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA147&amp;source=gbs_toc_r&amp;cad=4">7
Expressions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA229&amp;source=gbs_toc_r&amp;cad=4">8
Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA263&amp;source=gbs_toc_r&amp;cad=4">9
Namespaces</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA4&amp;source=gbs_toc_r&amp;cad=4">11
Hello World</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA5&amp;source=gbs_toc_r&amp;cad=4">12
Program Structure</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA7&amp;source=gbs_toc_r&amp;cad=4">13
Types and Variables</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA11&amp;source=gbs_toc_r&amp;cad=4">14
Expressions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA14&amp;source=gbs_toc_r&amp;cad=4">15
Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA18&amp;source=gbs_toc_r&amp;cad=4">16
Classes and Objects</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA34&amp;source=gbs_toc_r&amp;cad=4">17
Structs</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA35&amp;source=gbs_toc_r&amp;cad=4">18
Arrays</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA37&amp;source=gbs_toc_r&amp;cad=4">19
Interfaces</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA39&amp;source=gbs_toc_r&amp;cad=4">20
Enums</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA40&amp;source=gbs_toc_r&amp;cad=4">21
Delegates</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA42&amp;source=gbs_toc_r&amp;cad=4">22
Attributes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA47&amp;source=gbs_toc_r&amp;cad=4">23
Lexical Analysis</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA51&amp;source=gbs_toc_r&amp;cad=4">24
Tokens</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA61&amp;source=gbs_toc_r&amp;cad=4">25
Preprocessing Directives</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA74&amp;source=gbs_toc_r&amp;cad=4">32
Application Termination</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA75&amp;source=gbs_toc_r&amp;cad=4">33
Declarations</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA77&amp;source=gbs_toc_r&amp;cad=4">34
Members</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA79&amp;source=gbs_toc_r&amp;cad=4">35
Member Access</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA86&amp;source=gbs_toc_r&amp;cad=4">36
Signatures and Overloading</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA87&amp;source=gbs_toc_r&amp;cad=4">37
Scopes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA93&amp;source=gbs_toc_r&amp;cad=4">38
Namespace and Type Names</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA95&amp;source=gbs_toc_r&amp;cad=4">39
Automatic Memory Management</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA99&amp;source=gbs_toc_r&amp;cad=4">40
Execution Order</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA110&amp;source=gbs_toc_r&amp;cad=4">42
Reference Types</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA112&amp;source=gbs_toc_r&amp;cad=4">43
Boxing and Unboxing</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA119&amp;source=gbs_toc_r&amp;cad=4">52
Default Values</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA133&amp;source=gbs_toc_r&amp;cad=4">54
Variable References</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA138&amp;source=gbs_toc_r&amp;cad=4">62
Explicit Conversions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA142&amp;source=gbs_toc_r&amp;cad=4">63
Standard Conversions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA143&amp;source=gbs_toc_r&amp;cad=4">64
UserDefined Conversions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA149&amp;source=gbs_toc_r&amp;cad=4">72
Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA156&amp;source=gbs_toc_r&amp;cad=4">73
Member Lookup</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA157&amp;source=gbs_toc_r&amp;cad=4">74
Function Members</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA170&amp;source=gbs_toc_r&amp;cad=4">75
Primary Expressions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA193&amp;source=gbs_toc_r&amp;cad=4">76
Unary Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA198&amp;source=gbs_toc_r&amp;cad=4">77
Arithmetic Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA207&amp;source=gbs_toc_r&amp;cad=4">78
Shift Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA209&amp;source=gbs_toc_r&amp;cad=4">79
Relational and Type Testing Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA216&amp;source=gbs_toc_r&amp;cad=4">80
Logical Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA218&amp;source=gbs_toc_r&amp;cad=4">80.1
Conditional Logical Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA220&amp;source=gbs_toc_r&amp;cad=4">80.2
Conditional Operator</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA221&amp;source=gbs_toc_r&amp;cad=4">80.3
Assignment Operators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA226&amp;source=gbs_toc_r&amp;cad=4">80.4
Expression</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA227&amp;source=gbs_toc_r&amp;cad=4">80.6
Boolean Expressions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA230&amp;source=gbs_toc_r&amp;cad=4">81
End Points and Reachability</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA232&amp;source=gbs_toc_r&amp;cad=4">82
Blocks</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA233&amp;source=gbs_toc_r&amp;cad=4">83
The Empty Statement</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA234&amp;source=gbs_toc_r&amp;cad=4">85
Declaration Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA236&amp;source=gbs_toc_r&amp;cad=4">86
Expression Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA237&amp;source=gbs_toc_r&amp;cad=4">87
Selection Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA243&amp;source=gbs_toc_r&amp;cad=4">88
Iteration Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA248&amp;source=gbs_toc_r&amp;cad=4">89
Jump Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA255&amp;source=gbs_toc_r&amp;cad=4">90
The try Statement</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA258&amp;source=gbs_toc_r&amp;cad=4">91
The checked and unchecked Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA259&amp;source=gbs_toc_r&amp;cad=4">91.2
The lock Statement</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA260&amp;source=gbs_toc_r&amp;cad=4">91.3
The using Statement</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA264&amp;source=gbs_toc_r&amp;cad=4">92
Namespace Declarations</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA265&amp;source=gbs_toc_r&amp;cad=4">93
Using Directives</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA271&amp;source=gbs_toc_r&amp;cad=4">94
Namespace Members</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA273&amp;source=gbs_toc_r&amp;cad=4">100
Classes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA277&amp;source=gbs_toc_r&amp;cad=4">102
Class Members</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA287&amp;source=gbs_toc_r&amp;cad=4">103
Constants</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA290&amp;source=gbs_toc_r&amp;cad=4">104
Fields</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA299&amp;source=gbs_toc_r&amp;cad=4">105
Methods</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA317&amp;source=gbs_toc_r&amp;cad=4">106
Properties</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA327&amp;source=gbs_toc_r&amp;cad=4">107
Events</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA333&amp;source=gbs_toc_r&amp;cad=4">108
Indexers</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA343&amp;source=gbs_toc_r&amp;cad=4">110
Instance Constructors</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA355&amp;source=gbs_toc_r&amp;cad=4">111
Structs</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA356&amp;source=gbs_toc_r&amp;cad=4">112
Struct Members</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA357&amp;source=gbs_toc_r&amp;cad=4">113
Class and Struct Differences</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA362&amp;source=gbs_toc_r&amp;cad=4">114
Struct Examples</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA370&amp;source=gbs_toc_r&amp;cad=4">126
Array Initializers</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA394&amp;source=gbs_toc_r&amp;cad=4">142
Enum Modifiers</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA397&amp;source=gbs_toc_r&amp;cad=4">144
The SystemEnum Type</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA399&amp;source=gbs_toc_r&amp;cad=4">150
Delegates</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA402&amp;source=gbs_toc_r&amp;cad=4">152
Delegate Instantiation</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA407&amp;source=gbs_toc_r&amp;cad=4">160
Exceptions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA408&amp;source=gbs_toc_r&amp;cad=4">162
The SystemException Class</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA409&amp;source=gbs_toc_r&amp;cad=4">164
Common Exception Classes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA411&amp;source=gbs_toc_r&amp;cad=4">170
Attributes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA414&amp;source=gbs_toc_r&amp;cad=4">172
Attribute Specification</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA420&amp;source=gbs_toc_r&amp;cad=4">173
Attribute Instances</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA422&amp;source=gbs_toc_r&amp;cad=4">174
Reserved Attributes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA427&amp;source=gbs_toc_r&amp;cad=4">175
Attributes for Interoperation</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA429&amp;source=gbs_toc_r&amp;cad=4">180
Unsafe Code</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA433&amp;source=gbs_toc_r&amp;cad=4">182
Pointer Types</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA436&amp;source=gbs_toc_r&amp;cad=4">183
Fixed and Moveable Variables</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA437&amp;source=gbs_toc_r&amp;cad=4">184
Pointer Conversions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA438&amp;source=gbs_toc_r&amp;cad=4">185
Pointers in Expressions</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA450&amp;source=gbs_toc_r&amp;cad=4">187
Stack Allocation</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA467&amp;source=gbs_toc_r&amp;cad=4">193
Iterators</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA484&amp;source=gbs_toc_r&amp;cad=4">202
Generic Struct Declarations</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA487&amp;source=gbs_toc_r&amp;cad=4">205
Constructed Types</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA493&amp;source=gbs_toc_r&amp;cad=4">206
Generic Methods</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA508&amp;source=gbs_toc_r&amp;cad=4">208
Expressions and Statements</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA511&amp;source=gbs_toc_r&amp;cad=4">209
Revised Lookup Rules</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA522&amp;source=gbs_toc_r&amp;cad=4">2010
RightShift Grammar Changes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA528&amp;source=gbs_toc_r&amp;cad=4">214
Anonymous Method Blocks</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA532&amp;source=gbs_toc_r&amp;cad=4">216
Anonymous Method Evaluation</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA533&amp;source=gbs_toc_r&amp;cad=4">217
Delegate Instance Equality</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA535&amp;source=gbs_toc_r&amp;cad=4">2110
Implementation Example</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA540&amp;source=gbs_toc_r&amp;cad=4">222
Enumerator Objects</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA544&amp;source=gbs_toc_r&amp;cad=4">223
Enumerable Objects</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA547&amp;source=gbs_toc_r&amp;cad=4">225
Implementation Example</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA553&amp;source=gbs_toc_r&amp;cad=4">230
Partial Types 231 Partial Declarations</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA559&amp;source=gbs_toc_r&amp;cad=4">Part
Appendixes</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA561&amp;source=gbs_toc_r&amp;cad=4">A1
Documentation Comments</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA572&amp;source=gbs_toc_r&amp;cad=4">A3
Processing the Documentation File</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA577&amp;source=gbs_toc_r&amp;cad=4">A4
An Example</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA583&amp;source=gbs_toc_r&amp;cad=4">
Grammar</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA591&amp;source=gbs_toc_r&amp;cad=4">B2
Syntactic Grammar </a><a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA591&amp;source=gbs_toc_r&amp;cad=4">B21
Basic Concepts</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA614&amp;source=gbs_toc_r&amp;cad=4">B3
GrammarExtensions for Unsafe Code</a><br />
<a
 href="http://books.google.com/books?id=btlM21ivisMC&amp;pg=PA619&amp;source=gbs_toc_r&amp;cad=4">Index</a><br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4641&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4641/2-more-c-programming-books/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Computer and Programming eBooks at libproject.net</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4638/computer-and-programming-ebooks-at-libproject-net</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4638/computer-and-programming-ebooks-at-libproject-net#comments</comments>
		<pubDate>Tue, 25 Jan 2011 03:52:39 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[free computer ebooks]]></category>
		<category><![CDATA[free programming ebooks]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4638</guid>
		<description><![CDATA[Here are many computer and programming ebooks, located at libproject.net. All of the ebook categories are listed and linked here. Most of these ebooks are in pdf and chm formats. Categories of ebooks: A.I Architecture Art Business Commerce Finance Investment Leadership Management Marketing Sales Statistics Strategy Computing Database MySQL NoSQL Oracle SAS SQL Server XML [...]]]></description>
			<content:encoded><![CDATA[<p>Here are <b><a href="http://libproject.net/programming/">many
computer and programming ebooks</a></b>, located at
<a href="http://libproject.net" title="http://libproject.net" target="_blank">libproject.net</a>. All of the ebook categories are listed and linked here.
Most of these ebooks are in pdf and chm formats.<br />
<br />
<br />
<u>Categories of ebooks</u>:<br />
<ul>
  <li cat-item-59=""><a
 href="http://libproject.net/category/ai" title="A.I">A.I</a>
  </li>
  <li cat-item-70=""><a
 href="http://libproject.net/category/architecture"
 title="Architecture">Architecture</a>
  </li>
  <li cat-item-73=""><a
 href="http://libproject.net/category/art" title="Art">Art</a>
  </li>
  <li cat-item-31=""><a
 href="http://libproject.net/category/business" title="Business">Business</a>
    <ul class="children">
      <li cat-item-33=""><a
 href="http://libproject.net/category/business/commerce"
 title="Commerce">Commerce</a>
      </li>
      <li cat-item-32=""><a
 href="http://libproject.net/category/business/finance"
 title="Finance">Finance</a>
      </li>
      <li cat-item-64=""><a
 href="http://libproject.net/category/business/investment"
 title="Investment">Investment</a>
      </li>
      <li cat-item-37=""><a
 href="http://libproject.net/category/business/leadership"
 title="Leadership">Leadership</a>
      </li>
      <li cat-item-35=""><a
 href="http://libproject.net/category/business/management"
 title="Management">Management</a>
      </li>
      <li cat-item-34=""><a
 href="http://libproject.net/category/business/marketing"
 title="Marketing">Marketing</a>
      </li>
      <li cat-item-75=""><a
 href="http://libproject.net/category/business/sales"
 title="Sales">Sales</a>
      </li>
      <li cat-item-71=""><a
 href="http://libproject.net/category/business/statistics"
 title="Statistics">Statistics</a>
      </li>
      <li cat-item-36=""><a
 href="http://libproject.net/category/business/strategy"
 title="Strategy">Strategy</a>
      </li>
    </ul>
  </li>
  <li cat-item-48=""><a
 href="http://libproject.net/category/computing"
 title="Computing">Computing</a>
  </li>
  <li cat-item-24=""><a
 href="http://libproject.net/category/database" title="Database">Database</a>
    <ul class="children">
      <li cat-item-25=""><a
 href="http://libproject.net/category/database/mysql"
 title="MySQL">MySQL</a>
      </li>
      <li cat-item-89=""><a
 href="http://libproject.net/category/database/nosql"
 title="NoSQL">NoSQL</a>
      </li>
      <li cat-item-26=""><a
 href="http://libproject.net/category/database/oracle"
 title="Oracle">Oracle</a>
      </li>
      <li cat-item-58=""><a
 href="http://libproject.net/category/database/sas" title="SAS">SAS</a>
      </li>
      <li cat-item-27=""><a
 href="http://libproject.net/category/database/sql-server"
 title="SQL Server">SQL Server</a>
      </li>
      <li cat-item-28=""><a
 href="http://libproject.net/category/database/xml" title="XML">XML</a>
      </li>
    </ul>
  </li>
  <li cat-item-16=""><a
 href="http://libproject.net/category/design" title="Design">Design</a>
    <ul class="children">
      <li cat-item-23=""><a
 href="http://libproject.net/category/design/3d" title="3D">3D</a>
      </li>
      <li cat-item-69=""><a
 href="http://libproject.net/category/design/flash" title="Flash">Flash</a>
      </li>
      <li cat-item-18=""><a
 href="http://libproject.net/category/design/illustrator"
 title="Illustrator">Illustrator</a>
      </li>
      <li cat-item-41=""><a
 href="http://libproject.net/category/design/photography"
 title="Photography">Photography</a>
      </li>
      <li cat-item-17=""><a
 href="http://libproject.net/category/design/photoshop"
 title="Photoshop">Photoshop</a>
      </li>
      <li cat-item-63=""><a
 href="http://libproject.net/category/design/web-design"
 title="Web Design">Web Design</a>
      </li>
    </ul>
  </li>
  <li cat-item-86=""><a
 href="http://libproject.net/category/drawing" title="Drawing">Drawing</a>
  </li>
  <li cat-item-94=""><a
 href="http://libproject.net/category/education"
 title="Education">Education</a>
  </li>
  <li cat-item-80=""><a
 href="http://libproject.net/category/engineering"
 title="Engineering">Engineering</a>
  </li>
  <li cat-item-55=""><a
 href="http://libproject.net/category/examinations"
 title="Examinations">Examinations</a>
  </li>
  <li cat-item-38=""><a
 href="http://libproject.net/category/games" title="Games">Games</a>
  </li>
  <li cat-item-42=""><a
 href="http://libproject.net/category/hardware" title="Hardware">Hardware</a>
  </li>
  <li cat-item-87=""><a
 href="http://libproject.net/category/history" title="History">History</a>
  </li>
  <li cat-item-50=""><a
 href="http://libproject.net/category/internet" title="Internet">Internet</a>
  </li>
  <li cat-item-83=""><a
 href="http://libproject.net/category/iphone-ipad"
 title="iPhone/iPad">iPhone/iPad</a>
  </li>
  <li cat-item-88=""><a
 href="http://libproject.net/category/law" title="Law">Law</a>
  </li>
  <li cat-item-57=""><a
 href="http://libproject.net/category/lifestyle"
 title="Lifestyle">Lifestyle</a>
  </li>
  <li cat-item-84=""><a
 href="http://libproject.net/category/math" title="Math">Math</a>
  </li>
  <li cat-item-72=""><a
 href="http://libproject.net/category/miscellaneous"
 title="Miscellaneous">Miscellaneous</a>
  </li>
  <li cat-item-49=""><a
 href="http://libproject.net/category/mobile" title="Mobile">Mobile</a>
  </li>
  <li cat-item-19=""><a
 href="http://libproject.net/category/multimedia"
 title="Multimedia">Multimedia</a>
    <ul class="children">
      <li cat-item-22=""><a
 href="http://libproject.net/category/multimedia/sound"
 title="Sound">Sound</a>
      </li>
      <li cat-item-21=""><a
 href="http://libproject.net/category/multimedia/video"
 title="Video">Video</a>
      </li>
    </ul>
  </li>
  <li cat-item-29=""><a
 href="http://libproject.net/category/network" title="Network">Network</a>
    <ul class="children">
      <li cat-item-74=""><a
 href="http://libproject.net/category/network/cisco"
 title="Cisco">Cisco</a>
      </li>
      <li cat-item-53=""><a
 href="http://libproject.net/category/network/server"
 title="Server">Server</a>
      </li>
      <li cat-item-54=""><a
 href="http://libproject.net/category/network/wireless"
 title="Wireless">Wireless</a>
      </li>
    </ul>
  </li>
  <li cat-item-39=""><a
 href="http://libproject.net/category/office" title="Office">Office</a>
  </li>
  <li cat-item-56=""><a
 href="http://libproject.net/category/political"
 title="Political">Political</a>
  </li>
  <li cat-item-1="" current-cat=""><a
 href="http://libproject.net/category/programming"
 title="Programming">Programming</a>
    <ul class="children">
      <li cat-item-20=""><a
 href="http://libproject.net/category/programming/action-script"
 title="Action Script">Action
Script</a>
      </li>
      <li cat-item-7=""><a
 href="http://libproject.net/category/programming/adobe-air"
 title="Adobe AIR">Adobe AIR</a>
      </li>
      <li cat-item-92=""><a
 href="http://libproject.net/category/programming/android"
 title="Android">Android</a>
      </li>
      <li cat-item-5=""><a
 href="http://libproject.net/category/programming/asp"
 title="ASP">ASP</a>
      </li>
      <li cat-item-10=""><a
 href="http://libproject.net/category/programming/c-sharp"
 title="C#">C#</a>
      </li>
      <li cat-item-13=""><a
 href="http://libproject.net/category/programming/cc"
 title="C/C++">C/C++</a>
      </li>
      <li cat-item-82=""><a
 href="http://libproject.net/category/programming/cocoa"
 title="Cocoa">Cocoa</a>
      </li>
      <li cat-item-51=""><a
 href="http://libproject.net/category/programming/development"
 title="Development">Development</a>
      </li>
      <li cat-item-8=""><a
 href="http://libproject.net/category/programming/dot-net"
 title="Dot NET">Dot NET</a>
      </li>
      <li cat-item-79=""><a
 href="http://libproject.net/category/programming/flex"
 title="Flex">Flex</a>
      </li>
      <li cat-item-62=""><a
 href="http://libproject.net/category/programming/ide"
 title="I.D.E">I.D.E</a>
      </li>
      <li cat-item-6=""><a
 href="http://libproject.net/category/programming/java"
 title="Java">Java</a>
      </li>
      <li cat-item-40=""><a
 href="http://libproject.net/category/programming/javascript"
 title="Javascript">Javascript</a>
      </li>
      <li cat-item-78=""><a
 href="http://libproject.net/category/programming/mashup"
 title="Mashup">Mashup</a>
      </li>
      <li cat-item-77=""><a
 href="http://libproject.net/category/programming/object-oriented"
 title="Object Oriented">Object
Oriented</a>
      </li>
      <li cat-item-15=""><a
 href="http://libproject.net/category/programming/perl"
 title="Perl">Perl</a>
      </li>
      <li cat-item-4=""><a
 href="http://libproject.net/category/programming/php"
 title="PHP">PHP</a>
      </li>
      <li cat-item-11=""><a
 href="http://libproject.net/category/programming/python"
 title="Python">Python</a>
      </li>
      <li cat-item-14=""><a
 href="http://libproject.net/category/programming/ruby"
 title="Ruby">Ruby</a>
      </li>
      <li cat-item-81=""><a
 href="http://libproject.net/category/programming/silverlight"
 title="Silverlight">Silverlight</a>
      </li>
      <li cat-item-9=""><a
 href="http://libproject.net/category/programming/visual-basic"
 title="Visual Basic">Visual Basic</a>
      </li>
    </ul>
  </li>
  <li cat-item-67=""><a
 href="http://libproject.net/category/science" title="Science">Science</a>
    <ul class="children">
      <li cat-item-68=""><a
 href="http://libproject.net/category/science/biology"
 title="Biology">Biology</a>
      </li>
      <li cat-item-66=""><a
 href="http://libproject.net/category/science/physics"
 title="Physics">Physics</a>
      </li>
    </ul>
  </li>
  <li cat-item-30=""><a
 href="http://libproject.net/category/secuirty" title="Secuirty">Secuirty</a>
  </li>
  <li cat-item-43=""><a
 href="http://libproject.net/category/system" title="System">System</a>
    <ul class="children">
      <li cat-item-46=""><a
 href="http://libproject.net/category/system/linux-unix"
 title="Linux/Unix">Linux/Unix</a>
      </li>
      <li cat-item-47=""><a
 href="http://libproject.net/category/system/mac" title="MAC">MAC</a>
      </li>
      <li cat-item-45=""><a
 href="http://libproject.net/category/system/windows"
 title="Windows">Windows</a>
      </li>
    </ul>
  </li>
  <li cat-item-85=""><a
 href="http://libproject.net/category/technology"
 title="Technology">Technology</a>
  </li>
  <li cat-item-52=""><a
 href="http://libproject.net/category/telecommunication"
 title="Telecommunication">Telecommunication</a>
  </li>
  <li cat-item-91=""><a
 href="http://libproject.net/category/thinking" title="Thinking">Thinking</a>
  </li>
  <li cat-item-61=""><a
 href="http://libproject.net/category/virtualization"
 title="Virtualization">Virtualization</a>
  </li>
</ul>
<br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4638&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4638/computer-and-programming-ebooks-at-libproject-net/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>eBooks on Linux, LPIC, Programming, C, Windows</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4636/ebooks-on-linux-lpic-programming-c-windows</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4636/ebooks-on-linux-lpic-programming-c-windows#comments</comments>
		<pubDate>Thu, 20 Jan 2011 18:49:28 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[C Programming]]></category>
		<category><![CDATA[certification]]></category>
		<category><![CDATA[free computer ebooks]]></category>
		<category><![CDATA[free programming ebooks]]></category>
		<category><![CDATA[Linux ebooks]]></category>
		<category><![CDATA[LPIC]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4636</guid>
		<description><![CDATA[Here is another computer ebook site containing lots of IT and programming ebooks in several areas, as shown below. eBook categories: 33 Linux Programming ebooks &#160;- Linux Application Development &#160;- Bash scripting &#160;- Assembly programming in Linux &#160;- C++ programming in Linux &#160;- Debugging and Performance tuning &#160;- GCC reference ebook &#160;- Java programming in [...]]]></description>
			<content:encoded><![CDATA[<p>Here is <b><a href="http://swarm.cs.pub.ro/%7Erazvan/books/">another
computer ebook site</a></b> containing lots of IT and
programming ebooks in several areas, as shown below.<br />
<br />
<br />
<u>eBook categories</u>:<br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/lin-prog/">33
Linux Programming ebooks</a><br />
&nbsp;- Linux Application Development<br />
&nbsp;- Bash scripting<br />
&nbsp;- Assembly programming in Linux<br />
&nbsp;- C++ programming in Linux<br />
&nbsp;- Debugging and Performance tuning<br />
&nbsp;- GCC reference ebook<br />
&nbsp;- Java programming in Linux<br />
&nbsp;- Interprocess Communications in Linux<br />
&nbsp;- Linux Commands, Editors and Shell programming<br />
&nbsp;- Linux Socket programming<br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/c-selection/style/">6
books on C and C++ Programming Style and Standards</a><br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/c-selection/c/">8
C programming ebooks</a> and <a
 href="http://swarm.cs.pub.ro/%7Erazvan/books/c-selection/small/">3
C programming ebooks</a><br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/c-selection/prog/">5
General Programming ebooks</a><br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/lpic-2/">21
Linux Admin ebooks</a><br />
&nbsp;- Apache server<br />
&nbsp;- Hardening Linux<br />
&nbsp;- LDAP administration<br />
&nbsp;- Linux Troubleshooting<br />
&nbsp;- Secure Linux servers<br />
&nbsp;- Linux Security<br />
&nbsp;- NFS and NIS<br />
&nbsp;- Postfix<br />
&nbsp;- Sendmail<br />
&nbsp;- qmail<br />
&nbsp;- DNS<br />
&nbsp;- BIND<br />
&nbsp;- Samba<br />
&nbsp;- Linux Kernel<br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/cert/rh/">4
Red Hat Certification Exam ebooks</a><br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/cert/lpi/">45
Study Guides and eBooks for LPIC Exam</a><br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/lin-kernel/">25
Linux Kernel ebooks</a> (device drivers, modules, etc.)<br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/doc-so/">12
Operating System, Linux, Unix, and Windows ebooks</a><br />
<br />
<a href="http://swarm.cs.pub.ro/%7Erazvan/books/win-prog/">20
Windows Programming ebooks</a><br />
&nbsp;- ATL internals<br />
&nbsp;- Windows System programming<br />
&nbsp;- Windows User Interfaces<br />
&nbsp;- C++ programming in Windows<br />
&nbsp;- Direct 3D<br />
&nbsp;- . NET IL Assembler<br />
&nbsp;- Windows Application programming<br />
&nbsp;- Win32 API<br />
&nbsp;- Windows Scripting<img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4636&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4636/ebooks-on-linux-lpic-programming-c-windows/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>4 more C# Programming Books</title>
		<link>http://www.intelligentedu.com/blogs/post/free_computer_books/4628/4-more-c-programming-books</link>
		<comments>http://www.intelligentedu.com/blogs/post/free_computer_books/4628/4-more-c-programming-books#comments</comments>
		<pubDate>Wed, 19 Jan 2011 02:58:11 +0000</pubDate>
		<dc:creator>computer_teacher</dc:creator>
				<category><![CDATA[Free Computer and I.T. Books]]></category>
		<category><![CDATA[C Sharp Tutorials]]></category>

		<guid isPermaLink="false">http://www.intelligentedu.com/blogs/?p=4628</guid>
		<description><![CDATA[These are four more C# Programming books, on google books, with most of their chapters linked here. This will be the second of 3 posts for C# books at google books. The first one is here. C# 4.0 in a Nutshell Uniquely organized around concepts and use cases, this fourth edition includes in-depth coverage of [...]]]></description>
			<content:encoded><![CDATA[<p>These are <b>four more C# Programming books</b>, on google
books, with most of their chapters linked here. This will be the second
of 3 posts for C# books at google books. The first one <a
 href="http://www.intelligentedu.com/blogs/post/free_computer_books/4605/2-c-programming-books">is
here</a>.<br />
<br />
<br />
<b><a href="http://books.google.com/books?id=VENrFSQFco8C">C#
4.0 in a Nutshell</a></b><br />
Uniquely organized around concepts and use cases, this fourth
edition includes in-depth coverage of new C# topics such as parallel
programming, code contracts, dynamic programming, security, and COM
interoperability. You'll also find updated information on LINQ,
including examples that work with both LINQ to SQL and Entity
Framework.&nbsp;Get up to speed on C# language basics, including
syntax,
types, and variables. Explore advanced topics such as unsafe code and
preprocessor directives. Learn C# 4.0 features such as dynamic binding,
type parameter variance, and optional and named parameters. Work with
.NET 4's rich set of features for parallel programming, code contracts,
and the code security model. Learn .NET topics, including XML,
collections, I/O and networking, memory management, reflection,
attributes, security, and native interoperability.<br />
<br />
<u>Contents</u>:<br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA1&amp;source=gbs_toc_r&amp;cad=4">Chapter
1 Introducing C and the NET Framework</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA7&amp;source=gbs_toc_r&amp;cad=4">Chapter
2 C Language Basics</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA63&amp;source=gbs_toc_r&amp;cad=4">Chapter
3 Creating Types in C</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA115&amp;source=gbs_toc_r&amp;cad=4">Chapter
4 Advanced C</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA181&amp;source=gbs_toc_r&amp;cad=4">Chapter
5 Framework Overview</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA193&amp;source=gbs_toc_r&amp;cad=4">Chapter
6 Framework Fundamentals</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA263&amp;source=gbs_toc_r&amp;cad=4">Chapter
7 Collections</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA311&amp;source=gbs_toc_r&amp;cad=4">Chapter
8 LINQ Queries</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA367&amp;source=gbs_toc_r&amp;cad=4">Chapter
9 LINQ Operators</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA413&amp;source=gbs_toc_r&amp;cad=4">Chapter
10 LINQ to XML</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA447&amp;source=gbs_toc_r&amp;cad=4">Chapter
11 Other XML Technologies</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA475&amp;source=gbs_toc_r&amp;cad=4">Chapter
12 Disposal and Garbage Collection</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA499&amp;source=gbs_toc_r&amp;cad=4">Chapter
13 Diagnostics and Code Contracts</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA537&amp;source=gbs_toc_r&amp;cad=4">Chapter
14 Streams and IO</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA579&amp;source=gbs_toc_r&amp;cad=4">Chapter
15 Networking</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA609&amp;source=gbs_toc_r&amp;cad=4">Chapter
16 Serialization</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA647&amp;source=gbs_toc_r&amp;cad=4">Chapter
17 Assemblies</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA681&amp;source=gbs_toc_r&amp;cad=4">Chapter
18 Reflection and Metadata</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA751&amp;source=gbs_toc_r&amp;cad=4">Chapter
20 Security</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA789&amp;source=gbs_toc_r&amp;cad=4">Chapter
21 Threading</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA873&amp;source=gbs_toc_r&amp;cad=4">Chapter
22 Parallel Programming</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA927&amp;source=gbs_toc_r&amp;cad=4">Chapter
23 Asynchronous Methods</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA943&amp;source=gbs_toc_r&amp;cad=4">Chapter
24 Application Domains</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA957&amp;source=gbs_toc_r&amp;cad=4">Chapter
25 Native and COM Interoperability</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA977&amp;source=gbs_toc_r&amp;cad=4">Chapter
26 Regular Expressions</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA997&amp;source=gbs_toc_r&amp;cad=4">Appendix
C Keywords</a><br />
<a
 href="http://books.google.com/books?id=VENrFSQFco8C&amp;pg=PA1005&amp;source=gbs_toc_r&amp;cad=4">Index</a><br />
<br />
<br />
<b><a href="http://books.google.com/books?id=G0DeCgSNy6gC">C#
Cookbook</a></b><br />
The "C# Cookbook"
offers a definitive collection of solutions and examples for
programming in C#. Recipes range from simple tasks to the more
complex, and are organized with respect to the types of problems you'll
need to solve as you progress in your experience as a C# programmer.
Nearly every recipe contains a complete, documented code sample showing
you how to solve the specific problem, as well as a discussion of how
the underlying technology works and a discussion of alternatives,
limitations, and other considerations where appropriate. Each chapter
focuses on a particular topic in creating C# solutions.
Among the topics covered, you'll find: Numeric data types in C# Strings
and characters, Classes and structures, Exception handling, Delegates
and
events, Regular expressions, Data structures, and algorithms.<br />
<br />
<u>Contents</u>:<br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA1&amp;source=gbs_toc_r&amp;cad=4">Numbers</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA28&amp;source=gbs_toc_r&amp;cad=4">Strings
and Characters</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA73&amp;source=gbs_toc_r&amp;cad=4">Classes
and Structures</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA224&amp;source=gbs_toc_r&amp;cad=4">Enumerations</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA238&amp;source=gbs_toc_r&amp;cad=4">Exception
Handling</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA290&amp;source=gbs_toc_r&amp;cad=4">Diagnostics</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA340&amp;source=gbs_toc_r&amp;cad=4">Delegates
and Events</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA388&amp;source=gbs_toc_r&amp;cad=4">Regular
Expressions</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA467&amp;source=gbs_toc_r&amp;cad=4">Data
Structures and Algorithms</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA537&amp;source=gbs_toc_r&amp;cad=4">Filesystem
IO</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA605&amp;source=gbs_toc_r&amp;cad=4">Reflection</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA635&amp;source=gbs_toc_r&amp;cad=4">Networking</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA670&amp;source=gbs_toc_r&amp;cad=4">Security</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA713&amp;source=gbs_toc_r&amp;cad=4">Threading</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA746&amp;source=gbs_toc_r&amp;cad=4">UnsafeCode</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA803&amp;source=gbs_toc_r&amp;cad=4">Index</a><br />
<a
 href="http://books.google.com/books?id=G0DeCgSNy6gC&amp;pg=PA420&amp;source=gbs_toc_r&amp;cad=4">Collections
</a><br />
<br />
<br />
<b><a href="http://books.google.com/books?id=UPvi2m1b-dEC">C#
3.0: A Beginner's Guide</a></b><br />
This book teaches you the
fundamentals of C#. You'll begin by learning to create, compile,
and run a C# program. Then it's on to data types, operators,
control statements, methods, classes, and objects. You'll also
learn about inheritance, interfaces, properties, indexers, exceptions,
events, namespaces, generics, and much more. Of course, new C# 3.0
features, such as LINQ, lambda expressions, and anonymous types, are
included.<br />
<br />
<u>Contents</u>:<br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA39&amp;source=gbs_toc_r&amp;cad=4">Introducing
Data Types and Operators</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA81&amp;source=gbs_toc_r&amp;cad=4">Program
Control Statements</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA119&amp;source=gbs_toc_r&amp;cad=4">Introducing
Classes Objects and Methods</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA153&amp;source=gbs_toc_r&amp;cad=4">More
Data Types and Operators</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA197&amp;source=gbs_toc_r&amp;cad=4">A
Closer Look at Methods and Classes</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA245&amp;source=gbs_toc_r&amp;cad=4">Operator
Overloading Indexers and Properties</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA287&amp;source=gbs_toc_r&amp;cad=4">Inheritance</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA333&amp;source=gbs_toc_r&amp;cad=4">Interfaces
Structures and Enumerations</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA589&amp;source=gbs_toc_r&amp;cad=4">const
and volatile</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA591&amp;source=gbs_toc_r&amp;cad=4">yield</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA592&amp;source=gbs_toc_r&amp;cad=4">extern</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA595&amp;source=gbs_toc_r&amp;cad=4">A
Answers to Self Tests</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA598&amp;source=gbs_toc_r&amp;cad=4">Program
Control Statements</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA361&amp;source=gbs_toc_r&amp;cad=4">Exception
Handling</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA391&amp;source=gbs_toc_r&amp;cad=4">Using
IO</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA431&amp;source=gbs_toc_r&amp;cad=4">Delegates
Events and Namespaces</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA463&amp;source=gbs_toc_r&amp;cad=4">Generics</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA505&amp;source=gbs_toc_r&amp;cad=4">Introducing
LINQ</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA572&amp;source=gbs_toc_r&amp;cad=4">Attributes</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA573&amp;source=gbs_toc_r&amp;cad=4">The
Obsolete Attribute</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA574&amp;source=gbs_toc_r&amp;cad=4">Conversion
Operators</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA578&amp;source=gbs_toc_r&amp;cad=4">A
Brief Introduction to Collections</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA580&amp;source=gbs_toc_r&amp;cad=4">Create
a Dynamic Array</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA583&amp;source=gbs_toc_r&amp;cad=4">Use
the QueueT Collection</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA586&amp;source=gbs_toc_r&amp;cad=4">Other
Keywords</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA587&amp;source=gbs_toc_r&amp;cad=4">readonly</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA600&amp;source=gbs_toc_r&amp;cad=4">Introducing
Classes Objects and Methods</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA601&amp;source=gbs_toc_r&amp;cad=4">More
Data Types and Operators</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA607&amp;source=gbs_toc_r&amp;cad=4">Operator
Overloading Indexers and Properties </a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA610&amp;source=gbs_toc_r&amp;cad=4">Interfaces
Structures and Enumerations</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA614&amp;source=gbs_toc_r&amp;cad=4">Using
IO</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA618&amp;source=gbs_toc_r&amp;cad=4">Generics</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA619&amp;source=gbs_toc_r&amp;cad=4">The
Preprocessor RTTI Nullable Types and Other Advanced Topics</a><br />
<a
 href="http://books.google.com/books?id=UPvi2m1b-dEC&amp;pg=PA621&amp;source=gbs_toc_r&amp;cad=4">Index
</a><br />
<br />
<br />
<b><a href="http://books.google.com/books?id=rIlXVth8VygC">Programming
C# 3.0</a></b><br />
This book provides a comprehensive tutorial in
C# and .NET programming that also serves as a useful reference. It
covers LINQ (Language Integrated Query) and other C# 3.0
language innovations to speed up development tasks. It explains how to
use
C# in creating Web Applications as well as Windows Applications, using
both the new Windows Presentation Foundation (WPF) and the older
WinForms technology. Note to VB6 and Java programmers: if you've
decided to transition to
.NET, this book will help you with that.<br />
<br />
<u>Contents</u>:<br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA7&amp;source=gbs_toc_r&amp;cad=4">Hello
World</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA61&amp;source=gbs_toc_r&amp;cad=4">Classes
and Objects</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA118&amp;source=gbs_toc_r&amp;cad=4">Operator
Overloading</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA127&amp;source=gbs_toc_r&amp;cad=4">Structs</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA156&amp;source=gbs_toc_r&amp;cad=4">Arrays
Indexers and Collections</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA214&amp;source=gbs_toc_r&amp;cad=4">Strings
and Regular Expressions</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA241&amp;source=gbs_toc_r&amp;cad=4">Exceptions</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA381&amp;source=gbs_toc_r&amp;cad=4">Programming
ASP .NET Applications</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA420&amp;source=gbs_toc_r&amp;cad=4">Programming
Windows Forms Applications </a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA465&amp;source=gbs_toc_r&amp;cad=4">Threads
and Synchronization</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA542&amp;source=gbs_toc_r&amp;cad=4">Programming
NET and COM</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA279&amp;source=gbs_toc_r&amp;cad=4">C
and Data</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA302&amp;source=gbs_toc_r&amp;cad=4">Working
with XML</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA561&amp;source=gbs_toc_r&amp;cad=4">C
Keywords</a><br />
<a
 href="http://books.google.com/books?id=rIlXVth8VygC&amp;pg=PA569&amp;source=gbs_toc_r&amp;cad=4">Index</a><br />
<br /><img src="http://www.intelligentedu.com/blogs/?ak_action=api_record_view&id=4628&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.intelligentedu.com/blogs/post/free_computer_books/4628/4-more-c-programming-books/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

