Programming Books
Related Subjects:
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

Used price: $5.71

Outstanding!Review Date: 2007-08-27
Andrew is the manReview Date: 2006-07-23
I refer to this book often because it gets to the "meat" of things rather quickly and is not for beginners.
My only criticism is that this book's examples are 90% console applications. Nobody uses this in the real world. But I understand the focus is on the code, but I still like the Deitel approach better. Use Windows applications NOT console, take the time to get the screen shots. (Just my opinion).
Don't get me wrong, I can easily translate over what he is trying to convey, but still I see great authors such as Francesco Balena showing most examples with the console window. I don't like this trend. But hey that's me.
Very good book though..
From a VB ProgrammerReview Date: 2006-08-07
Complete and easy to followReview Date: 2007-01-14
This is not novices. The author expects some level of programming experience with VB, C, C++ being the best. It is also best for a Visual Studio 2005 environment, though it is not required. If this is you and you are looking to move to VB.NET, this book is absolutely for you.
I wish all programming books were this good.Review Date: 2006-10-25

Used price: $26.92

A Complete Handbook on Video PodcastingReview Date: 2008-10-19
The authors give good definitions of industry terms that might not be familiar to a novice podcaster. The book covers a wide variety of features and gives step-by-step instruction on using the latest and ever-evolving technology and equipment, but it also discusses the business side of podcasting such as budget, hosting, publishing, and monetizing the show.
You'll be able to understand your audience and how to approach them after reading Producing Video Podcasts. The book is careful to keep beginning podcasters out of trouble with the copyright police by making sure the reader understands what music is safe for use on podcasts and where to obtain such material.
No book on videography would be complete without some information on RSS feed, YouTube, setting up cameras and microphones for filming, how to edit, and understanding HDV (high-definition video) standard sizes and frame rates. This book covers all that and much more. Filled with graphics, samples, tips, and photos, this is the complete handbook on preproduction, production, postproduction, delivery, and promotion of a professional video podcast.
Yvonne Perry,
Author of RIGHT TO RECOVER: Winning the Political and Religious Wars Over Stem Cell Research in America
Very easy to read and very informativeReview Date: 2008-08-20
Awesome ResourceReview Date: 2008-04-14
The Video Podcasting BibleReview Date: 2008-04-01
Lots of specifics and resources!Review Date: 2008-03-21

Used price: $21.43

Solid GoldReview Date: 2008-03-06
Excellent BookReview Date: 2007-06-02
The book covers all of the core ASP.NET AJAX Scenarios:
- Server-Side Controls (UpdatePanel, UpdateProgress, etc)
- Client-side libraries
- Networking Stack
- Application Services
- AJAX Control Toolkit
Matt Gibbs is the development manager of ASP.NET at Microsoft, and led the ASP.NET AJAX 1.0 development team - so obviously knows his stuff well. Dan Wahlin is a great trainer and presenter of ASP.NET and ASP.NET AJAX. You are in very good hands with them.
I highly recommend this book.
Great BookReview Date: 2007-07-16
Very good first AJAX referenceReview Date: 2007-07-04
Thua I strongly recommend it as the FIRST book to introduce yourself seriously to mainstream AJAX 2.0.
Great book from the source!Review Date: 2007-06-12
Seriously, this book is straight from the source and contains good, detailed information about the ASP.NET AJAX release that applies equally well today and in Visual Studio 2008

Used price: $11.22

