Related Subjects: Author Index Reviews Page 1 2
Book reviews for "Oenslager,_Donald_Mitchell" sorted by average review score:

C Primer Plus
Published in Paperback by Sams (1987)
Authors: Mitchell Waite, Stephen Prata, and Donald Martin
Amazon base price: $24.95
Used price: $1.01
Collectible price: $30.00
Buy one from zShops for: $19.99
Average review score:

Good for the beginner to C programming
This book gives a fairly comprehensive overview of the most popular programming language ever employed. The C language still dominates the programming scene, even though at times it appears to be dying out. Compilers, embedded systems, scientific programming, and myriads of other applications use C extensively.

After a brief historical background and a discussion on how to compile programs in C, the author discusses the basic data types and character strings in C. The author emphasizes the lean nature of the C language, and gives an elementary discussion on debugging in C. A good discussion is given on integer and floating-point underflow and overflow and also the mechanics of argument passing via the stack.

The author then discusses the operators and control statements in C. He includes a discussion of Lvalues and Rvalues, and this is helpful since many books on C gloss over this. Good examples of the ability of C to do multiple assignment are given. Side effects, which are modifications of data objects, and sequence points, which are points in program execution at which side effects are evaluated before proceeding to the next step in the program, are briefly discussed. An understanding of side effects is crucial to programming effectively in C. Type conversion, forbidden in some other languages, can be done in C, and the author gives a fairly good discussion of type conversion and the cast operator. Nine examples are given that effectively illustrate the different uses of "for" loops. Unfortunately, the author includes a discussion of the "goto" statement, but does admonish against its use.

The author then moves into more about input and output and how to use buffered versus unbuffered input. Some of the discussion on how to create user interfaces is antiquated given the current state of graphical tools to do this.

C functions are defined and their use encouraged as building blocks. A program ideally should be written as a collection of function calls, and the author is sympathetic with this approach. The importance of function prototyping is discussed, along with a detailed discussion of recursion. The &operator is covered in the context of function calls the modify a value in the calling function without using a return value. This peculiarity of C is a sticking point to mathematicians when they attempt to program in C. The author explains fairly effectively the reasons for doing this in C, giving examples of what can happen when one adheres to a practice of never producing side effects in function calls.

The most difficult feature of C for newcomers is the existence of pointer variables. These are first discussed in the context of function calls and then in terms of the creation and initialization of arrays. Pointer arithmetic, an anathema to some programmers is given a fine treatment, along with how pointers are used to manipulate character strings and string functions.

The file communication capability of C is given a lengthy treatment in the book via standard I/O functions. The ability of C to support both global and local variables is discussed, with the important concepts of file, block, and function prototype given detailed treatment. The volatile, const, and restrict keywords are discussed also.

Data structures, the tour de force of C programming, is discussed in great detail by the author. He shows how to create nested structures, and most importantly how to define and use pointers to structures. This is one of the most powerful features of C, and is responsible for its continued use in performance-intensive applications.

Readers interested in the more "low-level" features of C will appreciate the discussion on bit fiddling. Indeed in embedded systems and cryptography an understanding of this is crucial for designing effective programs.

The important technique of conditional compilation, using the ifdef, else, endif, and ifndef directives are discussed with many helpful examples. Memory allocation, with malloc(), free(), and calloc() functions is given ample treatment. Anyone who has done any type of debugging of C applications will realize the importance of a complete understanding of this topic. Memory leaks and dangling pointers can cause great distress in applications written in C. The author should have spent more time here on dynamic memory allocation in C.

Some discussion is given on the more advanced data structures in C, such as linked lists, abstract data types, and binary trees.

All-around best C refresher/ introduction.
I have an eight year-old copy, and when getting back into C programming after a long layoff (don't ever take a promotion to project leader if you can't keep coding), I pulled this one off my shelf (skipping K&R's book, Herb Schildt's book, and three others in my library).

It got me right back into the mindset quickly (I started with the pointers chapter, where all the action is), and helped me get the rust knocked off quick. The examples are well-explained, small and easy to test, and the progression of the book is logical and sane. Buy it and you can wait a year before needing another book on C.

