<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CEEGRXczfyp7ImA9WhRaFEk.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514</id><updated>2012-02-17T08:37:04.987+07:00</updated><category term="C++ Programming" /><category term="Visual C# Programming" /><category term="OpenCV" /><category term="Flash Programming" /><category term="Google App Programming" /><category term="Delphi Programming" /><category term="XML" /><category term=".NET Programming" /><category term="AppleScript Programming" /><category term="OpenSource" /><category term="Game Development" /><category term="General Programming Books" /><category term="Microsoft Guide" /><category term="Perl Programming" /><category term="Web Programming" /><category term="VBA" /><category term="Quantum Computing" /><category term="Server Handbooks" /><category term="Compilers" /><category term="ASP.NET Books" /><category term="Network Security" /><category term="Assembly Language" /><category term="Java Programming" /><category term="Operating Systems" /><category term="Joomla Programming" /><category term="Delphi" /><category term="Visual Basic Programming" /><category term="C# Programming" /><category term="Mac OS X" /><category term="Ajax Programming" /><category term="Cocoa" /><category term="Pascal Programming" /><category term="Coder" /><category term="e-learning" /><category term="F# Programming" /><category term="Python Programming" /><category term="Database Programming" /><category term="e-commerce" /><title>Free Programming Books</title><subtitle type="html">Mastering Your Programming Languange</subtitle><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://programmasters.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>191</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/FreeProgrammingBooks" /><feedburner:info uri="freeprogrammingbooks" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;DkEBRX49fyp7ImA9WhRXEUw.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-851872209339098994</id><published>2011-12-17T16:37:00.000+07:00</published><updated>2011-12-17T16:37:34.067+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-17T16:37:34.067+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="C++ Programming" /><title>Free Download | Sams Teach Yourself C++ in One Hour a Day (6th Edition) (Sams Teach Yourself)   by:  Jesse Liberty, Siddhartha Rao, Bradley L. Jones</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-Es6-9pgarPA/Tuxisu3HZnI/AAAAAAAAD24/PVdVMQyISnw/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-Es6-9pgarPA/Tuxisu3HZnI/AAAAAAAAD24/PVdVMQyISnw/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The book fits well into the style of the series of "Teach Yourself ... in One Hour a Day". Each chapter, which the authors term a lesson, is bite-sized. I can readily envisage a typical neophyte to programming (of any language) being able to assimilate its contents in roughly an hour. Keep in mind that if you have never encountered this series before, then don't take too literally the one hour limit, as far as understanding the text in each chapter. Some chapters will naturally be more important and cover more complex concepts than others. If you need extra time, take it. The shoehorning into an hour is only an approximation.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
What might be the simpler chapters? One could be that on controlling program flow, using while, do-while and for loops. The most important item in this chapter is that you should use these constructs whenever possible, in place of goto. Yes, you can use goto in C++. But the book warns that this leads to spaghetti code. Tangled and difficult to debug and extend. Goto is a tempting shortcut to beginners that must be resisted.

A more complicated chapter is on pointers.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Describing the some of the myriad ways that they can be used and misused. There is ample warning about pointer errors. The book does not do a comparative analysis with other languages. But you should know that the designers of Java thought pointer bugs in C/C++ were so numerous and miserable that pointer arithmetic has been essentially banned in Java. Yeah, you want to be a C++ programmer; why else would you be considering this book? That's fair enough. But it doesn't hurt to know some of the key differences between C++ and its major alternative, which seems to be Java. If nothing else, this particular difference can keep you focused on very carefully writing pointer code.

&lt;/div&gt;
&lt;a name='more'&gt;&lt;/a&gt;&amp;nbsp;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://ifile.it/dl76af/__Sams_Teach_Yourself_C___in_One_Hour_a_Day__6th_Edition___Sams_Teach_Yourself_.pdf" target="_blank"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-%0A%0AWQyMix9kKMs/TuxgnzOVa5I/AAAAAAAAD2w/nunVZoNcYQ0/s1600/downq.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-851872209339098994?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/0uekb2aq8_1T8NShzkKGDruOXzI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0uekb2aq8_1T8NShzkKGDruOXzI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/0uekb2aq8_1T8NShzkKGDruOXzI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/0uekb2aq8_1T8NShzkKGDruOXzI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/Mn6SkPHGk7U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/851872209339098994/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/12/free-download-sams-teach-yourself-c-in.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/851872209339098994?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/851872209339098994?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/Mn6SkPHGk7U/free-download-sams-teach-yourself-c-in.html" title="Free Download | Sams Teach Yourself C++ in One Hour a Day (6th Edition) (Sams Teach Yourself)   by:  Jesse Liberty, Siddhartha Rao, Bradley L. Jones" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-Es6-9pgarPA/Tuxisu3HZnI/AAAAAAAAD24/PVdVMQyISnw/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/12/free-download-sams-teach-yourself-c-in.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkQDRnYzcSp7ImA9WhRXEUw.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-225113493385784608</id><published>2011-12-17T16:32:00.003+07:00</published><updated>2011-12-17T16:32:57.889+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-17T16:32:57.889+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="F# Programming" /><title>Free Download | Beginning F# | Robert Pickering</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-_VVLpir87u0/TuxgOIYmgmI/AAAAAAAAD2o/wZzFbgx7Vqs/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-_VVLpir87u0/TuxgOIYmgmI/AAAAAAAAD2o/wZzFbgx7Vqs/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Functional programming is perhaps the next big wave in application development. As experienced developers know, functional programming makes its mark by allowing application builders to develop solutions to complicated programming situations cleanly and efficiently. A rich history of functional languages, including Erlang and OCaml, leads the way to F#, Microsoft's effort to bring the elegance and focus of functional programming into the world of managed code and .NET.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
With Beginning F#, you have a companion that that will help you explore F# and functional programming in a .NET environment. This book is both a comprehensive introduction to all aspects of the language and an incisive guide to using F# for real-world professional development.

Reviewed by Don Syme, the chief architect of F# at Microsoft Research, Beginning F# is a great foundation for exploring functional programming and its role in the future of application development.&lt;br /&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://ifile.it/fmcpsa/__Beginning_F_.pdf" target="_blank"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-WQyMix9kKMs/TuxgnzOVa5I/AAAAAAAAD2w/nunVZoNcYQ0/s1600/downq.png" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;br /&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-225113493385784608?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/1ivV3B2jUrLsr7BTi_jwH0bwPt4/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1ivV3B2jUrLsr7BTi_jwH0bwPt4/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/1ivV3B2jUrLsr7BTi_jwH0bwPt4/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/1ivV3B2jUrLsr7BTi_jwH0bwPt4/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/5l0Cd1CPmck" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/225113493385784608/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/12/free-download-beginning-f-robert.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/225113493385784608?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/225113493385784608?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/5l0Cd1CPmck/free-download-beginning-f-robert.html" title="Free Download | Beginning F# | Robert Pickering" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-_VVLpir87u0/TuxgOIYmgmI/AAAAAAAAD2o/wZzFbgx7Vqs/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/12/free-download-beginning-f-robert.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04MRX09eSp7ImA9WhRQFkU.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-7486300059949737406</id><published>2011-12-12T17:33:00.000+07:00</published><updated>2011-12-12T17:33:04.361+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-12T17:33:04.361+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="C++ Programming" /><title>Free Download | Cryptography in C and C++ | Michael Welschenbach</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-oIGvorUGbxs/TuXYRQy9RsI/AAAAAAAAD1c/jTmQJ1ncKJs/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-oIGvorUGbxs/TuXYRQy9RsI/AAAAAAAAD1c/jTmQJ1ncKJs/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Cryptography in C and C++ mainly focuses on the practical aspects involved in implementing public key cryptography methods, such as the RSA algorithm that was recently released from patent protection. It also gives both a technical overview and an implementation of the Rijndael algorithm that was selected as the Advanced Encryption Standard by the U.S. government. Author Michael Welschenbach avoids complexities by explaining cryptography and its mathematical basis in terms a programmer can easily understand.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
This book offers a comprehensive yet relentlessly practical overview of the fundamentals of modern cryptography. It contains a wide-ranging library of code in C and C++, including the RSA algorithm, completed by an extensive Test Suite that proves that the code works correctly. Readers will learn, step by step, how to implement a platform-independent library for the all-important multiprecision arithmetic used in modern cryptography. This is followed by an implementation of the cryptographic algorithms themselves.

