Active 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: $46.40

An helpfull companionReview Date: 2004-02-28

Used price: $208.47

sophisticated maths treatmentReview Date: 2005-02-15
But if you want to delve deeper into the field, this book will give an appreciation of the complexity. Hansen takes you beyond a simple brochureware explanation. The subject combines electronics and mechanics, along with control systems. The discussion is sophisticated. Hopefully, the maths won't deter you. Though it can be formidable, even to someone with an undergraduate degree in engineering or the physical sciences.
He also gives a good discussion of the various commercial usages.


a usefull theoretical summary written by an expertReview Date: 2008-10-02

Used price: $0.50

A must have for any student of the wilderness.Review Date: 2002-05-12

Used price: $4.45

Helpful, How it needs to have step by step instructions using Visual Studio 2005 and less technical discussion. VS insulates!Review Date: 2008-08-28
2.Upon the first time code is submitted to the server it is compiled and ASP does not compile tags it does not recognize. Once the code is compiled, ASP.Net start processing all the user code and event handlers. Event handlers have the following parameters: sender as object and E as eventargs.
3. ASP.Net automatically keeps track of the view state. Developers do not have to maintain or retrieve data being input on the form between different view states.
4. VB.NET variable types are: Byte, short, integer, long, single, double, decimal, char, date, boolean, string, datetime, and objects
5. VB.NET conversion functions are: Cbool, CDec, Cobj, CType, CByte, Cdbl, CShort, Asc, CChar, CInt, CSng, CDate, CLng, Cstr
6. You can create and define code in your event handler "sub handlers button_click(sender as object, e as event args)". When an event is raised - meaning the event happened - it produces variables that describe the event. The object data type represent the object that raised the event.
7. Date/Time functions: datediff, firstdayofweek, day, dayofweek, hour, isdate, minute, now, month,, second, year.
8. Math functions: abs, atan, cos, exp,fix, hex, int, log, oct. rnd, round, sin, sqrt, tan
9. String functions: instr, left, len, mid, replace, right.
10. Buffering allows you to control when output is sent to the browser. Response.buffer = false turns off buffering. When output is buffered, nothing is sent to the buffer until all the code has been executed or the buffer is full. Unbuffered output goes immediately to the browser. Response.flush forces the buffer to empty to the browser.
11. If you create a cookie with a value and then add keys, the initial value will be erased. You can not create cookies with both values and keys.
12. If the browser does not support session cookies, ASP.Net tacks on an encoded version of the session id to a link. When a user clicks a link, ASP decodes the session id and passes to the page the user is requesting.
13. Web forms handles all events and generates html on the server. "
14. The Web forms processing order: a. page is requested b. viewstate is restored for any controls c. the page_load event occurs d. events are handled, the page_unload event occurs.
15. The autopostback=true attribute cause the eventhandler to be executed immediately on event. Defined as "OnTextchanged='myhandler'", when the text has changed, a post will occur, and the myhandler function will be called.
16. The web forms framework is a huge boon for Web developers, both in UI creation and application logic. Once you've been developing with Web forms for a while, you'll wonder how you ever lived without them!
17. Accessing Data with ASP.Net: a. setup a database connection b. open the database connection c. fill a dataset with the desired date d. setup a dataview to display the data e. bind a server control to the dataview through the databinding method of the control.
18. ADO.NET full embraces XML, allowing it to communicate with XML compliant applications. ADO.Net revolves around the dataset. A dataset is a memory resident data store that provides a consistent program model for accessing data. A data set contains sets of data, constraints, relationships, and even multiple tables.
19. There are two ways to use a data store: a. Fill it with another data store c) create your own data store. The Data store has a table collections called ds.tables("name"). The ds.tables("name").primary=datacolumn defines the primary key where the datacolumn has two parameters a name and data type. Other columns can be defined for columns collection in by using ds.tables("name").columns.add(datacollection). Data Relationships form follows as, dataRelations("name",datacolumn1,datacolumn2) and joins the relations collection ds.tables("name").relations.add(datarelations). Last Datarows can be inserted using dr=new datarow where dr(index)=value and the index is the field index assigned a value. The datarow joins the ds.tables("name").rows.add(datarow), the datarows collection.
20. ADO.Net Dataset has a number of advantages: Scalability - no locks or active connections; Firewalls - XML is completely firewall proof; Programmability - does not require use of data contructs; sharing data - no data conversions are required; relationships - object structure maintains the relationship; data access - non sequential access to the multiple table data.
21. Many companies try to build propriety communication systems that allow services to be exchanged, but these are often to expensive and complicated to maintain. A web service is a programmable object that provides functionality that's accessible to any number of systems over the internet. Web services rely on the fact that any type of system or application can use http.
22. Why use web services. Corporations are trying to tie traditional applications together into a single composite entity. Web services provide a very simple mechanism for applications to communicate with each other. With Webservices you can reuse code that other people have developed. Web service files are vb.net or c# files that end in an .asmx extension.
23. A Webservice uses an XML format call the Service Description Language (SDL) to tell the clients what can be done with the service. Webservices have methods just as regular classes and business objects do.
24. Discover is the process by which a client finds out about a Web Service. Calling the service from code is simple.
Dim objCalculator As New CalculatorService
n00b to guru in 21 days!Review Date: 2007-06-11
NOT for beginnersReview Date: 2007-06-03
Disappointing layoutReview Date: 2006-04-04
When you start the book, I believe you start with the objective of either learning VB or C# and then possibly learning the other language at a later stage. Some people may have the objective of both languages at the same time, however these I believe would be in the minority.
This is where I found the layout of the book to be atrocious. The author flips from one language to the other and then discusses general things in the next paragraph.
In my opinion, it would be very easy to put a VB identifier or picture next to the VB stuff and a C# identifier or picture next to the C# stuff to make it easy for the reader to work on the stuff s/he is interested in.
It's as if the book was written for VB and then the C# stuff was plugged in afterwards in a hurry to widen the audience. This is very confusing and slows your progress down because you are continuously wasting time by reading the C# stuff if you want to focus on VB and vice versa.
A little bit of thought on the layout would go a long way to improve the readability of the book.
My second criticism of the book is my personal choice and opinion. I believe the examples should be presented with a decent coding tool such as Visual Studio 2003 / 2005 and not in Notepad. I think very few (professional) developers nowadays code in NotePad. Even a free tool from Microsoft such as one of the Express Editions would be a better editing tool than NotePad.
Codes don't work????Review Date: 2006-05-10