Excellent book for absolute beginners
I have read "C Primer Plus" and want to recommend it to everyone who has an interest in learning a computer programming language. It is written with a touch that takes away all the fears and respect concerning difficulties a beginner might have. Prata's humourous style and pedagogic approach makes it easy to get a hold of programming techniques. Until chapter 6 the style pace is moderate but then quickens. By then you have been given the means to cope with all the terms and foreign commands and you read on, eager to learn more. The Appendix-section also makes it a rather good reference as long as you keep your programming on "the home front". I strongly recommend this book. Buy it if you want to extend your knowledge!


Spiritual Advice for Buddhists and Christians
Published in Paperback by Continuum Pub Group (1998)
Authors: Dalai Lama, Donald W. Mitchell, Dalai Lama Bstan-dzin-rgya-mtsho, Dalai Lama, and Bstan-'Dzin-Rgy
Amazon base price: $9.95
Used price: $2.99
Buy one from zShops for: $4.98
Average review score:

Continuing dialogue started by Thomas Merton.
Continuing a dialogue started over 30 years ago between Thomas Merton and the Dalai Lama, these talks at the Abbey of Gethsemani discuss 1) Practice of prayer and meditation 2). stages of growth, 3) the role of teacher, and 4) the goals of spiritual and social transformation.

The Dalai Lama sees the role of religion in alleviating human suffering, and the question for him is not which religion is right, but which is right for a particular person. I thought the chapter on achieving Calm Abiding was most practical, with antidotes to "the five faults", for example "The third fault is laxity and excitement. Its antidote is introspection". Discussing spiritual life, he discusses the six perfections, and sees similarity between the Christian and Buddhist monastic traditions of morality, simplicity, and contentment. Finally he discusses Nirvana, and the Christian goal of union with God. By sharing ideas between these traditions there is hope that tolerance, generosity, and love will be cultivated.

SOUND ADVICE
Dialogue is key in fostering mutual understanding with those of different religious faith groups. Such an encounter occured during the 1996 Gethsemani Encounter where Buddhist and Christian monks engaged one another on topics regarding the spiritual life.

Out of that context came this book which contains talks that His Holiness the Dalai Lama made concerning Tibetan Buddhist spirituality. The depth and breadth of his talk applied to both groups. Although his talks were of course grounded in Buddhism the advice given transcends mere sectarian concerns.

His Holiness is concerned about the daily practice of all spiritual seekers and gives pointers as to how one can be effective in one's practice through meditation, fostering a solid teacher-student relationship, the role of community in the spiritual life and the stages of spiritual growth.

I would highly recommend this gem to those who are interested in fostering an inter-religious dialogue with non-Christian groups and for those who desire to strengthen their own spiritual journey. Spirituality know no sectarian boundaries.


The Waite Group's Unix System V Primer
Published in Paperback by Sams (1992)
Authors: Mitchell Waite, Stephen Prata, and Donald Martin
Amazon base price: $29.95
Used price: $0.60
Collectible price: $10.00
Buy one from zShops for: $0.60
Average review score:

Great College Text
I use this book in my classroom for the intermediate-level CS college student. It covers detail in a conversational way, giving the Unix novice a chance at absorbing such a complex operating system. While it has it's weaknesses (not much on shell scripting), it is certainly the "bible" of Unix books.

A very useful, well written book
Although I have been using UNIX for years, and have half a shelf of O'Reilly UNIX books on various subjects, I still keep coming back to the Waite Group's UNIX V Primer. The reason being that although it is not a deep treatment of any UNIX subject, it gives you the information you need to know to actually *do* something. Typically I will use it to remind me how to do something in Sed for example. Something that I don't use that often, and just need to see how to do one simple thing. Instead of hunting around in a more complete technical book, I can go to the primer and get quick no-brainer instructions on how to do it. The examples are clear and well illustrated and the writing is excellent. Highly recommended for novices and anyone who bumps into UNIX a fair bit but isn't an avatar.


Professional CDO Programming
Published in Paperback by Wrox Press Inc (1999)
Authors: Siegfried Weber, Donald Xie, Dan Mitchell, and Daniel J. Mitchell
Amazon base price: $49.99
Used price: $32.45
Buy one from zShops for: $32.90
Average review score:

Doesn't cover CDO 2000!
This book covers CDO 1.2.1. It does not cover CDO for Windows 2000. I did not discover this until I bought the book. The project I was working on required CDO 2000, so the book was worthless to me.