The CD-ROM includes all the programs presented in the book, x86 assembler programs for basic arithmetical operations, implementations of the new Rijndael Advanced Encryption Standard algorithm in both C and C++, and more.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/x6wo53/ebooksclub.org__Cryptography_in_C_and_C__.chm" target="_blank"&gt;
&lt;input name="download" type="submit" value="Cryptography in C and C++" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-7486300059949737406?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/u-IJdZIODGNcz_wm3y67VZI7u1k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/u-IJdZIODGNcz_wm3y67VZI7u1k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/u-IJdZIODGNcz_wm3y67VZI7u1k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/u-IJdZIODGNcz_wm3y67VZI7u1k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/xr4oxUxBEfw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/7486300059949737406/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/12/free-download-cryptography-in-c-and-c.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/7486300059949737406?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/7486300059949737406?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/xr4oxUxBEfw/free-download-cryptography-in-c-and-c.html" title="Free Download | Cryptography in C and C++ | Michael Welschenbach" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-oIGvorUGbxs/TuXYRQy9RsI/AAAAAAAAD1c/jTmQJ1ncKJs/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/12/free-download-cryptography-in-c-and-c.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUQCQX07fip7ImA9WhRQFkU.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-9150066281962467202</id><published>2011-12-12T16:49:00.000+07:00</published><updated>2011-12-12T16:49:20.306+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-12T16:49:20.306+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Cocoa" /><category scheme="http://www.blogger.com/atom/ns#" term="Mac OS X" /><title>Free Download | Cocoa programming for Mac OS X | Aaron Hillegass</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/--ww7AsDsIpQ/TuXN3xoT1AI/AAAAAAAADzs/sZP59v5pJLI/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/--ww7AsDsIpQ/TuXN3xoT1AI/AAAAAAAADzs/sZP59v5pJLI/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Harness the power of Cocoa's object-oriented software development environment with this book that is completely updated for Mac OS X 10.2. Cocoa has quickly gained recognition as the leading development framework for building OS X applications.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Users will understand the common features found in Cocoa's tools: InterfaceBuilder, ProjectBuilder, the GCC compiler and the GDB debugger.

Common terms and phrases:
AppController AppleScript BigLetterView button GNUstep instance variables Interface Builder Mac OS X nib file Object Diagram Objective-C plist text field window Xcode&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/18q0is/ebooksclub.org__Cocoa_programming_for_Mac_OS_X.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="Cocoa programming " /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-9150066281962467202?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/JsU3uXPXepPYtaT_6OGUWzrUR_w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JsU3uXPXepPYtaT_6OGUWzrUR_w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/JsU3uXPXepPYtaT_6OGUWzrUR_w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/JsU3uXPXepPYtaT_6OGUWzrUR_w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/akgUOBWhLh0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/9150066281962467202/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/12/free-download-cocoa-programming-for-mac.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/9150066281962467202?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/9150066281962467202?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/akgUOBWhLh0/free-download-cocoa-programming-for-mac.html" title="Free Download | Cocoa programming for Mac OS X | Aaron Hillegass" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/--ww7AsDsIpQ/TuXN3xoT1AI/AAAAAAAADzs/sZP59v5pJLI/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/12/free-download-cocoa-programming-for-mac.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkUCQXg6eCp7ImA9WhRQEkg.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-2348171781966774610</id><published>2011-12-07T17:36:00.001+07:00</published><updated>2011-12-07T17:37:40.610+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-12-07T17:37:40.610+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | Java for Programmers, Second Edition | Paul J. Deitel, Harvey M. Deitel</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://4.bp.blogspot.com/-uwzZfNBwoho/Tt9BzSTGKXI/AAAAAAAADls/adYEZOchUmo/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-uwzZfNBwoho/Tt9BzSTGKXI/AAAAAAAADls/adYEZOchUmo/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The professional programmer's Deitel(R) guide to &lt;b&gt;Java&lt;/b&gt;(TM) development and the powerful &lt;b&gt;Java&lt;/b&gt; platformWritten for programmers with a background in high-level language programming, this book applies the Deitel signature live-code approach to teaching programming and explores the &lt;b&gt;Java&lt;/b&gt; language and &lt;b&gt;Java&lt;/b&gt; APIs in depth. The book presents concepts in the context of fully tested programs, complete with syntax shading, code highlighting, line-by-line code walkthroughs and program outputs.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The book features 200+ complete &lt;b&gt;Java&lt;/b&gt; programs with 18,000+ lines of proven &lt;b&gt;Java&lt;/b&gt; code, and hundreds of tips that will help you build robust applications. Start with an introduction to &lt;b&gt;Java&lt;/b&gt; using an early classes and objects approach, then rapidly move on to more advanced topics, including GUI, graphics, exception handling, generics, collections, JDBC(TM), web-application development with &lt;b&gt;Java&lt;/b&gt;Server(TM) Faces, web services and more. You'll enjoy the Deitels' classic treatment of object-oriented programming and the OOD/UML(R) ATM case study, including a complete &lt;b&gt;Java&lt;/b&gt; implementation. When you're finished, you'll have everything you need to build object-oriented Java applications.&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/9oy648/ebooksclub.org__Java_for_Programmers__Second_Edition.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="Java for Programmers" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-2348171781966774610?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/tybIeQJ7RF1PIcfsWbGMAhhHFxk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tybIeQJ7RF1PIcfsWbGMAhhHFxk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/tybIeQJ7RF1PIcfsWbGMAhhHFxk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/tybIeQJ7RF1PIcfsWbGMAhhHFxk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/X5FvoFU6YHg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/2348171781966774610/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/12/free-download-java-for-programmers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/2348171781966774610?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/2348171781966774610?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/X5FvoFU6YHg/free-download-java-for-programmers.html" title="Free Download | Java for Programmers, Second Edition | Paul J. Deitel, Harvey M. Deitel" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-uwzZfNBwoho/Tt9BzSTGKXI/AAAAAAAADls/adYEZOchUmo/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/12/free-download-java-for-programmers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkYDSXg7eip7ImA9WhRRFE0.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-6117046192293750917</id><published>2011-11-27T20:21:00.001+07:00</published><updated>2011-11-27T20:22:58.602+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-27T20:22:58.602+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="C++ Programming" /><title>Free Download | The C Programming Language, Second Edition | Brian W. Kernighan, Dennis M. Ritchie</title><content type="html">&lt;div class="separator" style="clear: both; text-align: justify;"&gt;
&lt;a href="http://4.bp.blogspot.com/-yOGrPY9JC4o/TtI5bBq89ZI/AAAAAAAADhE/s5Yu76g3fNo/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-yOGrPY9JC4o/TtI5bBq89ZI/AAAAAAAADhE/s5Yu76g3fNo/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 468x60, ImageBanner */
google_ad_slot = "2822497014";
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;
Let me start off by saying that I'm not a novice programmer, so this 
review will be biased given that fact alone. That said this book was an 
eye opener on so many levels. One thing that is NEVER touched upon by 
other C programming books is project management and modularization. 
Chapter 4 of this book had a great discussion on techniques to organize 
code. This is not a big deal for the hobbyist, but for us programmers in
 industry dealing with large embedded projects it is. E.g., try to avoid
 extern variables, publish only what is needed to header files, etc. &lt;/div&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;
Outside of that K&amp;amp;R avoids the pitfall of discussing every single&amp;nbsp;
point; they only discuss what is necessary to write modular, system 
independent, and well organized code. This book also discusses the 
history of parts of the language and what the intent was when writing 
the language. This is far more important than many people think because 
now you're tapping into years of rich programming experience at Bell 
labs where K&amp;amp;R worked. &lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;
Lastly, this book CAN be conquered by novice programmers, but they will 
have to read this book slowly and hang on every word. This isn't too 
daunting because, excluding the reference, we're looking at 189 pages of
 text. Not all of the problems need be worked to gain full understanding
 of this book. Some problems are trivial, while others are so broad that
 the answers border on becoming subjective. Either way, they should all 
be attempted and thought about. A solution manual is worth investing in,
 but is not necessary. If you decide to embark on the journey through 