Great valueReview Date: 2008-06-06
Very well done!Review Date: 2008-06-14
I highly recommend this book for any .NET developer, not just those who use Visual Basic.
Great book for putting your team on agile trackReview Date: 2008-05-31
This book gives you in-dept view of refactoring with a lot of practical, code examples. This means that you are well prepared to answer any uncomfortable question. It builds up gradually, so it is easy to follow.
Almost every chapter ends up applying the stuff that was just exposed on a sample application with a lot of code. Surely author spent a decent time on this title. You can download the code and see it progress from chapter to chapter. This gives a great insight since you can read and debug the code at the same time and not just some toy or isolated example.
Here is chapter to chapter break-down of the book.
Chapter 1
Intro chapter, defines refactorings end code smells and explains the kind of baggage VB carries because of its origins. Cool section on misinterpretations, this will prepare you for some tough questions that might come from uninitiated developers or managers.
Explains the importance of writing simple, comprehensible code. For example:
Dim oXMLDom as New DOMDocumet() vs Dim portfolio as new DOMDOcument.
The first statement gives you no idea of what first DOMDocument represents, in second it's the portfolio, and if you know the application context you will know what to expect.
Chapter 2
Teaser chapter but also good single-chapter sample of some typical refactoring work. Captures well typical process of development of VB applications. Starts out with few event-handling methods, ends up with number of domain classes and some inheritance thrown in.
Chapter 3
Chapter on refactoring tools, also gives you some insight of how different tools like refactoring add-ins and unit testing framework fit the big picture of agile development process.
Chapter 4
Intro chapter on application that is used to illustrate refactorings throughout the book. Explains the business case, requirements, lists some use cases. It is important to understand the context of the application to be able to follow-up on refactorings. Also some funny stuff here, like freshman developer that takes pride in copy-paste development.
Chapter 5
In-dept discussion on Static vs. Dynamic and Strong vs. Weak Typing that is rarely dealt with in such depth. This is basically controlled with Option Strict and Option Explicit options. If you program in VB, you must be aware how these work out.
Chapter 6
Chapter on error handling, especially legacy vs. structured error handling. Again, something everyone should know, but rarely explained in such depth. Cool stuff is step by step recipe for converting legacy to structured.
Chapter 7
Deals with some core refactorings like Dead Code Elimination, Scope Reduction etc. It's like cleaning up your code for some serious refactoring stuff.
Chapter 8
First step in structuring your code is getting serious about the problem (or business) domain. Also explains Rename and Safe Rename refactoring, talks about Interface vs. Abstract class, Open-Closed principle etc. some serious OO stuff.
Chapter 9
Some core refactoring stuff. Teaches you how to eliminate duplicated code and why it is the worst thing it can happen to your code. Explains Extract Method and Replace Magic Literal with Symbolic Constant variable. Nice and simple example based on circle geometric shape on how procedural design is transformed to Object Oriented design (Module and Shared method rings a bell?)
Chapter 10
If only method extraction would be as simple in real life... This chapter goes further with method extraction and deals with some common problems like temps.
Chapter 11
Where do objects come from? How you design classes? Some core OO stuff in this chapter, including Extract Class, Move Member (Method or Field) refactorings, smells like Database Driven Design or Data Class, Large Class, OO principles like Single Reasonability Principle etc. Lot of stuff and handful of pages in this chapter.
Chapter 12
Build upon previous chapter. Deals with inheritance, polymorphism, genericity. Explains the difference between class and interface (or implementation vs. interface inheritance), difference between delegation and inheritance and criteria to chose one or another, list some common misuses of inheritance etc. Again, a number of refactorings like Replace Inheritance With Delegation or Extract Interface, Extract Super etc. Some heavyweight OO concepts in this chapter, takes a time to digest.
Chapter 13
Explains what is important when taking a birds-view of software. This chapter is especially important for software architects. Talks a lot about dependencies in software and why you should minimize dependencies in your code.
Chapter 14
Single chapter for huge subject, still a lot of material covered. Design patterns are the most advanced subject in OO, so refactoring your code in order to make use of patterns is in no way child's play. Mostly deals with creational patterns. First mention of Dependency Injection in some VB book I come across. Now taking into account that Unity application block [...] has been released in April, this is really cutting edge stuff!
Chapter 15
Talks about latest VB improvements that come with VB 2008. Starts with XML enhancements like XML literals and then the rest is about LINQ. Explains a LINQ implementation called LINQ-to-SQL. This is first Microsoft Object-Relational Mapper (ORM). Again, cutting edge.
Chapter 16
If you still deal with VB6 code, than you know that migrating to .Net is no easy ride. This chapter explains some techniques that will help you migrate your code and make it .Net in sprit, not leaving it crippled by simple migration that will only make it execute in .Net. VB6 lacks inheritance, generics etc, so you need refactorings to make it VB .Net.
This book has no real competition as far as I know, no book on refactoring or agile for VB .Net developers. The one that come close is Agile Principles, Patterns, and Practices in C# (Robert C. Martin Series) but it is for C# developers and requires a lot higher starting point.
When other books come up, I am sure Professional Refactoring in VB will continue to hold its ground. Highly recommended!
Great Book on RefactoringReview Date: 2008-05-05
Martin Fowler finally has a fair partner on my shelf ;).
Must read for any serious VB developer.Review Date: 2008-05-03
This book is deep and takes a while to digest. However, it's not about showing off some irrelevant academic knowledge. Author is not afraid to mention "Dependency Injection" or "Single Responsibility Principle" but all of these are demonstrated to be relevant and get illustrated through very practical and real-life examples.

Used price: $37.00

Good quick reference for how to do thingsReview Date: 2008-05-09
Great bookReview Date: 2007-10-18
UsefulReview Date: 2007-06-16
Very solidReview Date: 2007-04-29
An outstanding bookReview Date: 2007-04-24

Used price: $145.99

Obligated reference for SAP interface developersReview Date: 2000-05-03
Excellent book for learning and/or referenceReview Date: 2002-11-23
Good book for tolls and SAP application developersReview Date: 1999-10-12
One of the must haves for SAP programmers!Review Date: 2003-09-28
An excellent reference for understanding BAPI/R/3 InterfacesReview Date: 2000-04-04