A little disjointed
While most of what you need to know about CDO programming is in this book, I found that the information could have been presented in a more friendly manner. Most of the examples seem to be spread out throughout several chapters, leaving you to do a lot of flipping back and forth to figure out fairly straight forward information. Quite frustrating. To be fair to the authors, I have found this to be the case with most of the books in the WROX library, so it is probably just the editorial style of the publishing company.

If you like the WROX style, you should be happy with this book.

CDO Programming explained
Started out with this book to understand the direction of Microsoft in the gradual move towards object model programming. CDO is meant to ease the "pain" of raw extended MAPI programming. However, there are some issues and cases that still required the ascent into the arcane area of raw MAPI. Examples are custom agent programming and Calendar programming(which is greatly undocumented) using raw MAPI. Correlating IDispatch and IUnknown Interfaces does not make it easier, and smart pointers are not a panacea for all programming issues. Enough said... I really love this book, and with the move to Exchange 2000, it should give a good foundation for CDO programming in both C++ and VB.


High Technology and Low-Income Communities: Prospects for the Positive Use of Advanced Information Technology
Published in Paperback by MIT Press (16 October, 1998)
Authors: Donald A. Schön, Bish Sanyal, and William J. Mitchell
Amazon base price: $32.95
Used price: $8.99
Buy one from zShops for: $13.00
Average review score:

Good compilation of articles from many different view points
High Technology and Low-Income Communities Prospects for the positive Use of Advanced Information Technology

This book is a good compilation of articles by people from many different fields with a common goal- that is "to answer two basic questions:

1) How will information technology (and the changes that it brings about in all spheres of life) affect the low-income communities ?

2) How can we (including the low-income communities) influence the outcome ? "

The book is aimed towards "proving a synthesis between the academician's theoretical and formal knowledge with practice-based, fine-grained wisdom of the activists, to generate innovative policy suggestions."

It begins with a general "examination of the various issues in their socio-technical, economical and historical contexts", sometimes in an intuitive and futuristic way and sometimes through a complete statistical analysis of existing data. The general tone in this respect swings from major 'technology enthusiasm to complete skepticism', and then on to a more balanced view. This view does not see the technology as a whole-soul saviour, but more as a medium to change; since physical world and the electronic world are not separate, but actually "inter-twined and can substitute or complement one another as per requirements, circumstances and contexts." It emphasizes one fact time and again, which is becoming clearer every passing day, and that is, that on its own poverty and technology complete a vicious cycle (not today but since ever!), where due to poverty people face low exposure to technology and its benefits; and low access to technology leads to further downward mobility. It prophecises that the way out is not in one single hand, but more in different agencies working together hand in hand (including the government and the low-income communities themselves).

The next part of the book, which is also the core of the book, presents a style of policy-making (rather than the finished blueprint) for what can be done to improve the present situation, along with some good examples from the real-life. It addresses many interesting issues related to low-income communities such as:

- The high cost of connection and 'appliances' to connect to the world versus the real need. - The vicious cycle between low networking in low-income communities and low number of users from these areas on the net. - Need for appropriate software and interface, which is easy and attractive to use. - Need to promote new technologies in ways that enable people to become not just 'passive consumers' but 'active producers', as well as to aid entrepreneurship in these areas (to aid economic development which in the longer run can affect the whole community as well). - Need for using technology to create transparency between public agencies and low-income neighbourhoods. - Need for applying the computer and the IT to aid better dialogue between the community especially through the concept of 'community computer'. Also to see Internet as a big canvas which can be extended by contributions from every individual of the community. - Need to include the low-income communities as well, for structuring and designing things and policies for their own development. - Need to provide skills and motivation to the people of the community, so that they find it worth to invest their time and effort into the whole process of change. - Need to create a distinction between 'knowledge' and 'information', especially in reference to policy-making and community programs. - Need to develop a totally new approach to education aimed especially at the people who grow-up in low-income neighbourhoods.