this book devote AT LEAST a month to it. Reading slowly and actively 
thinking about what's going on will reward you with a lifetime of C 
programming knowledge.&lt;br /&gt;
&lt;/div&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/wbn9q5/ebooksclub.org__The__C_Programming_Language__Second_Edition.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="The C Programming Language" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-6117046192293750917?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/5n19hU9B5HJh6w0IZIuxMDnuXNo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5n19hU9B5HJh6w0IZIuxMDnuXNo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/5n19hU9B5HJh6w0IZIuxMDnuXNo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/5n19hU9B5HJh6w0IZIuxMDnuXNo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/pXwW4RvuTU8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/6117046192293750917/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/11/free-download-c-programming-language.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6117046192293750917?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6117046192293750917?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/pXwW4RvuTU8/free-download-c-programming-language.html" title="Free Download | The C Programming Language, Second Edition | Brian W. Kernighan, Dennis M. Ritchie" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-yOGrPY9JC4o/TtI5bBq89ZI/AAAAAAAADhE/s5Yu76g3fNo/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/11/free-download-c-programming-language.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkANRnsyeip7ImA9WhRRE0g.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-5282332110303239204</id><published>2011-11-27T08:52:00.001+07:00</published><updated>2011-11-27T08:53:17.592+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-27T08:53:17.592+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Coder" /><title>Free Download | The Clean Coder: A Code of Conduct for Professional Programmers (Robert C. Martin Series) | Robert C. Martin</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-7CDtqVQRQwE/TtGX3e30ASI/AAAAAAAADcI/fN9S5ro_98A/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-7CDtqVQRQwE/TtGX3e30ASI/AAAAAAAADcI/fN9S5ro_98A/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Programmers who endure and succeed amidst swirling uncertainty and nonstop pressure share a common attribute: They care deeply about the practice of creating software. They treat it as a craft. They are professionals.  

In The Clean Coder: A Code of Conduct for Professional Programmers, legendary software expert Robert C. Martin introduces the disciplines, techniques, tools, and practices of true software craftsmanship.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
This book is packed with practical advice—about everything from estimating and coding to refactoring and testing. It covers much more than technique: It is about attitude. Martin shows how to approach software development with honor, self-respect, and pride; work well and work clean; communicate and estimate faithfully; face difficult decisions with clarity and honesty; and understand that deep knowledge comes with a responsibility to act.&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/p1ouer/ebooksclub.org__The_Clean_Coder__A_Code_of_Conduct_for_Professional_Programmers__Robert_C__Martin_Series_.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="The Clean Coder" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-5282332110303239204?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9Utb5r5e050FM7-5fPcJjUiFzjk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9Utb5r5e050FM7-5fPcJjUiFzjk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9Utb5r5e050FM7-5fPcJjUiFzjk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9Utb5r5e050FM7-5fPcJjUiFzjk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/qgWxBWljy84" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/5282332110303239204/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/11/free-download-clean-coder-code-of.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/5282332110303239204?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/5282332110303239204?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/qgWxBWljy84/free-download-clean-coder-code-of.html" title="Free Download | The Clean Coder: A Code of Conduct for Professional Programmers (Robert C. Martin Series) | Robert C. Martin" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-7CDtqVQRQwE/TtGX3e30ASI/AAAAAAAADcI/fN9S5ro_98A/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/11/free-download-clean-coder-code-of.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYHQXY7eCp7ImA9WhRREkQ.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-7071716622287039133</id><published>2011-11-26T14:37:00.001+07:00</published><updated>2011-11-26T14:38:50.800+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-26T14:38:50.800+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Compilers" /><title>Free Download | Principles of Compilers: A New Approach to Compilers Including the Algebraic Method | Yunlin Su, Song Y. Yan</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-3JFMDeDE_sU/TtCXaZDlGdI/AAAAAAAADZI/f28b2sANB9E/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-3JFMDeDE_sU/TtCXaZDlGdI/AAAAAAAADZI/f28b2sANB9E/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
"Principles of Compilers: A New Approach to Compilers Including the Algebraic Method" introduces the ideas of the compilation from the natural intelligence of human beings by comparing similarities and differences between the compilations of natural languages and programming languages. The notation is created to list the source language, target languages, and compiler language, vividly illustrating the multilevel procedure of the compilation in the process.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The book thoroughly explains the LL(1) and LR(1) parsing methods to help readers to understand the how and why. It not only covers established methods used in the development of compilers, but also introduces an increasingly important alternative - the algebraic formal method. This book is intended for undergraduates, graduates and researchers in computer science.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Professor Yunlin Su is Head of the Research Center of Information Technology, Universitas Ma Chung, Indonesia and Department of Computer Science, Jinan University, Guangzhou, China. Dr. Song Y. Yan is a Professor of Computer Science and Mathematics at the Institute for Research in Applicable Computing, University of Bedfordshire, UK and Visiting Professor at the Massachusetts Institute of Technology and Harvard University, USA.&amp;nbsp;&lt;/div&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/jv0t1m/ebooksclub.org__Principles_of_Compilers__A_New_Approach_to_Compilers_Including_the_Algebraic_Method.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="Principles of Compilers" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-7071716622287039133?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/PdnDwm3NZ5g9Rd5oRkYL3HZWfJk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PdnDwm3NZ5g9Rd5oRkYL3HZWfJk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/PdnDwm3NZ5g9Rd5oRkYL3HZWfJk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/PdnDwm3NZ5g9Rd5oRkYL3HZWfJk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/s1X05IklEgo" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/7071716622287039133/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/11/free-download-principles-of-compilers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/7071716622287039133?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/7071716622287039133?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/s1X05IklEgo/free-download-principles-of-compilers.html" title="Free Download | Principles of Compilers: A New Approach to Compilers Including the Algebraic Method | Yunlin Su, Song Y. Yan" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-3JFMDeDE_sU/TtCXaZDlGdI/AAAAAAAADZI/f28b2sANB9E/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/11/free-download-principles-of-compilers.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUQBQ38zfyp7ImA9WhRREEg.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-6090570788368358076</id><published>2011-11-23T21:06:00.001+07:00</published><updated>2011-11-23T21:09:12.187+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-23T21:09:12.187+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Microsoft Guide" /><title>Free Download | Microsoft Project 2010 Inside Out | Teresa S. Stover, Bonnie Biafore, Andreea Marinescu</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://1.bp.blogspot.com/-XggcipTCsrw/Tsz-YB-JomI/AAAAAAAADVQ/sQy1Y4rOaTc/s1600/program.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-XggcipTCsrw/Tsz-YB-JomI/AAAAAAAADVQ/sQy1Y4rOaTc/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Conquer Microsoft Project 2010—from the inside out! You're beyond the basics, so dive right in and really put your project management skills to work! This supremely organized reference packs hundreds of timesaving solutions, troubleshooting tips, and workarounds. It's all muscle and no fluff. Discover how the experts tackle Project 2010—and challenge yourself to new levels of mastery.&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Take charge of the project triangle—time, money, and scope—to balance your plan Enable collaboration among team members, sponsors, and other project stakeholders Manually schedule tasks or use the automatic scheduling engine Track and control your project using earned value analysis Create pivot views of project data with Microsoft Excel® 2010 and Visio® 2010 Manage project activities in an enterprise project-management environment Apply your experience to future projects by creating your own custom templates&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;form action="http://ifile.it/ue27rz/ebooksclub.org__Microsoft_Project_2010_Inside_Out.epub" target="_blank"&gt;
&lt;input name="download" type="submit" value="Microsoft Project 2010 Inside Out" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-6090570788368358076?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/-1me9R2wogJT3Y69h0FBFSGL40Q/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-1me9R2wogJT3Y69h0FBFSGL40Q/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/-1me9R2wogJT3Y69h0FBFSGL40Q/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/-1me9R2wogJT3Y69h0FBFSGL40Q/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/d4EZy2cXX5o" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/6090570788368358076/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/11/free-download-microsoft-project-2010.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6090570788368358076?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6090570788368358076?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/d4EZy2cXX5o/free-download-microsoft-project-2010.html" title="Free Download | Microsoft Project 2010 Inside Out | Teresa S. Stover, Bonnie Biafore, Andreea Marinescu" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-XggcipTCsrw/Tsz-YB-JomI/AAAAAAAADVQ/sQy1Y4rOaTc/s72-c/program.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/11/free-download-microsoft-project-2010.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0YASXs6eip7ImA9WhRREE8.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-8454073656718515848</id><published>2011-11-23T13:15:00.001+07:00</published><updated>2011-11-23T13:19:08.512+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-23T13:19:08.512+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Compilers" /><title>Free Download | C Compilers for ASIPs: Automatic Compiler Generation with LISA  | Manuel Hohenauer, Rainer Leupers</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://2.bp.blogspot.com/-33RiMzUa5FY/TsyP3MhA0II/AAAAAAAADU4/OvOIn6WA5JE/s1600/program.jpg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-33RiMzUa5FY/TsyP3MhA0II/AAAAAAAADU4/OvOIn6WA5JE/s1600/program.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
The ever increasing complexity and performance requirements of modern electronic devices are changing the way embedded systems are designed and implemented today. The current trend is towards programmable System-on-Chip platforms which employ an increasing number of Application Specific Instruction-set Processors (ASIPs) as building blocks. ASIP design platforms comprise retargetable software development tools that can be adapted quickly to varying target processor configurations. Such tools are usually driven by a processor model given in an Architecture Description Language (ADL), such as LISA. One of the major challenges in this context is retargetable compilation for high-level programming languages like C. First of all, an ADL must capture the architectural information needed for the tool generation in an unambiguous and consistent way. This is particularly difficult for compiler and instruction-set simulator.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;
Moreover, there exists a trade-off between the compiler's flexibility and the quality of compiled code.

