e99 Online Shopping Mall
Help | |
Home - Celebrities - Andrews Bethany (Books) |
  | Back | 61-80 of 91 | Next 20 |
click price to see details click image to enlarge click link to go to the store
61. Be Perfect by Andrew Murray | |
Paperback: 171
Pages
(1965-01-01)
Asin: B000884CYO Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
62. Like Christ by Andrew Murray | |
Mass Market Paperback: 231
Pages
(1974)
Asin: B0006WRGE0 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
63. Hadassah: One Night With the King by Mark Andrew Olsen, Tommy Tenney | |
Audio CD:
Pages
(2005-01-01)
list price: US$19.99 -- used & new: US$11.87 (price subject to change: see help) Asin: 076420047X Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (4)
WONDERFUL CHRISTIAN ROMANCE AUDIO NOVEL
Excellent reading
Great book for any girls bookshelf
Excellent novel for young girls |
64. Fullness of the Spirit, The by Andrew Murray | |
Paperback: 128
Pages
(2004-06-01)
list price: US$7.99 -- used & new: US$14.91 (price subject to change: see help) Asin: 0764229044 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (10)
Excellent book for the practitioner It's not a complete book in and of itself. You will still need a Java Language reference book. This book is more of a tutorial. It's great for self-learning.
And I thought I knew Java
no comment
Only for advanced programmers! + some of the biggerexamples of this book are definitely not trivial - I learnt a lot from theexamples in the book. Waite's book, on the other hand, only had theGalaxians shoot'm'up that I really liked. + the quality of the text ismuch higher. This book isn't an exhaustive treatment of Java either, but atleast it excels in a few areas: inner classes, collections and reflection. That is, of you have to choose between the two books, gofor the SunPress one. It can even be recommended as a third or fourth book- it's, after all, quite cheap and only contain few severe factual errors.On the other hand, there're entire areas that the book totally neglects(AWT / Swing / event handling is completely missing from the book). Thebook isn't really proofread / checked, it contains a lot of 1.1-references(classes.zip on page xxxiii, for example - the more severe errors will bementioned later). Chapter 1: About Java. Introduction to JDK, compiling,running, HelloWorld as both an application and applet. p. 6 contains showssetting the CLASSPATH without = marks (quite a big mistake). Chapter 2:Beginning with a program. A line counter program: file, BufferedReader andreading each char - using readLine() would have been much better! Alsoexplains all the Java issues the application uses - in one sentence(ecxeption handling, streams, boolean etc). Fortunately, later sectionstend to be much more verbose. Chapter 3: The Java language Structure:Instance / static methods / variables, constructors, static initializators.Blocks, native, abstract and synchronized methods, packages. The examplepresented (a card playing game) is huge, definitely only for advanced,experienced programmers - later chapters always reference it. Introducingthe inheritance is as of high quality as in Linden's book. p. 37: whendiscussing the protected modifier, forgets to mention that it's actuallylet's strict than the default visibility - only mentions subclasses (on p.39 it's already OK). The C++ and even Smalltalk, Scheme remarks are greatin the book. Chapter 4: Memory and Constructors: garbage collection etc;mentions there are no local (stack) objects; constructors; overloading themand default constructors; super/this - good explanation of the need forexplicit super(). The app presented here multiplies very longnumbers. Chapter 5: Interfaces as Types: a tree sort app: sorts linesfrom a file using a binary tree. Chapter 6: Arrays: ref. arrays,multidimensional arrays; mentions anon arrays (very few books do the same!- fails to mention that it's 1.1+ though). p. 105 contains a section thatshouldn't have been included here. The authors try to put an object of asuperclass in an array of its subclass and waste 1.5 pages on showing theuser that it doesn't work. As the static type is of a subclass (Y), thedynamic type is X (superclass), you shouldn't be able to put the X objectin the array - this is what this problem means, and not the very sloppyexplanation that the authors wrote. They should have discussed typecompatibility between super- and subclass objects instead (yes, my favoritesubject that no Java books seems to show the readers - after all, this iswhat type compatibility is all about). After the concepts are understood,the reason why the program presented fails should be natural. Think of it -if the runtime system tried to access a superclass object's non-existingfield somewhere on the heap because the compiler only knew that it was oftype subclass, you could access memory after the object - this would resultin memory corruption. Chapter 7: Exception handling: good introductionand comparison to C (why it's error-prone and ugly to handle errors in thenormal path of a program and using unique return values).Try/catch/throw/finally/throws; distinction between unchecked and checkedexceptions. Explains why Throwable is suitable to be thrown (it provides aslot for a message and contains a stack trace). Chapter 8: Input/output:p.117: "the C printf() ... can crash if the wrong type is handed to itat runtime" - this is an offtopic subject, but, as I'm an 'evangelist'of much clearer and comprehensible books, I should write down how old Cbooks introduced stuff like 'How can you understand the easiest way whatthe order of the staked arguments are and what sets back the stack pointerafter returning from any function?'. This topic is, of course, not asimportant today as Java can't have varargs - but is still a good example ofhow a C book should be written. Back in the old days of MS-DOS, not eventhe oldest C compilers that did not check the types / number of argumentsin the format string crashed the running program. It's (let's say: thiswas, as those good old days are over) just the question of good argumentorder on the stack and the caller's setting back the heap pointer whenreturning from the function call. At least this is what you can except froma well-written (even ancient) C compiler under operating systems thatdidn't have memory protection (MS-DOS, for example). Newer / betteroperating systems (Unix, Windows) of course do crash the program if itissues a read from a non-accessible memory area (segmentation fault /access violation). Ok, now let's back to the original subject The chapter introduces wrapper (filtered) streams just atthe beginning - this intro is very well written, much better than that ofmost books in this review. The example section contains the following fullexamples: file copy (FileInputStream / FileOutputStream with 128-bytechunks); an app that does the same by using readLine() / println(), an appthat reads a token at a time (presenting StreamTokenizer) and an app thatappends a file to the end of another one (RandomAccessFile + seek() +writeBytes(inputFile.readLine()). The chapter, on the other hand,doesn't show examples of DataInputStream / DataOutputStream. What is more,on p. 130 I found the following: "Java does not provide direct supportfor reading and printing user-defined objects. You must implement your ownmethods to do this." - that's all, no word on ObjectInputStream /ObjectOutputStreams. It's a lethal flaw in the book. Chapter 9: Runtimetyping and class loading: speaks of type compatibility, again a goodC++-remark: "C++ did not have this feature [type info] - calledmanifest types - but so many people ended up creating their ownruntime-type information that the designers added it to the language".p. 136: as with Thinking in Java, this book also mentions explicit typecastis checked. The first sentence that introduces this subject mentions thereis some difference between C (!), C++ and Java - but then, doesn'texplicitly state what the difference really is. Speaks of class loaders(doesn't emphasize how applet classloaders work), Class, newInstance(),forName(). Chapter 10: JNI: 28 pages. Chapter 11: Threads: p. 172: abit misleading presentation of what a run() method can have: "callsynchronized methods and do whatever the thread needs to do". Why thesynchronized?! Good explanation of Thread/Runnable; it's at introducingsynchronized that quality starts to erode: the example isn't verycomprehensive. Also explicitly shows how synchronized code blocks must bedefined - unlike Waite's Java 1.2 How-To. On the other hand, there is nowait/notify in the book at all. Chapter 12: Inner classes: a greatchapter. One of the three chapters that are indeed great in the book. Makesa clear distinction between local, member and anon local classes; discussesvisibility and scoping very well; also discusses static member classes. Theexamples are very comprehensible. The big example (35 pages) is also ofhigh quality (a pattern-matcher application). Chapter 13: Collectionclasses: also a well-written one, although Thinking in Java's chapter onCollection classes is much superior to this one. The introduction is a bitdry, lacks real benchmark results, but has class hierarchy diagrams. It'sthe example that makes this chapter also great: handling (modification /equality testing of) large strings. I gave a 5* to this chapter mostlybecause of this application, as the introduction - as I've said - is muchmore inferior to that of Thinking in Java. Chapter 14: Reflection: justgreat. The app presented here is a LISP compiler. Chapter 15: Putting theLanguage Pieces Together: the calculator example presented here uses Polishnotation as the input - with a little work, it could have been rewritten touse the usual operator order. Chapter 16: RMI; Chapter 17: JDBC:tolerably well written chapters - nothing particular; Part 2, Chapter18: Introduction to Applets: p. 401: "the only thing an applet reallyhas to do is define a paint() method" - wrong, if you don't haveanything to draw - e.g. you only have G
A good book for the intermediate/experienced programmer |
65. The Believer's Secret of Spiritual Power by Andrew Murray, Charles G. Finney | |
Paperback: 144
Pages
(1987-06)
list price: US$7.99 -- used & new: US$14.00 (price subject to change: see help) Asin: 0871239833 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Both Andrew Murray and Charles Finney wrote and spoke dynamically on the work of the Holy Spirit in the Christian's life. Editor L. G. Parkhurst has taken Murray's classic, The Secret of Power from on High, and combined it with insights from Finney's book, Power from on High, editing them for today's reader. The thirty-one devotionals reflect Murray's concern that the believer bear the fruits of the Holy Spirit in his daily life and Finney's burden that the believer experience the power of the Spirit in order to be an effective witness for Christ. The two form a powerful message to Christians. Inspirational Reading That Shows Believers How to Live in Spiritual Victory. Customer Reviews (1)
A POWERFUL Book! |
66. Rescatado (Spanish Edition) by John Bevere, Mark Andrew Olsen | |
Paperback: 296
Pages
(2006-10-01)
list price: US$12.99 -- used & new: US$0.33 (price subject to change: see help) Asin: 0764203150 Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description |
67. Like Christ by Murray, Andrew | |
Unknown Binding:
Pages
(1974-01-01)
Asin: B0020CN7DI Canada | United Kingdom | Germany | France | Japan | |
68. Road Home, The by Tommy Tenney, Mark Andrew Olsen | |
Hardcover: 400
Pages
(2007-09-01)
list price: US$19.99 -- used & new: US$8.00 (price subject to change: see help) Asin: B0045JL876 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (30)
I cried, i loved it!!!!
A Tale for Those on Their Own Tough Road
A Modern Day Ruth?
The Best 'Road" I have ever been down.
A huge disappointment |
69. The Warrior by Mark Andrew Olsen | |
Paperback:
Pages
(2008)
Asin: B003V51HBM Canada | United Kingdom | Germany | France | Japan | |
70. Holy in Christ by Andrew Murray | |
Paperback:
Pages
(1969)
Asin: B000K7ZPNU Canada | United Kingdom | Germany | France | Japan | |
71. With Christ in the School of Prayer : Classic Devotions Edited for Today's Reader by Andrew Murray | |
Hardcover: 240
Pages
(2002)
-- used & new: US$49.99 (price subject to change: see help) Asin: 0739432907 Canada | United Kingdom | Germany | France | Japan | |
72. Jesus Christ - Prophet/Priest by Andrew Murray | |
Paperback: 63
Pages
(1967-01-01)
Isbn: 0871232715 Canada | United Kingdom | Germany | France | Japan | |
73. The Ministry of Intercessory Prayer/Abiding in Christ Prepack by Andrew Murray | |
Paperback:
Pages
(2003-04)
list price: US$63.92 Isbn: 0764290274 Canada | United Kingdom | Germany | France | Japan | |
74. The New Life: a Devotional Handbook of Basic Christian Truths by Andrew Murray | |
Paperback: 254
Pages
(1967)
Asin: B0018WVO0E Canada | United Kingdom | Germany | France | Japan | |
75. One Night with the King: Special Movie Edition of the Bestselling Novel, Hadassah by Tommy; Olsen, Mark Andrew Tenney | |
Hardcover:
Pages
(2004)
-- used & new: US$106.99 (price subject to change: see help) Asin: 0739452568 Canada | United Kingdom | Germany | France | Japan | |
76. Watchers by Mark Andrew Olsen | |
Paperback:
Pages
(2007)
Asin: B001TK8U5M Canada | United Kingdom | Germany | France | Japan | |
77. Rescued by Mark Andrew Olsen, John Bevere | |
Paperback: 288
Pages
(2007-09-01)
list price: US$13.99 -- used & new: US$5.98 (price subject to change: see help) Asin: 0764204475 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description A father trapped in a terrible underwater accident. A son desperate to do something--anything--to save him. A digital read-out ticking down toward certain death--and a fate more horrible still... For Alan Rockaway, his teenaged son Jeff, and Alan's new bride, Jenny, it's been little more than a fascinating tourist submarine excursion, a leisurely end to a weeklong church-couples' cruise. Then the horrifying crash and the plunge toward the unknown.... Everything Alan has assumed about himself, about what awaits him in the future, is flipped upside down. In the ultimate rescue operation, life or death is just the beginning! Customer Reviews (45)
A novel with a powerful message.
Twists,Turns, and a Powerful Message
Powerful message -- not what it could have been
awesome
A reality check for us who call ourselves "Christians" |
78. For the Love of My Brothers by Brother Andrew, Verne Becker | |
Paperback: 256
Pages
(1998-07)
list price: US$10.99 -- used & new: US$1.25 (price subject to change: see help) Asin: 0764220748 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description For the Love of My Brothers continues the dramatic story of Brother Andrew's work among the suffering church. In gripping anecdotes he describes visiting house churches in Iran, organizing the smuggling of a million Bibles into China, proclaiming his Christian faith to Latin American Guerrillas, and much more. Brother Andrew would be the first to say that he is no extraordinary person. For the Love of My Brothers imparts Brother Andrew's spiritual passion in ten simple but powerful principles that will inspire you to hear God's voice, to walk in everyday obedience, and to heed God's call to make a difference in your world. "I have worked with Brother Andrew and know of his great Christian witness. His book will be an inspiration to all who read it." Rosalynn Carter Former First Lady "While I was a young woman at a university in London, one of the greatest influences in my life was the work of Brother Andrew. Today he continues to be an inspiration to me to keep my vision clear, my heart close to God, and my life focused on the greatest mission of all: communicating the love of God to a hurting world." Sheila Walsh Author Customer Reviews (1)
Review |
79. One Night With the King: A Special Movie Edition of the Bestselling Novel, Hadassah by Tommy Tenney, Mark Andrew Olsen | |
Kindle Edition: 456
Pages
(2003-12-31)
list price: US$13.99 Asin: B003NVM3P8 Average Customer Review: Canada | United Kingdom | Germany | France | Japan | |
Editorial Review Product Description Customer Reviews (65)
Still Waiting...
Inspiring, Rich in Old Testament History
Unseen
Excellent read
Exceptional Reading |
80. The Road Home - A Modern Telling Of Ruth's Ancient Story by Tommy; Olsen, Mark Andrew Tenny | |
Hardcover:
Pages
(2007)
Isbn: 1615535268 Canada | United Kingdom | Germany | France | Japan | |
  | Back | 61-80 of 91 | Next 20 |