Used price: $4.95

Why is a Supreme Court Justice writing a book?Review Date: 2008-12-14
The Framers never intended for nine unelected people to have such sweeping power. They're unaccountable to voters. And they serve as long as they wish. Much of the judicial abuse of power can be traced back to 1803 with Chief Justice Marshall's Marbury v. Madison decision which gave the court power to strike down legislative acts which it deemed "unconstitutional" and many critics have examined the Constitution and have found no legal basis for this partisan-motivated blatant grab for power. Gradually the Supreme Court has sided with a growing tendency for political power to gravitate to Washington; specific rulings over time and creative interpretations of the Constitution's commerce clause eroded states' authority to regulate their own economies. Today, Washington regulates much of the economy, and it does this badly, in my view.
This book has some good ideas about contrasting ancient with modern liberty, about judicial restraint, about Breyer's sense of the constitution, but it's much more important now to ignore the partisan ramblings of an unelected legislator who wears the garments of justice, and rather examine America.
America is in deep trouble. There is a dangerous concentration of power within Washington in the presidency. There are structural flaws in the Constitution which include gerrymandering, underrepresentation of voters from populous states in the Senate, a confusing electoral college process, no term limits for Supreme Court justices, lack of representation for D.C. voters, inability to get rid of an incompetent or ill president quickly, abuse of the presidential pardon, the danger of martial law if there's a substantial attack on Congress, and so forth.
I see even more serious flaws. The foreign policy architecture places too much authority in the hands of one overburdened official -- the president -- so American foreign policy is largely dependent on the quality of the president who can be distracted by domestic concerns as well as party politics. Second, the judiciary has taken it upon itself to ride herd over the legislature, and there have been intelligent arguments by foreign scholars such as Adam Tomkins that the judiciary is ill suited for this task (for example, courts have to wait for specific cases to bubble up before they can make a ruling). Third, the federal arrangement has become undone. State governments have lost considerable power to regulate their economies, and Washington has taken over the role of chief regulator, but it does this job badly. Fourth, citizenship is undefined. In my view it entails specific responsibilities including regular participation in local government meetings; however, most Americans are not true citizens but mere consumers, political zombies, angry and frustrated workers who are politically apathetic.
What has happened, in my view, is that corruption and rot and partisanship and gridlock have overwhelmed government so that it can't begin to face serious long term problems such as Social Security underfunding, environmental dangers, nuclear terrorism, financial meltdown. Washington can't fix itself.
So I am summoning a Second Constitutional Convention to meet in Independence Hall in Philadelphia beginning July 4th, 2009, and among my chosen delegates is Justice Breyer -- while I don't agree with all of his views, I think he should be there to help keep some continuity with the present Constitution.
I think delegates should think seriously about how to prevent nuclear terrorism. Many experts see terrorism as essentially a government and military and police problem. And I think that's a mistake. I think terrorism is a bigger problem -- it's a citizens' problem. We're the ones who suffer when it happens. So citizens need to prevent it. And as citizens we have wider latitude and authority to act than government officials have.
Terrorism, in my view, is "violence against individual rights". Begin with my definition and a solution will follow. One can suppose there are three types of terrorists -- criminals (neighbors who violate our rights), tyrants (our own government officials who violate our rights) and foreign terrorists (powerful individuals abroad or heads of state.) All three types of terrorism must be prevented, in my view. It's not enough for government by itself to try to fight terrorism, because in trying to fight terrorism, government may become a terrorist towards its own people. It's a multi-faceted problem, larger but solvable, in my view. We can't try to fight one form of terrorism by exacerbating another. But this happens routinely in airports: to prevent airline hijackings (crime) security guards frisk every passenger without cause (a form of tyranny that passengers put up with despite being treated like criminals.)
My book "Common Sense II: How to Prevent the Three Types of Terrorism" (Amazon & Kindle, 184 pages) gives a prevention strategy. You should buy my book, not Breyer's. The essential way to prevent each type of terrorism is the application of light (meaning information, exposure, awareness.) For example, to prevent crime, we must identify all movement in public while strengthening privacy. For this to happen, citizens must agree to such monitoring, and for this to happen, people must become real citizens, not merely apathetic consumers and shoppers which characterize most Americans today. Citizenship should be a contract between individual and state with specific responsibilities and privileges. It's possible to prevent every instance of home-grown terrorism using this method. The rest of my book shows how one can apply the concept of light to exposing the other types. For example, I think the architecture of government requires an overhaul so that America can make steady long-term foreign policy, consistently rewarding friends and punishing enemies; but today it can't do this because administrations change every eight years, sometimes after only four. I propose a revised architecture based on lessons from history and political philosophy.
My strategy will prevent all types of terrorism, including smuggled nuclear bombs. I challenge Justice Breyer to read my book and respond to my invitation to attend the Second Constitutional Convention. My strategy is brief, rational, non-religious, written by a citizen for citizens, non-technical, non-partisan. Be prepared: there are some controversial ideas (one expert found it "bracing"). But my book can protect America. It's plain logic from one citizen to another.
Overall, the existence of Breyer's book is a painful reminder that the Supreme Court has become politicized, arrogant, abusive. Don't buy Breyer's book; buy mine (on Amazon). I call Justice Breyer to serve as a delegate to the Second Constitutional Convention. And I challenge him to debate the merits of my strategy. Please write comments below urging him to attend.
Excellent discussion of judicial philosophyReview Date: 2008-11-11
Breyer v. ScaliaReview Date: 2007-11-13
Breyer writes clearly, his book is short, and the discussion draws on modern Supreme Court cases. Best of all, he provides a convincing alternative to fashionable "textualist" approaches to interpretation, which reject legislative history and would have courts stick to the "four corners" of texts, relying on hoary canons of interpretation to clarify ambiguous sections. As Breyer notes, textualism lacks clear Constitutional sanction, is far from transparent, does not guarantee objectivity (its main selling point), and ends up relying on consequentialist reasoning of its own.
Much of the argument of "Active Liberty" revolves around the distinction between so-called Ancient Liberty (the right to participate in government) and so-called Modern Liberty (the right to be free from government coercion). Both values are reflected in the Constitution, and Breyer's effort to strike a balance between them is the most interesting part of his book. While his focus is too narrow for "Active Liberty" to be a major contribution to popular understanding of our legal system, it is a welcome counterpoint -- both jurisprudential and stylistic -- to Scalia's bombastic "A Matter of Interpretation," which dealt with the same issue.
Cerebral Excuse MakingReview Date: 2008-11-12
The foundation of Breyer's premise has to do with the democratic compatibility of "ancient", or active liberty (the inclination of citizens to participate in self-government), and "modern" liberty (the protection of individual rights and freedoms). Once these two liberties are balanced, judicial decisions must be rendered based on the Constitution's "democratic objective." But what is the democratic objective? Upon reading this book, it becomes readily evident a conservative textualist (Justice Scalia, for example) can tell you what the Constitution says, and what its objective is--but an active libertarian will interpret the document to conform to the events of the day based upon precedent, societal/cultural conditions, and consequences. In other words, as Justice Breyer argues, affirmative action is good in some cases, bad in others; the posting of the Ten Commandments is wrong in one venue, but perfectly acceptable in another. Such judicial selective subjectivity is a necessity, argues the progressive jurist, based on a country that is in constant change.
So we arrive at the conclusion: A Living Constitution is just like having your cake, and eating it, too. If there's a screw-up, we can always come down on the other side of a decision tomorrow. Live and learn. ACTIVE LIBERTY: INTERPRETING OUR DEMOCRATIC CONSTITUTION is a quick, if not troubling read. Con: We see, firsthand, how the progressive jurists can stretch and distort any issue to conform to "Constitutionality"; Pro: We get up close and personal into the mental machinations of a Supreme Court justice. Kind of scary, but interesting, too.
--D. Mikels, Author, The Reckoning
It wouldn't be nice to "dis'" a Supreme Court JusticeReview Date: 2008-09-03
Frankly, a discerning reader could wonder if much of those "tensions" mentioned above are made-up differences. Equally frankly, Justice Breyer tells us that such tensions are his view of the real bread-and-butter Supreme Court legal work. He freely admits to the subjectiveness which his viewpoint influences Supreme Court decisions, and points out that more textual (objective, narrower) approaches also contain subjectivity. True enough. But narrower and more objective approaches deal with Constitutional terms like "due process," "just compensation," and "public use." These ought to busy our justices enough without being concerned with guessing future outcomes or majority wishes, or other matters best handled by the lawmaking arm of our government. Mr. Justice Breyer's approach at times seems like an excuse to be less exact on formal decisions - justified inconsistency [the last sentence is merely an opinion by this reviewer!]
Nevertheless, where else can one pick up a book by a sitting Supreme Court justice which explains his/her thinking process? Especially if that book is short enough, and usually worded simply enough to be read easily and relatively quickly. Buy the book, or check it out from the library, and this will indeed show decent respect for the author.