Used price: $7.15

This is the most "MUST HAVE" Access bookReview Date: 2005-02-07
Great HelpReview Date: 2003-08-07
I have 20 years
of software development experience mainly in the
mainframe area both here in Sydney, Australia and Boston, Mass. I recently
decided to start my own consulting firm and develop business applications using Access. In the past four months, I have used
your book to learn Access in order to develop an
inventory and billing software package for one of my clients. I can honestly
tell you that I learned a lot from your book, and I can even say that without your book, I would've not been able to finish
the project.
Must have for Access DevelopersReview Date: 2001-11-02
Next to The Access Developer's Handbook Series by Litwin, Getz etc..and F. Scott Barker's Power Programming, I would say this is a "must have" for any serious Access Developer.
How to Deploy SQL and Web Solutions w/ Access XPReview Date: 2001-10-05
Being pressured to grow my application to many users (both trusted LAN and anonymous Web) and being comfortable with the graphical interfaces of Access, I found the the need to learn about programming ADO recordsets, Data Access Pages and ASP while determining the best solution. I have been overwelmed by the flexibility of MS solutions and options that are possible and needed some guidance in plain language to explain such terms as Objects, Properties and Methods, and what they meant to be programmed. Chapter 2 does a good job of that which is followed by a useful summary of the ADO library. Data Access Projects are lined out well along with some practical tips to incorporating SQL Server 2000 as a data source. He further builds upon this model and shows how to dynamically (!) create web pages from the Access Project using MS Frontpage XP, the resultants being Active Server Pages! I have found while the Access 2002 graphical tools are helpful, Dobson explores how to control the code behind the power of the XP Office release.
I have found the code to be tight and well commented. I'd urge anyone interested in harnessing the full power and speed of deployment of Access 2002 and the Office XP suite to add this book to their "How To" library.
Includes Much That You Will Not Find ElsewhereReview Date: 2001-11-12
one. It is the clearest available introduction to VBA
coding. It provides explanations with a huge collection
of Access VBA code. And it is a thorough presentation
of what is new and powerful in Access 2002, especially
concerning integration with SQL Server.
This book is just the thing for anyone who wants to
become a serious Access user or developer. It is the
answer to the prayers of many Access users who have
wanted a reference that would finally take them from
the limited GUI Access interface into the more full and
flexible features of VBA coding. The coding in this
very large book is so extensive that I bet you could,
if you wanted to, do every future Access project with
just code and without reference to the GUI interface.
You can tell that Rick Dobson loves to code and to pass
on what he has learned.
The explanations are very readable and give you the
background necessary to actually understand why things
work the way they do. Much attention is given to
keeping you out of trouble by conveying a very clear
understanding of operational issues not covered
elsewhere. This includes successful integration of
different versions of Access and SQL Server, getting
the reference libraries correct, and even using Access
with FrontPage (now included in Office XP
Professional).
If this reference indicates the way Microsoft Press
books are headed, then I am going to look to add more
of them to my reference collection in the future.
Clarity, comprehensive, and Code, code, code!

Used price: $11.09

Programming Perl in the .NET EnvironmentReview Date: 2003-07-10
Review from the lead authorReview Date: 2002-09-27
I am the lead author of this book. Together with Michael Saltzman and Robert J. Oberg we tried to make this book as good as possible.
The book will be useful for you whether you are an experienced Perl programmer that wants to learn .NET technology or you are new to Perl.
The first part represents a tutorial of Perl itself. In the second part we dive into exciting world of programming Perl inside the .NET Environment.
I hope you will enjoy reading and our code samples will be useful and helpful for you.
Happy reading and programming!
Programming Perl in the .Net EnvironmentReview Date: 2002-12-30
With my limited experience in object oriented programming, this book presented the topics in the right order to overcome my lack of OO experience.
I did have a few instances of failing to find specific terms in the index.
This book will continue to be a valuable resource as I continue to refine my Perl skills in creating perl modules and utilizing Perl in the .Net environment.
Programming Perl in the .NET EnvironmentReview Date: 2003-07-10
Strange mix - comes up quite wellReview Date: 2002-10-23
I didn't think so till now.
I found the mix of Perl and Dot.NET quite strange - that's why I was surprise to see a book on that matter.
I felt very curious to see how can it work together.
Perl has lots of
advantages that make it such an enormous success - very easy to write fast and efficient code.
Ask any unix admin / programmer.
The way Perl works with the rich options of Microsoft's new engine is good. I like the combination. It works well, the examples are quite good.
The first part of the book looks similar to every Dot.NET one can find, but the second part is the value for this book - and that's why I liked it.
Good techinal explainations and examples.
It was a good investment for me.

Used price: $90.46