The main emphasis of the book is on the last issue, which receives a common consensus from all the authors. There is a general opinion that education is the main tool through which something can be done to elevate the 'digital divide'. It needs to include not only the children of the community but the parents as well, since education really starts from home and a lot of boost for learning needs to come from home as well. It must also be introduced into the prisons where a good part of the community (especially in reference to American low-income neighbourhoods) spends their time. The present state of education in all the schools which cater to these children seems to be extremely poor, not just in terms of equipment but also in terms of teachers and teaching methodology, as well as in the course content which is most often very bland and sterile. New system needs to be developed where the computer can be used for its educational capabilities since technology in itself is meaningless unless designed for an application. Since it is usually seen that people who grow up in poverty, unstable and unpredictable world are most often virtuosos at building and fixing complicated things but tend to score very low when dealing with conventional symbolic expressions like numbers, graphs, simple calculations and written language, there is a need to make them learn more through extracting principles from the successful workings of the objects that they make. At this point the computer comes into picture, since it can be a very good medium to link symbols with actions since symbolic descriptions in a computer can turn into an action or an object immediately. This way it can be used to teach and enstrengthen existing concepts. It can play a very special role as a resource for inquiry and invention at the child's 'own pace' and in his 'own space'. This also looks into the aspect of special needs of some children whose life is already moving at a very fast pace and who hence need to slow-down a bit in their own learning process.

The last part of the book presents a synthesis of various topics. It discusses the prospects and problems of initiatives aimed at elevating the poor with the help of new technologies. Also it offers a few suggestions for policy making at various levels, such that they can be more effective. It acknowledges the big gap, which still exists between the academics and the activists, but also extracts "the common points of agreement under five different headings-" - The unique characteristics of the digital revolution, that is its interactive potential and its decentralizing nature, offering the poor a new set of opportunities for social and economic integration. - The universal access to IT is essential and if left to the market mechanisms will never be a reality for the low-income communities, unless given an impetus by the government. (especially in the development of the social sphere) - The inadequacy of the existing government policies regarding IT and universal access. - A proposal of policies necessary for channeling IT's benefits towards low-income areas, laying special stress on the fact that IT is no substitute for Social Policy and that planning must begin at the grass-root level. - Some ideas about what kind of research is necessary to devise policies sensitive to the particular needs of the poor.

The book ends with a very positive note of "What's Next?", and reframes the objectives that it began with, into : " Given an intention to achieve a certain kind of benefit for low-income people, or to help them achieve a benefit for themselves, how might a variant of the multifaceted technology serve the purpose."

On the whole the book is a good 'Food for Thought', and sets one thinking about such an important and yet 'insignificant' aspect of IT and sets one rethinking about what one does with this powerful tool.


Mri Principles
Published in Hardcover by W B Saunders (15 January, 1999)
Authors: Donald G. Mitchell and Lisette Brawlow
Amazon base price: $74.95
Used price: $67.06
Buy one from zShops for: $68.95
Average review score:

its ok .. i enjoyed it
I enjoyed this book. It was very informative and had covered all aspects of MRI imaging. I am quite new to MRI and this was a great help in my learning experience. I would recommend it to those who are new to MRI


Cultural Geography: A Critical Introduction
Published in Hardcover by Blackwell Publishers (1900)
Authors: Don Mitchell and Donald Mitchell
Amazon base price: $62.95
Used price: $31.47
Average review score:
No reviews found.

Ecosystem Management: Rare Species and Significant Habitats (Bulletin (New York State Museum: 1976), No. 471.)
Published in Paperback by New York State Museum (1990)
Authors: Natural Areas Conference 1988 State University of New York College Of, Richard S. Mitchell, Charles J. Sheviak, and Donald Joseph Leopold
Amazon base price: $24.95
Average review score:
No reviews found.

Land and agriculture in Nagovisi, Papua New Guinea
Published in Unknown Binding by Institute of Applied Social and Economic Research ()
Author: Donald Dean Mitchell
Amazon base price: $
Average review score:
No reviews found.

An Introduction to the Bible
Published in Hardcover by Abingdon Press (2001)
Authors: Clyde E. Fant, Donald W. Musser, and Mitchell G. Reddish
Amazon base price: $24.50
List price: $35.00 (that's 30% off!)
Used price: $9.00
Buy one from zShops for: $21.99

Related Subjects: Author Index Reviews Page 1 2

Reviews are from readers at Amazon.com. To add a review, follow the Amazon buy link above.