This book presents a novel approach for ADL-based instruction-set description in order to enable the automatic retargeting of the complete software toolkit from a single ADL processor model. Additionally, this book includes retargetable optimization techniques for architectures with SIMD and Predicated Execution support. Both allows a high speedup in compiler generation and combines high flexibility with acceptable code quality at the same time. Coverage includes a comprehensive overview of retargetable compilers and ADL based processor design, a methodology and related toolkit to generate a C-compiler fully automatically from an ADL processor model, and retargetable code optimization techniques. Presents a strong background and various perspectives of architecture description language (ADL)-based processor design and the retargetable compilation problem; Provides the history of ADL based processor design, making the reader knowledgeable about the past research as well as the difficulties faced over time; Offers an ADL based modelling formalism and corresponding implementation methods, which can be used for automatic compiler retargeting to quickly obtain compiler support for newly developed ASIPs; Presents retargetable optimization techniques for common ASIP features, which can be quickly adapted to varying target processor configurations and help to meet the stringent performance requirements of embedded applications.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
This book presents a novel approach for Architecture Description Language (ADL)-based instruction-set description that enables the automatic retargeting of the complete software toolkit from a single ADL processor model. This allows a high speedup in compiler generation and contributes to a more efficient ASIP design flow. Coverage includes a comprehensive overview of retargetable compilers and ADL based processor design, a methodology and related toolkit to generate a C-compiler fully automatically from an ADL processor model, and retargetable code optimization techniques to achieve retargetability and high code quality for two common architecture classes.&amp;nbsp;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;form action="http://ifile.it/t5dzip/ebooksclub.org__C_Compilers_for_ASIPs__Automatic_Compiler_Generation_with_LISA.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="C Compilers for ASIPs" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-8454073656718515848?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/bgnEjQNmWrwIvzF-H3bNdefG7RE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bgnEjQNmWrwIvzF-H3bNdefG7RE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/bgnEjQNmWrwIvzF-H3bNdefG7RE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/bgnEjQNmWrwIvzF-H3bNdefG7RE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/LEO6mim-H3c" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/8454073656718515848/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/11/free-download-c-compilers-for-asips.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/8454073656718515848?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/8454073656718515848?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/LEO6mim-H3c/free-download-c-compilers-for-asips.html" title="Free Download | C Compilers for ASIPs: Automatic Compiler Generation with LISA  | Manuel Hohenauer, Rainer Leupers" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-33RiMzUa5FY/TsyP3MhA0II/AAAAAAAADU4/OvOIn6WA5JE/s72-c/program.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/11/free-download-c-compilers-for-asips.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEQAQnc6fip7ImA9WhRSGUs.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-7344397822574417892</id><published>2011-11-22T18:37:00.001+07:00</published><updated>2011-11-22T18:45:43.916+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-22T18:45:43.916+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Flash Programming" /><title>Free Download | Flash + After Effects | Chris Jackson</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://3.bp.blogspot.com/-pWewJHr5nr0/TsuJ8Kx9f0I/AAAAAAAADR8/SD8gyycMKm4/s1600/programm.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-pWewJHr5nr0/TsuJ8Kx9f0I/AAAAAAAADR8/SD8gyycMKm4/s1600/programm.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Flash Designers: push Flash to the next level with After Effects robust toolset.&lt;br /&gt;
* Add motion graphics and visual effects to your Flash projects&lt;br /&gt;
* Fuse 3D depth into 2D animations&lt;br /&gt;
* Prepare Flash animations for broadcast&lt;br /&gt;
* Save development time in executing animations&lt;br /&gt;
&lt;br /&gt;
Combine these two powerhouse applications to expand your multimedia 
horizons. Flash + After Effects gives the experienced Flash designer a 
working understanding of the After Effects toolset with professional 
techniques that raise the design bar for Web, broadcast, or CD/DVD 
delivery. The companion DVD contains project media that permit you to 
practice essential After Effects skills that include: &lt;br /&gt;
* Working with video and the AE timeline&lt;br /&gt;
* Using alpha channels for keying and enhancing interactivity&lt;br /&gt;
* Putting vector animation to work with Text and Shape Layers, and animation presets&lt;br /&gt;
* Creating 3D backgrounds with cameras and lights&lt;br /&gt;
* Animating with Behaviors, Parenting, Expressions and the Puppet Tool&lt;br /&gt;
You also get a video primer, render and file optimization techniques, and publishing and streaming guidelines.&lt;br /&gt;
&lt;br /&gt;
Combine two powerhouse applications to:&lt;br /&gt;
* Add motion graphics and visual effects&lt;br /&gt;
* Fuse 3D depth into 2D animations&lt;br /&gt;
* Prepare Flash animations for broadcast&lt;br /&gt;
* Save development time&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
&lt;/div&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;
&lt;form action="http://ifile.it/bpgqkh/ebooksclub.org__Flash___After_Effects.pdf" target="_blank"&gt;
&lt;input name="download" type="submit" value="Flash + After Effects" /&gt;&lt;/form&gt;
&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-7344397822574417892?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/DTnOWzy7MuhIYVWeFfJxumar1B0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DTnOWzy7MuhIYVWeFfJxumar1B0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/DTnOWzy7MuhIYVWeFfJxumar1B0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/DTnOWzy7MuhIYVWeFfJxumar1B0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/2ZyVddejoO4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/7344397822574417892/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/11/free-download-flash-after-effects-chris.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/7344397822574417892?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/7344397822574417892?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/2ZyVddejoO4/free-download-flash-after-effects-chris.html" title="Free Download | Flash + After Effects | Chris Jackson" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-pWewJHr5nr0/TsuJ8Kx9f0I/AAAAAAAADR8/SD8gyycMKm4/s72-c/programm.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/11/free-download-flash-after-effects-chris.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEAQX44fCp7ImA9WhZbGEU.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-6189828488071178206</id><published>2011-06-24T10:53:00.001+07:00</published><updated>2011-06-24T10:54:00.034+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-24T10:54:00.034+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Database Programming" /><title>Free Download | Random Walks and Diffusions on Graphs and Databases: An Introduction</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-haayCmd7xPU/TgQKMHHPTXI/AAAAAAAADB8/oX8_x3dabeM/s1600/programming.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="200" src="http://1.bp.blogspot.com/-haayCmd7xPU/TgQKMHHPTXI/AAAAAAAADB8/oX8_x3dabeM/s200/programming.jpg" width="133" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Most networks and databases that humans have to deal with contain large, albeit finite number of units. Their structure, for maintaining functional consistency of the components, is essentially not random and calls for a precise quantitative description of relations between nodes (or data units) and all network components. This book is an introduction, for both graduate students and newcomers to the field, to the theory of graphs and random walks on such graphs.&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;The methods based on random walks and diffusions for exploring the structure of finite connected graphs and databases are reviewed (Markov chain analysis).&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;This provides the necessary basis for consistently discussing a number of applications such diverse as electric resistance networks, estimation of land prices, urban planning, linguistic databases, music, and gene expression regulatory networks.&lt;/div&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-2947107954373513";
/* kecil */
google_ad_slot = "3431864398";
google_ad_width = 468;
google_ad_height = 15;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-2947107954373513";
/* banners */
google_ad_slot = "1556872715";
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;br /&gt;
&lt;a href="http://ifile.it/9wqri1/ebooksclub.org__Random_Walks_and_Diffusions_on_Graphs_and_Databases__An_Introduction.l_76x0x61xn1.pdf"&gt;Random Walks and Diffusions&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-6189828488071178206?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/cHfiPx-fg2LNS7e54YXUcolryew/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cHfiPx-fg2LNS7e54YXUcolryew/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/cHfiPx-fg2LNS7e54YXUcolryew/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/cHfiPx-fg2LNS7e54YXUcolryew/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/6FWCAFp7f2E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/6189828488071178206/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-random-walks-and.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6189828488071178206?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6189828488071178206?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/6FWCAFp7f2E/free-download-random-walks-and.html" title="Free Download | Random Walks and Diffusions on Graphs and Databases: An Introduction" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-haayCmd7xPU/TgQKMHHPTXI/AAAAAAAADB8/oX8_x3dabeM/s72-c/programming.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-random-walks-and.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0ACR3g8cSp7ImA9WhZbGEw.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-8161504249073223370</id><published>2011-06-23T13:49:00.000+07:00</published><updated>2011-06-23T13:49:26.679+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-23T13:49:26.679+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | Thinking in Java (4th Edition) | Bruce Eckel</title><content type="html">&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 468x60, ImageBanner */
google_ad_slot = "2822497014";
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-BjcQhs11ono/TgLh1CSZHHI/AAAAAAAAC9k/WMd9vV1oOFc/s1600/programming.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="200" src="http://1.bp.blogspot.com/-BjcQhs11ono/TgLh1CSZHHI/AAAAAAAAC9k/WMd9vV1oOFc/s200/programming.jpg" width="151" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="float: left; margin-right: 0.5em;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 336x280, Image Ads */
google_ad_slot = "6333942057";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;Perfect for migrating to Java from a fellow object-oriented language (such as C++), the second edition of Thinking in Java continues the earlier version's thoughtful approach to learning Java inside and out, while also bringing it up to speed with some of the latest in Java 2 features. This massive tutorial covers many of the nooks and crannies of the language, which is of great value in the programming world. The most prominent feature of the book is its diligent and extremely thorough treatment of the Java language, with special attention to object design. (For instance, 10 pages of sample code show all of the available operators.) Some of the best thinking about objects is in this book, including when to use composition over inheritance. &lt;/div&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://ifile.it/6r24xu/ebooksclub.org__Thinking_in_Java__4th_Edition_.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="Thinking in Java" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-8161504249073223370?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/osAoo_7Q_EZ6CWBCvYRyOZoNtRM/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/osAoo_7Q_EZ6CWBCvYRyOZoNtRM/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/osAoo_7Q_EZ6CWBCvYRyOZoNtRM/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/osAoo_7Q_EZ6CWBCvYRyOZoNtRM/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/ER2nBbsgBEc" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/8161504249073223370/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-thinking-in-java-4th.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/8161504249073223370?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/8161504249073223370?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/ER2nBbsgBEc/free-download-thinking-in-java-4th.html" title="Free Download | Thinking in Java (4th Edition) | Bruce Eckel" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-BjcQhs11ono/TgLh1CSZHHI/AAAAAAAAC9k/WMd9vV1oOFc/s72-c/programming.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-thinking-in-java-4th.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0INQXw_cCp7ImA9WhRREE8.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-1207710579204477162</id><published>2011-06-22T15:43:00.000+07:00</published><updated>2011-11-23T13:26:30.248+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-11-23T13:26:30.248+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Visual Basic Programming" /><title>Free Download | Microsoft VBA Professional Projects</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;
&lt;a href="http://ec1.images-amazon.com/images/I/51C89SXZ2NL._AA240_.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="200" src="http://ec1.images-amazon.com/images/I/51C89SXZ2NL._AA240_.jpg" width="160" /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style="text-align: justify;"&gt;
Use VBA to accomplish real-world, professional tasks. Incorporating four hands-on projects, Microsoft VBA Professional Projects is your key to unlocking the power of Visual Basic for Applications.&lt;br /&gt;
&lt;br /&gt;
Each project focuses on a specific concept and is based on a real-world situation. Enhance your VBA skills as you create a skill search application, a word checker tool, and a selling application.&lt;br /&gt;
&lt;br /&gt;
You will be able to use the skills that you develop throughout the book to modify the projects as needed to fit your professional needs. &lt;/div&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;form action="http://www.4shared.com/file/13392952/119deec4/Vba_Professional_Projects.html" target="_blank"&gt;
&lt;input name="download" type="submit" value="Microsoft VBA Professional Projects" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-1207710579204477162?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ZAPZUolEJfu_KhZrfC6K0vLxJiw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZAPZUolEJfu_KhZrfC6K0vLxJiw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ZAPZUolEJfu_KhZrfC6K0vLxJiw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ZAPZUolEJfu_KhZrfC6K0vLxJiw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/-8__7Wk8X8Y" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/1207710579204477162/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-microsoft-vba.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1207710579204477162?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1207710579204477162?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/-8__7Wk8X8Y/free-download-microsoft-vba.html" title="Free Download | Microsoft VBA Professional Projects" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-microsoft-vba.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0EBSXozeCp7ImA9WhZbF08.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-6027745873486280539</id><published>2011-06-22T13:53:00.001+07:00</published><updated>2011-06-22T13:54:18.480+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T13:54:18.480+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | Enterprise JavaBeans | Richard Monson-Haefel</title><content type="html">&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 468x60, ImageBanner */
google_ad_slot = "2822497014";
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-J9P7Ts_Ek-c/TgGRWcMlDgI/AAAAAAAAC8o/bY3pPz3nfzw/s1600/programming.jpg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-J9P7Ts_Ek-c/TgGRWcMlDgI/AAAAAAAAC8o/bY3pPz3nfzw/s1600/programming.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Enterprise JavaBeans (EJB) is a major new technology for server-side application development in Java. It offers a component architecture for developing distributed, multitiered enterprise applications. This model allows you to build complex, mission-critical systems using simple snap-together pieces that model individual business objects and processes. EJB greatly simplifies the process of development by automatically taking care of system issues like object persistence and transaction management.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="float: left; margin-right: 0.45em;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* download_button */
google_ad_slot = "0142325097";
google_ad_width = 336;
google_ad_height = 280;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;This book provides a thorough introduction to EJB for the enterprise software developer. It shows you how to develop enterprise Beans to model your business objects and processes. It also shows you how to develop client applications that use the Beans to perform useful work. One powerful advantage of the EJB architecture is that it allows you to partition work appropriately between different parts of the system: the database provides persistence, your Beans model various business entities and the interactions between them, and your client application provides a user interface, but incorporates minimal business logic. The end result is a highly flexible system built from components that can easily be reused, and that can be changed to suit your needs without upsetting other parts of the system. Enterprise JavaBeans teaches you how to take advantage of the flexibility and simplicity that this powerful new architecture provides.&lt;/div&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://mediafire.com/?9bbqe7v76cws2d1" target="_blank"&gt;&lt;input name="download" type="submit" value=" Enterprise JavaBeans" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-6027745873486280539?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ResMKT3flQ_Z0-FriD4q6lxVJG8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ResMKT3flQ_Z0-FriD4q6lxVJG8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ResMKT3flQ_Z0-FriD4q6lxVJG8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ResMKT3flQ_Z0-FriD4q6lxVJG8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/KKgNDj66nFY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/6027745873486280539/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-enterprise-javabeans.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6027745873486280539?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/6027745873486280539?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/KKgNDj66nFY/free-download-enterprise-javabeans.html" title="Free Download | Enterprise JavaBeans | Richard Monson-Haefel" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-J9P7Ts_Ek-c/TgGRWcMlDgI/AAAAAAAAC8o/bY3pPz3nfzw/s72-c/programming.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-enterprise-javabeans.html</feedburner:origLink></entry><entry gd:etag="W/&quot;AkQER3w4fyp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-4839305313288143487</id><published>2011-06-22T11:51:00.000+07:00</published><updated>2011-06-22T11:51:46.237+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T11:51:46.237+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="OpenCV" /><title>Free Download | OpenCV 2 Computer Vision Application Programming Cookbook | Robert Laganière</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-Ol5haVpykv8/TgF0yrHj28I/AAAAAAAAC68/LRTnZNZMYNg/s1600/programming.jpeg" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-Ol5haVpykv8/TgF0yrHj28I/AAAAAAAAC68/LRTnZNZMYNg/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;Over 50 recipes to master this library of programming functions for real-time computer vision Teaches you how to program computer vision applications in C++ using the different features of the OpenCV library Demonstrates the important structures and functions of OpenCV in detail with complete working examples Describes fundamental concepts in computer vision and image processing Gives you advice and tips to create more effective object-oriented computer vision programs Contains examples with source code and shows results obtained on real images with detailed explanations and the required screenshots In Detail In today's digital world, images are everywhere, and with the advent of powerful and affordable computing devices, it has become possible to create sophisticated applications manipulating images and videos.&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div 0px;”="" 0px="" style="float: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Adding special effects, enhancing image features, performing object recognition, and reconstructing 3D information are tasks that can be programmed easily with the OpenCV library, which is a widely used open source library that offers a rich set of advanced computer vision algorithms. OpenCV 2 Computer Vision Application Programming Cookbook will introduce you to numerous computer vision algorithms included in the OpenCV library. You will learn how to read, write, create and manipulate images. You will explore different techniques commonly used in image analysis and how they can be effectively implemented in C++. The book provides a complete introduction to the OpenCV library and explains how to build your first computer vision program. You will be presented with a variety of computer vision algorithms and be exposed to important concepts in image analysis that will enable you to build your own computer vision applications. The book helps you to get started with the library, showing you how to install and deploy the OpenCV library to write effective computer vision applications following good programming practices.&lt;/div&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://ifile.it/d96atw/ebooksclub.org__OpenCV_2_Computer_Vision_Application_Programming_Cookbook.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="OpenCV 2 Computer Vision" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-4839305313288143487?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/iAjl40sMEfXR-EZ28NemPxVT5ro/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iAjl40sMEfXR-EZ28NemPxVT5ro/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/iAjl40sMEfXR-EZ28NemPxVT5ro/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/iAjl40sMEfXR-EZ28NemPxVT5ro/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/kb3w9QnOfLs" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/4839305313288143487/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-opencv-2-computer-vision.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/4839305313288143487?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/4839305313288143487?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/kb3w9QnOfLs/free-download-opencv-2-computer-vision.html" title="Free Download | OpenCV 2 Computer Vision Application Programming Cookbook | Robert Laganière" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-Ol5haVpykv8/TgF0yrHj28I/AAAAAAAAC68/LRTnZNZMYNg/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-opencv-2-computer-vision.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU4CSHg6fyp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-93457696911823716</id><published>2011-06-22T11:46:00.000+07:00</published><updated>2011-06-22T11:46:09.617+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T11:46:09.617+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="e-commerce" /><title>Free Download | Joomla! VirtueMart 1.1 Theme and Template Design | Joseph Kwan</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-IGn_A2ToTKc/TgFzhBJlHUI/AAAAAAAAC60/SDxTDc1b3ZA/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-IGn_A2ToTKc/TgFzhBJlHUI/AAAAAAAAC60/SDxTDc1b3ZA/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;This book is a step-by-step tutorial that will teach you to customize VirtueMart templates and themes. It includes all the essential screenshots and code with exhaustive explanations accompanied by exercises to ensure good pickup. You may be the owner of a Joomla! VirtueMart web store or a designer working with Joomla! VirtueMart. If you want to customize VirtueMart to unleash its enormous potential and elevate your store to the next level, this book is for you. You must have some experience with VirtueMart and understand its basic features. You also need to know HTML and should be comfortable taking up some challenges in PHP and JavaScript programming.&lt;/div&gt;&lt;div 0px;”="" 0px="" style="float: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://ifile.it/alzq8r/ebooksclub.org__Joomla__VirtueMart_1_1_Theme_and_Template_Design.l_76x0x61xn1.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="Joomla! VirtueMart 1.1" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-93457696911823716?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/XkHHPiqx15OlP5UCcBeH4i5rO8w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XkHHPiqx15OlP5UCcBeH4i5rO8w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/XkHHPiqx15OlP5UCcBeH4i5rO8w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/XkHHPiqx15OlP5UCcBeH4i5rO8w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/1orsSa65YXI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/93457696911823716/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-joomla-virtuemart-11.html#comment-form" title="1 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/93457696911823716?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/93457696911823716?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/1orsSa65YXI/free-download-joomla-virtuemart-11.html" title="Free Download | Joomla! VirtueMart 1.1 Theme and Template Design | Joseph Kwan" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-IGn_A2ToTKc/TgFzhBJlHUI/AAAAAAAAC60/SDxTDc1b3ZA/s72-c/programming.jpeg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-joomla-virtuemart-11.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DU8FR3s_fyp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-1243934641018885557</id><published>2011-06-22T11:43:00.000+07:00</published><updated>2011-06-22T11:43:36.547+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T11:43:36.547+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Database Programming" /><title>Free Download | Oracle 11g R1 R2 Real Application Clusters Essentials</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-sJNtqGKosDA/TgFyyXb7s3I/AAAAAAAAC6w/GWXodT2dmQ4/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-sJNtqGKosDA/TgFyyXb7s3I/AAAAAAAAC6w/GWXodT2dmQ4/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="float: left; margin-right: 1em;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;This book documents how to administer a complex Oracle 11g RAC environment. It covers new RAC components such as ASM’s new features, performance tuning, and troubleshooting. It contains real world examples, expert tips, and troubleshooting advice. This book focuses on Oracle RAC 11g R1 with additional 11g R2 information included. If you are an Oracle DBA who wants to administer Real Application Clusters, then this book is for you. Basic understanding of Oracle DBA is required. No experience of Oracle RAC is required.&lt;/div&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://megaupload.com/?d=DFLXYWG4" target="_blank"&gt;&lt;input name="download" type="submit" value="Oracle 11g R1 R2" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-1243934641018885557?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/hfpBqry2q1ONS0a-4HLe0WjvS3o/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hfpBqry2q1ONS0a-4HLe0WjvS3o/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/hfpBqry2q1ONS0a-4HLe0WjvS3o/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/hfpBqry2q1ONS0a-4HLe0WjvS3o/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/eYVtmKt2deU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/1243934641018885557/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-oracle-11g-r1-r2-real.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1243934641018885557?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1243934641018885557?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/eYVtmKt2deU/free-download-oracle-11g-r1-r2-real.html" title="Free Download | Oracle 11g R1 R2 Real Application Clusters Essentials" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-sJNtqGKosDA/TgFyyXb7s3I/AAAAAAAAC6w/GWXodT2dmQ4/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-oracle-11g-r1-r2-real.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEBR38-eCp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-1520444201439824412</id><published>2011-06-22T11:40:00.000+07:00</published><updated>2011-06-22T11:40:56.150+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T11:40:56.150+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="e-learning" /><title>Free Download | Moodle 2.0 Multimedia Cookbook | Silvina P. Hillar</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-_pV5L29VsD4/TgFyLIDJx4I/AAAAAAAAC6s/n5-qt1RjEck/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-_pV5L29VsD4/TgFyLIDJx4I/AAAAAAAAC6s/n5-qt1RjEck/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="float: left; margin-right: 1em;"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/div&gt;Part of Packt's Cookbook series, each chapter focuses on a different multimedia effect. If you don't have the time to work your way through a long tutorial, then this is the book for you. The step-by-step recipes are independent from each other so you can dip in and out of the book to add great effects to your course as and when you need them. This cookbook is designed for teachers who want to learn how to insert different multimedia assets into their Moodle courses. It is expected that you will have basic knowledge of Moodle 1.9 or 2.0 and have Moodle installed and ready to be worked on. Teachers of different subjects can adapt the recipes to best suit their specific subject.&lt;/div&gt;&lt;div style=”display:block;float:left;margin: 0px 0px 0px 0px;”&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;form action="http://ifile.it/dbq6p4/ebooksclub.org__Moodle_2_0_Multimedia_Cookbook.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="Moodle 2.0 Multimedia" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-1520444201439824412?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/Tc4H1Bl6CzFL7UXZrgtf_L7iJ50/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Tc4H1Bl6CzFL7UXZrgtf_L7iJ50/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/Tc4H1Bl6CzFL7UXZrgtf_L7iJ50/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/Tc4H1Bl6CzFL7UXZrgtf_L7iJ50/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/ZUc1gT3ERJk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/1520444201439824412/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-moodle-20-multimedia.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1520444201439824412?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1520444201439824412?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/ZUc1gT3ERJk/free-download-moodle-20-multimedia.html" title="Free Download | Moodle 2.0 Multimedia Cookbook | Silvina P. Hillar" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-_pV5L29VsD4/TgFyLIDJx4I/AAAAAAAAC6s/n5-qt1RjEck/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-moodle-20-multimedia.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUMFRHw4cCp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-8113239578026574478</id><published>2011-06-22T11:36:00.000+07:00</published><updated>2011-06-22T11:36:55.238+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T11:36:55.238+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Operating Systems" /><category scheme="http://www.blogger.com/atom/ns#" term="Microsoft Guide" /><title>Free Download | Windows Vista Inside Out</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-vJy--W04168/TgFxMuY856I/AAAAAAAAC6o/tTM_FwUZSuA/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-vJy--W04168/TgFxMuY856I/AAAAAAAAC6o/tTM_FwUZSuA/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Written by the authors of the immensely popular Microsoft Windows XP Inside Out, this book packs hundreds of timesaving solutions, troubleshooting tips, and workarounds for using the latest version of the Microsoft Windows operating systemall in concise, fast-answer format. Dig into the work-ready tools and resources that help you take your Windows Vista experience to the next level.&lt;br /&gt;
&lt;br /&gt;
Get the answers you need to use the new features of Windows Vista, including the sidebar and gadgets, and the Windows slideshow. Youll also discover how to use new features in Microsoft Windows Media Player and Microsoft Internet Explorer 7. Get up-to-date information on how to configure and customize your desktop, how to use new security-enhanced features, and more.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div 0px;”="" 0px="" style="float: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;I'm using my reading glasses to read the book, but it's not easy to read for long periods of time as I can with other books that have larger print. This book would be so much better if the font was one or two sizes larger. I can read the print but the size is too small which makes it fatiguing to read for long periods of time. I think a font that is too small also reduces the reading comprehension.&lt;/div&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://ifile.it/wojy48/ebooksclub.org__Windows_Vista_Inside_Out.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="Windows Vista" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-8113239578026574478?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/CIoyN-E-iupmkWsuWTIS6iW4eZ0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CIoyN-E-iupmkWsuWTIS6iW4eZ0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/CIoyN-E-iupmkWsuWTIS6iW4eZ0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/CIoyN-E-iupmkWsuWTIS6iW4eZ0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/e8r0_2CqvJw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/8113239578026574478/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-windows-vista-inside-out.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/8113239578026574478?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/8113239578026574478?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/e8r0_2CqvJw/free-download-windows-vista-inside-out.html" title="Free Download | Windows Vista Inside Out" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-vJy--W04168/TgFxMuY856I/AAAAAAAAC6o/tTM_FwUZSuA/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-windows-vista-inside-out.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DEENRn09fip7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-51285284147915028</id><published>2011-06-22T11:24:00.001+07:00</published><updated>2011-06-22T11:24:57.366+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T11:24:57.366+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="OpenSource" /><title>Free Download | Special Edition Using StarOffice</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-YLpUJz_mBiY/TgFuTL6L5_I/AAAAAAAAC6Y/_HWC9SogzIM/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/-YLpUJz_mBiY/TgFuTL6L5_I/AAAAAAAAC6Y/_HWC9SogzIM/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Best book for a real achievement in personal computing.  This book is an in-depth reference to the StarOffice functionality. The book is huge, fine print; and still the book does not touch on the new database capability of Adabas.  The StarBasic programming section is particularly instructive. The book's programming tutorial nicely complements the SO Online Help system and the SO SDK downloadable from the internet.  For old hacks, like me, this material (and Linux) is the best of times for computing.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Special Edition Using StarOffice provides the information beginning to intermediate users need to created, edit, and publish effective documents using Linux's freeware office suite. Learn the ins and outs of the word processor, the spreadsheet, the presentation software. Also, see how to take advantage of Linux' native networkability for workgroup editing, Intranet document sharing and Web publishing.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style=”display:block;float:left;margin: 0px 0px 0px 0px;”&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;I'm a technical writer who writes regular book reviews about computer and programming books. I can say without a doubt that this is one of the nicest, most user-friendly app guides that I've seen. It's a hefty book with lots of screen shots, and they cover a lot of material here, including a lot on installation for linux. They present a lot of materials in boxes and give "tips," and the great index makes me confident that I can find anything I want in seconds. Unlike most user guides for office apps, this book describes pretty thoroughly the limitations in star office (such as the fact that its database is not relational). I bought this book in late 1999, and undoubtedly other books have been published on star office, and more will be published as star office gains mindshare.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: justify;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 234x60, Half Banner */
google_ad_slot = "5477971774";
google_ad_width = 234;
google_ad_height = 60;
//--&gt;
&lt;/script&gt; &lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;    &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;form action="http://ifile.it/qtnrlc/ebooksclub.org__Special_Edition_Using_StarOffice.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="Using StarOffice" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-51285284147915028?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ycXCK0eLbRMrT649hnwpHDD18PE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ycXCK0eLbRMrT649hnwpHDD18PE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ycXCK0eLbRMrT649hnwpHDD18PE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ycXCK0eLbRMrT649hnwpHDD18PE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/IwHQEgkhgSU" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/51285284147915028/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-special-edition-using_22.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/51285284147915028?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/51285284147915028?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/IwHQEgkhgSU/free-download-special-edition-using_22.html" title="Free Download | Special Edition Using StarOffice" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-YLpUJz_mBiY/TgFuTL6L5_I/AAAAAAAAC6Y/_HWC9SogzIM/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-special-edition-using_22.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0cCQXc5cCp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-5836455709913202979</id><published>2011-06-22T10:57:00.000+07:00</published><updated>2011-06-22T10:57:40.928+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T10:57:40.928+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | SCBCD Exam Study Kit : Java Business Component Developer Certification for EJB</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/-5ulyBwdBCq4/TgFn2UP5ZAI/AAAAAAAAC6A/F6hQd7xR1Kc/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/-5ulyBwdBCq4/TgFn2UP5ZAI/AAAAAAAAC6A/F6hQd7xR1Kc/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Primarily written for developers who know basic Java and want to pass the Sun Certified Business Component Developer exam CX-310-090, this study kit shows how to use EJB in developing enterprise applications. With the popularity of J2EE in the enterprise, SCBCD certification is an important credential for an EJB developer to earn. Focused on the exam objectives, the content goes beyond simply "exam-cram."&amp;nbsp;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;More than 130 review questions with answers distributed over all chapters and an Exam's Eye View section at the end of each chapter that emphasizes the important points in the chapter from the exam's perspective are provided.&lt;/div&gt;&lt;br /&gt;
&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 468x60, banner_bawah */
google_ad_slot = "9429861726";
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;div 0px;”="" 0px="" style="float: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;form action="http://megaupload.com/?d=NUC05UF0" target="_blank"&gt;&lt;input name="download" type="submit" value="Java Business Component " /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-5836455709913202979?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/EaNBrPbwiBh3P0njL1_r3VaEwFI/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EaNBrPbwiBh3P0njL1_r3VaEwFI/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/EaNBrPbwiBh3P0njL1_r3VaEwFI/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/EaNBrPbwiBh3P0njL1_r3VaEwFI/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/Dp3WxCnLUL4" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/5836455709913202979/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-scbcd-exam-study-kit-java.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/5836455709913202979?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/5836455709913202979?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/Dp3WxCnLUL4/free-download-scbcd-exam-study-kit-java.html" title="Free Download | SCBCD Exam Study Kit : Java Business Component Developer Certification for EJB" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/-5ulyBwdBCq4/TgFn2UP5ZAI/AAAAAAAAC6A/F6hQd7xR1Kc/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-scbcd-exam-study-kit-java.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Dk8HSHc6fip7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-1062663686071522643</id><published>2011-06-22T10:53:00.000+07:00</published><updated>2011-06-22T10:53:59.916+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T10:53:59.916+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | Java Development with Ant</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/-Urz1mJzq_Gg/TgFnMswR1tI/AAAAAAAAC58/z4UdY-3HIcc/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/-Urz1mJzq_Gg/TgFnMswR1tI/AAAAAAAAC58/z4UdY-3HIcc/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Encompassing Java-centric software project best practices for designing and automating build, test, and deployment processes using ANT, this book is written for developers using Java in large software projects and those who have reached the limits of classic IDE development systems. Benefiting developers who apply extreme programming methodology to Java projects, this resource provides detailed coverage of ANT and explains how to use it in large projects and extend it when needed. In addition to using ANT for Java applications, it includes discussions of servlets and J2EE applications, which cover the majority of Java development projects.&lt;/div&gt;&lt;div style=”display:block;float:left;margin: 0px 0px 0px 0px;”&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;div style="text-align: left;"&gt;&lt;script type="text/javascript"&gt;&lt;!--
google_ad_client = "pub-8039025469742520";
/* 468x60, banner_bawah */
google_ad_slot = "9429861726";
google_ad_width = 468;
google_ad_height = 60;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js"&gt;
&lt;/script&gt;    &lt;br /&gt;
&lt;form action="http://ifile.it/2urpx8/ebooksclub.org__Java_Development_with_Ant.pdf" target="_blank"&gt;&lt;input name="download" type="submit" value="Java Development with Ant" /&gt;&lt;/form&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-1062663686071522643?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YqDi07yCwljnArVWVUyfyhvn9oE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YqDi07yCwljnArVWVUyfyhvn9oE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YqDi07yCwljnArVWVUyfyhvn9oE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YqDi07yCwljnArVWVUyfyhvn9oE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/UUNeof6Hoh0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/1062663686071522643/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-java-development-with-ant.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1062663686071522643?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/1062663686071522643?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/UUNeof6Hoh0/free-download-java-development-with-ant.html" title="Free Download | Java Development with Ant" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-Urz1mJzq_Gg/TgFnMswR1tI/AAAAAAAAC58/z4UdY-3HIcc/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-java-development-with-ant.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkAARnc5eyp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-864843629100342165</id><published>2011-06-22T10:51:00.001+07:00</published><updated>2011-06-22T10:52:27.923+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T10:52:27.923+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | Beginning J2EE 1.4: From Novice to Professional</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/-AXBmFtMQhWo/TgFmrhwT1yI/AAAAAAAAC54/Kmjth7lgpJA/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/-AXBmFtMQhWo/TgFmrhwT1yI/AAAAAAAAC54/Kmjth7lgpJA/s1600/programming.jpeg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="float: left; margin-right: 1em;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;The Java 2 Enterprise Edition (J2EE) is an extremely powerful platform for developing enterprise-level Java-based applications for primarily the server. In order to harness that power, you need to know how to properly use the API in the J2EE platform. In this book, Weaver, Mukhar, and Crume give you an overview of how the pieces of the J2EE platform work together and complement each other.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div style="text-align: justify;"&gt;This book is aimed at programmers who have learned the basics of Java from, for example, Beginning Java 1.4: From Novice to Professional, and are now ready to learn how to use Java in the real world, with J2EE. But, J2EE is a big spec, and the target audience is not interested in Enterprise JavaBeans and other advanced specs within J2EE. In fact, 75% of J2EE applications are built using only JavaServer Pages and Servlets (two of the simpler technologies to learn in J2EE), so these are the areas that the audience is particularly interested in.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div 0px;”="" 0px="" style="float: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;This book goes further than just showing you how to code a JSP or an EJB: This book explains when and where to use these APIs, their strengths and weaknesses, and best practices for using them.&lt;/div&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;&lt;form action="http://megaupload.com/?d=HF6XQB5P" target="_blank"&gt;&lt;input name="download" type="submit" value="Beginning J2EE 1.4" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-864843629100342165?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vlXr4Fb0vow-ZyQxDHSFS8mxQq0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vlXr4Fb0vow-ZyQxDHSFS8mxQq0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vlXr4Fb0vow-ZyQxDHSFS8mxQq0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vlXr4Fb0vow-ZyQxDHSFS8mxQq0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/lRrZdnW1r-Q" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/864843629100342165/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-beginning-j2ee-14-from.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/864843629100342165?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/864843629100342165?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/lRrZdnW1r-Q/free-download-beginning-j2ee-14-from.html" title="Free Download | Beginning J2EE 1.4: From Novice to Professional" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/-AXBmFtMQhWo/TgFmrhwT1yI/AAAAAAAAC54/Kmjth7lgpJA/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-beginning-j2ee-14-from.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DkIDSH86cCp7ImA9WhZbF0w.&quot;"><id>tag:blogger.com,1999:blog-5168091592705159514.post-3319709172277566728</id><published>2011-06-22T10:48:00.001+07:00</published><updated>2011-06-22T10:49:39.118+07:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2011-06-22T10:49:39.118+07:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="Java Programming" /><title>Free Download | Refactoring des applications Java J2EE</title><content type="html">&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/-8YEfCFnvy7Y/TgFl7436wVI/AAAAAAAAC50/TrYH0YnGxEA/s1600/programming.jpeg" imageanchor="1" style="clear: right; float: right; margin-bottom: 1em; margin-left: 1em;"&gt;&lt;img border="0" height="200" src="http://3.bp.blogspot.com/-8YEfCFnvy7Y/TgFl7436wVI/AAAAAAAAC50/TrYH0YnGxEA/s200/programming.jpeg" width="164" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;div style="float: left; margin-right: 1em;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;Améliorer la qualité et l'évolutivité des applications Java/J2EE. Le refactoring consiste à refondre le code source d'une application existante ou en cours de développement pour en améliorer la qualité, avec pour objectif une réduction des coûts de maintenance et une meilleure évolutivité. L'ouvrage passe en revue les différentes techniques de refactoring utilisées en environnement Java/J2EE : extraction de méthodes, généralisation de type, introduction de design patterns, programmation orientée aspect, optimisation de l'accès aux données, etc. Un livre pratique illustré d'une étude de cas détaillée. L'ouvrage décrit dans le détail le processus de refactoring d'une application Java/J2EE : mise en place de l'infrastructure et des outils, analyse de la conception et du code de l'application, mise en œuvre des techniques de refonte, tests de non régression. Cette démarche est illustrée par une étude de cas complète : refactoring d'une application J2EE Open Source à l'aide d'outils tels que Eclipse, CUS, JUnit et PMD.&lt;br /&gt;
&lt;br /&gt;
&lt;div 0px;”="" 0px="" style="float: left;"&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, automotive */
google_ad_slot = "4216181128";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;/div&gt;&lt;script type="text/javascript"&gt;
&lt;!--
google_ad_client = "pub-8039025469742520";
/* 300x250, created 5/16/11 */
google_ad_slot = "6148244276";
google_ad_width = 300;
google_ad_height = 250;
//--&gt;
&lt;/script&gt;&lt;br /&gt;
&lt;script src="http://pagead2.googlesyndication.com/pagead/show_ads.js" type="text/javascript"&gt;
&lt;/script&gt;&lt;br /&gt;
Diplômé de l'Université de Technologie de Compiègne, de l'IAE de Paris  et du CNAM, Jean-Philippe Retaillé est architecte en systèmes  d'information au sein d'une grande compagnie d'assurance européenne,  Spécialiste des architectures J2EE, il est également coauteur de  l'ouvrage Programmation orientée aspect pour Java/J2EE paru chez le même  éditeur.&amp;nbsp; &lt;/div&gt;&lt;br /&gt;
&lt;a name='more'&gt;&lt;/a&gt;   &lt;br /&gt;
&lt;form action="http://megaupload.com/?d=D2I8IBJB" target="_blank"&gt;&lt;input name="download" type="submit" value="Refactoring des applications" /&gt;&lt;/form&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/5168091592705159514-3319709172277566728?l=programmasters.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/R0x1VGp-5fQAGqPv9QJWlqxQGPo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R0x1VGp-5fQAGqPv9QJWlqxQGPo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/R0x1VGp-5fQAGqPv9QJWlqxQGPo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R0x1VGp-5fQAGqPv9QJWlqxQGPo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/FreeProgrammingBooks/~4/f_O2K7wRAVM" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://programmasters.blogspot.com/feeds/3319709172277566728/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://programmasters.blogspot.com/2011/06/free-download-refactoring-des.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/3319709172277566728?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/5168091592705159514/posts/default/3319709172277566728?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/FreeProgrammingBooks/~3/f_O2K7wRAVM/free-download-refactoring-des.html" title="Free Download | Refactoring des applications Java J2EE" /><author><name>share_e</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="31" height="26" src="http://2.bp.blogspot.com/-5TvE6mX12UY/TbfNwBkgYzI/AAAAAAAAAZM/liXnsBk8i6k/s220/ade.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/-8YEfCFnvy7Y/TgFl7436wVI/AAAAAAAAC50/TrYH0YnGxEA/s72-c/programming.jpeg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://programmasters.blogspot.com/2011/06/free-download-refactoring-des.html</feedburner:origLink></entry></feed>