Not Really happy for Spending $Review Date: 2003-04-09
and Refer to Old ASP. (I never used old ASP)
Basically, I paid money thinking that I am getting a book on ASP.net with VB.net.
Rally feel like I wasted the money, as I am not happy with my purchase.
This book may be good for people who know both VB.net and C#.net
Otherwise don't waste your money.
Lots of pages, too little useful contentReview Date: 2003-10-14
In short the book isn't worth it if you have some asp.net books already. If you are developing with asp.net currently, this may be a decent reference. However, you might find more use using MSDN for reference. A sub par wrox book.
Very Disorganised , RepetitiveReview Date: 2003-04-17
I brought the book for my Certification Study ...and as a reference .
But the way the book is written , you are confused .
and The way it is organised , you are lost!!
Like If i need some perticular thing,sometimes i am clueless as to which topic I should look .
I would suggest the MCSD/MCAD book by Amit Kalani .
Before you buy the book see the differnce the way these books are wrtiiten in the preview pages
and If you are plaaning to buy a book for certification , like me .. wrox is not for you .I really regret spending my money on wrox .
You'd think it would be more helpReview Date: 2003-05-30
Disjointed [stuff]Review Date: 2003-05-13

Used price: $0.33

Out of DateReview Date: 2008-11-25
poor referenceReview Date: 2004-04-13
I haven't found anything better.
A good start on XMLReview Date: 2001-10-13
Who's definition of "in-depth" are we using?Review Date: 2003-04-04
While other reviewers seem willing to let slide the number of typos, omitions and code examples that simply don't work, I am less forgiving. I got this book on the assumption that I would be able to learn how to integrate XML with my knowledge of ASP. Most examples in this book, however, are for Visual Basic, and while that only requires little to moderate tweaking, the pure ASP examples in this book are almost non-existant.
Add in the fact that the book constantly interrupts a lesson to add new concepts we're supposed to either immediately understand, or bookmark and thumb through the book hoping they remembered to include the examples, makes this a frustrating book to learn from. Doing a quick search on Google for "XML help basics" gave me more insight into XML in just a few minutes than reading this book for a few hours did.
Close....but yet so frustratingReview Date: 2002-02-02
Code Examples are REDUNDANT.
Code Examples are INCOMPLETE in the book. (Even the
"Complete" examples. Had to download the source code and go line by line to figure out what was "missing". VERY FRUSTRATING.
Book skips arround quite a bit and is confusing at times. The Summary Case (3 tier architecture) which I was looking forward to was pretty much......um USELESS.
Oh well, I didn't listen to the others, maybe you will listen to me. Take a pen, paper and write down the 3 useful pages in this book and save your money.

Used price: $1.12

A MUST BUY!Review Date: 2000-01-14
A good buy if you need a referenceReview Date: 2000-07-21
A solid performerReview Date: 2000-03-18
GREAT BOOK!Review Date: 2000-01-13
This book really deserves 0.5 of a star, at bestReview Date: 2000-02-16

Used price: $0.51

Notice the Dates on the ReviewsReview Date: 2007-05-21
Just days after the book came out, there was a rush of excellent reviews, most of which where only a few sentence long and lacked any detail. Then reality set in. People who really read it, universally hated it. -- And gave detailed examples why.
Now, I'm not going to say the original reviews where astroturf... but read them in order and watch the dates. Then consider you have a book with 14 authors all of whom use the internet and know the power of good Amazon reviews...
Things just don't add up.
Best for Programmers to implement XML in ASPReview Date: 2002-08-29
Not worth it (at all)Review Date: 2001-10-09
I LOVE wrox ASP 3.0 Ref and ADO 2.6 Ref. Maybe Wrox should have taken that approach with this book -- instead of trying to act like this book can in any way teach anything about XML.
The examples in this book are horrid, they aren't in depth enough, and more importantly, don't even correspond well with each other.
Too many of the chapters jump into the middle of a subject, then try to work back to the beginning and then forward to the end.
Trust me, I've read the first 5-7 chapters of this book and finally got so sick of all the ambiguity that I went out to the MS Site and learned more in 30 minutes there than I ever could have with this book.
Some of the case studies in the back are nice, and this book would have made a great reference (had they gone that route), but it is a horrible book to learn how to integrate XML with ASP.
Save your money.
Best for Programmers to implement XML in ASPReview Date: 2002-08-29
Bad examples, choppy, dated and not for beginnersReview Date: 2002-04-20
The author(s) seem to me to be attempting to impress us (and each other) with their knowledge of the subject rather than really trying to write a digestible explanation of ways to utilize XML in an ASP environment.
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
Wadi Rum is tucked away in the south of Jordan, close to the Red Sea port of Aqaba, remote and splendid in both landscape and culture, yet only a five-hour flight and a short onward journey from Europe.
Here are detailed descriptions and 'topos' of all the known routes to date, from short walks, camel treks and 4-WD journeys through sports climbs and major 'big walls' of the highest technical difficulty.
Additionally the author gives information on sites of antiquity, flora and fauna and life with the Bedouin. It is their roguish humour and warm hospitality as much as the magnificence of these deserts and mountains that make a visit to Rum a unique experience. This book tells you everything you need to know.
It is a remote and spectacular landscape, offering unlimited rock for the pioneer, as well as many superb existing routes of all grades of difficulty, while the desert and numerous "siqs" or canyons offer a wilderness experience not to be found anywhere else in the world. The wealth of experience is further increased by the Bedouin whose homeland this is, and by the variety of wildlife to be found in the area. It is hoped that this book will allow others to savor the solitude and mystical magic of these deserts and mountains.