PIC BasicReview Date: 2008-10-21
Great Book, to bad it is written for an OBSOLETE compilerReview Date: 2005-09-03
Best book of its type I've seenReview Date: 2005-09-16
Unlike many programming books, this one also demonstrates the author's engineering expertise by providing details of circuity including the hows and whys of interfacing to PICs, reasons for component parts and values selection, timing charts, 'scope pictures, etc. His choice of projects is excellent, and touches on virtually every application in which a PIC would likely be used.
He also provides a CD loaded with support documentation, source code for all the projects for both the current release and 5.3.0.0, which is due out shortly. He details the differences between the two versions, and provides lots of info on undocumented commands and errata in the MBasic manual. He also includes a free version of 5.3.0.0 which is limited only in the chip it will support, which is one of the best and most popular ones in use today.
As far as the "obsolete" comment made in an earlier review, all I can say is that MBasic has the best feature set of any Basic compiler for PICs that I have seen for the chips it supports, which includes all the most popular ones, incuding my favorites, the 16F876 and '877. The fact that Basic Micro obviously worked with the author to provide a pre-release version of the next release tells me there are no plans to obsolete the program.
Clear, concise and knowledgeableReview Date: 2005-08-26
Jack Smith has done a real service to everyone seeking a pathway to develop projects with one of the industry's most popular and best supported processors - the Microchip PIC. He has documented all the compiler's features, in a clear and concise fashion, that allows the user to realize all the power of this compiler. Every chapter clearly explains the hardware and software relevant to the chapter's subject, and provides numerous useful code examples to get the user started.
The chapter on using ISRASM, MB Pro's interrupt handler, and the chapter that collects together and summarizes all the previously unexplained commands and features, easily makes this book a 'must have'.
The demo compiler supports only the PIC16F876 and its -A version. At present users report that this program doesn't work with Win9x or ME machines, but is OK for Win2000 and XP. This is probably due to the 32 bit nature of the new software. This may change, so refer to their forums and home page for news about this. Basic Micro promises to upgrade from the present version to version 5.3, when released, for free.
After two years of experimenting with different BASIC compilers, I find MB Pro easily the best of the bunch. It has a mix of features and a command set that, for the money, easily makes it a real value. Check it out at basicmicro.com.
If you decide that MB Pro is the compiler for you, then make it a point to buy this book to achieve maximum return on your investment.
A great MBasic AND electronics reference for all kinds of PIC projectsReview Date: 2005-08-27
It's an AMAZING resource, easily one of the best-written textbooks on any subject that I've seen in a long time. It's laid out in a tutorial format, with each chapter building on the ideas in the previous pages. The book is also easy to use to find specific techniques as you would with a reference book, either with the index, or with the thorough way Jack cross-references related chapters within each chapter.
Jack introduces one or two major concepts in each chapter, such as working with digital outputs, I2C, stepper motors, or HSerial, and then shows how to design the electronics parts of the concept as well, and gives solid reasoning for how he's making design choices along the way. He has a deep understanding of both computer theory and electronics design, but presents both of them in a friendly, non-jargon-y way that I think many experience levels could understand.
It covers everything from the stock MBasic commands, to how to use in-line and standalone assembler where needed, to the undocumented (except in the forums) commands hidden in the language. You even get a CD with a FREE version of MBasic Pro 5.3.0.0 called MBasic876 (It is limited to the 16F876 / '876a parts only, which is not a huge limit). Jack also explains the differences between 5.2.1.1 (the current full release) and 5.3.0.0, AND gives working code for both versions! He even documents all of the mistakes he - and others - have found in the 5.2.1.1 manual, saving much frustration when learning the language.
If you wanted to use this as a textbook, there are "Ideas for Changes to Programs and Circuits" at the end of each chapter, that would make good homework assignments.
The CD also contains all of the code examples from the book (in both 5.2.1.1 and 5.3.0.0 versions, with comments), Linear Technology Circuit Simulation Software\SWCADIII (LTSPICE) circuit simulation tools, and datasheets for all of the parts used in the book.
An extra bonus is the nearly page-long list of references at the end of each chapter, containing information about everything from good 8-bit microcomputer design guides, to where to find current datasheets for the parts used in the chapter, to great freeware resources for the PC.
So far, I have found answers to every question that's stumped me even after reading the Basic Micro forums.
I hope some others can enjoy this as much as I have. It's made me excited again about how much MBasic allows you to do with a PIC.

Used price: $30.00

great seller, fast shippingReview Date: 2008-08-11
Programming the Web Using XHTML and JavaScriptReview Date: 2007-09-16
Easy to read and understandReview Date: 2007-03-21
Nine StarsReview Date: 2003-04-28
Another book I'll be adding to my shelf.Review Date: 2003-01-18
I got this book for a class, but I'll be keeping it forever. Scary, eh?
Related Subjects:
More Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
I really can recommend this book, however NOT if you are a beginner!
I also learned that I'm a Generic Type, because I drink a lot Of T. :)