libristo advantage books inc

- znaleziono 21 produktów w 1 sklepie

The Advantage - 2826693679

102,09 zł

The Advantage John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

There is a competitive advantage out there, arguably more powerful than any other. Is it superior strategy? Faster innovation? Smarter employees? No, New York Times best-selling author, Patrick Lencioni, argues that the seminal difference between successful companies and mediocre ones has little to do with what they know and how smart they are and more to do with how healthy they are. In this book, Lencioni brings together his vast experience and many of the themes cultivated in his other best-selling books and delivers a first: a cohesive and comprehensive exploration of the unique advantage organizational health provides. Simply put, an organization is healthy when it is whole, consistent and complete, when its management, operations and culture are unified. Healthy organizations outperform their counterparts, are free of politics and confusion and provide an environment where star performers never want to leave.Lencioni's first non-fiction book provides leaders with a groundbreaking, approachable model for achieving organizational health-complete with stories, tips and anecdotes from his experiences consulting to some of the nation's leading organizations. In this age of informational ubiquity and nano-second change, it is no longer enough to build a competitive advantage based on intelligence alone. The Advantage provides a foundational construct for conducting business in a new way-one that maximizes human potential and aligns the organization around a common set of principles.

Sklep: Libristo.pl

XSLT 2.0 and XPath 2.0 Programmer's Reference 4e - 2872013588

340,07 zł

XSLT 2.0 and XPath 2.0 Programmer's Reference 4e John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

This book is primarily a practical reference book for professional XSLT developers. It assumes no previous knowledge of the language, and many developers have used it as their first introduction to XSLT; however, it is not structured as a tutorial, and there are other books on XSLT that provide a gentler approach for beginners. The book does assume a basic knowledge of XML, HTML, and the architecture of the Web, and it is written for experienced programmers. There's no assumption that you know any particular language such as Java or Visual Basic, just that you recognize the concepts that all programming languages have in common. The book is suitable both for XSLT 1.0 users upgrading to XSLT 2.0, and for newcomers to XSLT. The book is also equally suitable whether you work in the Java or .NET world. As befits a reference book, a key aim is that the coverage should be comprehensive and authoritative. It is designed to give you all the details, not just an overview of the 20 percent of the language that most people use 80 percent of the time.It's designed so that you will keep coming back to the book whenever you encounter new and challenging programming tasks, not as a book that you skim quickly and then leave on the shelf. If you like detail, you will enjoy this book; if not, you probably won't. But as well as giving the detail, this book aims to explain the concepts, in some depth. It's therefore a book for people who not only want to use the language but who also want to understand it at a deep level. The book aims to tell you everything you need to know about the XSLT 2.0 language. It gives equal weight to the things that are new in XSLT 2.0 and the things that were already present in version 1.0. The book is about the language, not about specific products. However, there are appendices about Saxon (the author's own implementation of XSLT 2.0), about the Altova XSLT 2.0 implementation, and about the Java and Microsoft APIs for controlling XSLT transformations, which will no doubt be upgraded to handle XSLT 2.0 as well as 1.0. A third XSLT 2.0 processor, Gestalt, was released shortly before the book went to press, too late to describe it in any detail. But the experience of XSLT 1.0 is that there has been a very high level of interoperability between different XSLT processors, and if you can use one of them, then you can use them all.In the previous edition we split XSLT 2.0 and XPath 2.0 into separate volumes. The idea was that some readers might be interested in XPath alone. However, many bought the XSLT 2.0 book without its XPath companion and were left confused as a result; so this time, the material is back together. The XPath reference information is in self-contained chapters, so it should still be accessible when you use XPath in contexts other than XSLT. The book does not cover XSL Formatting Objects, a big subject in its own right. Nor does it cover XML Schemas in any detail. If you want to use these important technologies in conjunction with XSLT, there are other books that do them justice. This book contains twenty chapters and eight appendixes (the last of which is a glossary) organized into four parts. The following section outlines what you can find in each part, chapter, and appendix. Part I: Foundations: The first part of the book covers essential concepts. You should read these before you start coding.If you ignore this advice, as most people do, then you read them when you get to that trough of despair when you find it impossible to make the language do anything but the most trivial tasks. XSLT is different from other languages, and to make it work for you, you need to understand how it was designed to be used. Chapter 1: XSLT in Context: This chapter explains how XSLT fits into the big picture: how the language came into being and how it sits alongside other technologies. It also has a few simple coding examples to keep you alert. Chapter 2: The XSLT Processing Model: This is about the architecture of an XSLT processor: the inputs, the outputs, and the data model. Understanding the data model is perhaps the most important thing that distinguishes an XSLT expert from an amateur; it may seem like information that you can't use immediately, but it's knowledge that will stop you making a lot of stupid mistakes. Chapter 3: Stylesheet Structure: XSLT development is about writing stylesheets, and this chapter takes a bird's eye view of what stylesheets look like.It explains the key concepts of rule-based programming using templates, and explains how to undertake programming-in-the-large by structuring your application using modules and pipelines. Chapter 4: Stylesheets and Schemas: A key innovation in XSLT 2.0 is that stylesheets can take advantage of knowledge about the structure of your input and output documents, provided in the form of an XML Schema. This chapter provides a quick overview of XML Schema to describe its impact on XSLT development. Not everyone uses schemas, and you can skip this chapter if you fall into that category. Chapter 5: The Type System: XPath 2.0 and XSLT 2.0 offer strong typing as an alternative to the weak typing approach of the 1.0 languages. This means that you can declare the types of your variables, functions, and parameters, and use this information to get early warning of programming errors. This chapter explains the data types available and the mechanisms for creating user-defined types. Part II: XSLT and XPath Reference: This section of the book contains reference material, organized in the hope that you can easily find what you need when you need it.It's not designed for sequential reading, though you might well want to leaf through the pages to discover what's there. Chapter 6: XSLT Elements: This monster chapter lists all the XSLT elements you can use in a stylesheet, in alphabetical order, giving detailed rules for the syntax and semantics of each element, advice on usage, and examples. This is probably the part of the book you will use most frequently as you become an expert XSLT user. It's a "no stone unturned" approach, based on the belief that as a professional developer you need to know what happens when the going gets tough, not just when the wind is in your direction. Chapter 7: XPath Fundamentals: This chapter explains the basics of XPath: the low-level constructs such as literals, variables, and function calls. It also explains the context rules, which describe how the evaluation of XPath expressions depends on the XSLT processing context in which they appear. Chapter 8: XPath: Operators on Items: XPath offers the usual range of operators for performing arithmetic, boolean comparison, and the like.However, these don't always behave exactly as you would expect, so it's worth reading this chapter to see what's available and how it differs from the last language that you used. Chapter 9: XPath: Path Expressions: Path expressions are what make XPath special; they enable you to navigate around the structure of an XML document. This chapter explains the syntax of path expressions, the 13 axes that you can use to locate the nodes that you need, and associated operators such as union, intersection, and difference. Chapter 10: XPath: Sequence Expressions: Unlike XPath 1.0, in version 2.0 all values are sequences (singletons are just a special case). Some of the most important operators in XPath 2.0 are those that manipulate sequences, notably the "for" expression, which translates one sequence into another by applying a mapping. Chapter 11: XPath: Type Expressions: The type system was explained in Chapter 5; this chapter explains the operations that you can use to take advantage of types. This includes the "cast" operation which is used to convert values from one type to another.A big part of this chapter is devoted to the detailed rules for how these conversions are done.Chapter 12: XSLT Patterns: This chapter returns from XPath to a subject that's specific to XSLT. Patterns are used to define template rules, the essence of XSLT's rule-based programming approach. The reason for explaining them now is that the syntax and semantics of patterns depends strongly on the corresponding rules for XPath expressions. Chapter 13: The Function Library: XPath 2.0 includes a library of functions that can be called from any XPath expression; XSLT 2.0 extends this with some additional functions that are available only when XPath is used within XSLT. The library has grown immensely since XPath 1.0. This chapter provides a single alphabetical reference for all these functions. Chapter 14: Regular Expressions: Processing of text is an area where XSLT 2.0 and XPath 2.0 are much more powerful than version 1.0, and this is largely through the use of constructs that exploit regular expressions. If you're familiar with regexes from languages such as Perl, this chapter tells you how XPath regular expressions differ. If you're new to the subject, it explains it from first principles.Chapter 15: Serialization: Serialization in XSLT means the ability to generate a textual XML document from the tree structure that's manipulated by a stylesheet. This isn't part of XSLT processing proper, so (following W3C's lead) it's separated it into its own chapter. You can control serialization from the stylesheet using an declaration, but many products also allow you to control it directly via an API. Part III: Exploitation: The final section of the book is advice and guidance on how to take advantage of XSLT to write real applications. It's intended to make you not just a competent XSLT coder, but a competent designer too. The best way of learning is by studying the work of others, so the emphasis here is on practical case studies. Chapter 16: Extensibility: This chapter describes the "hooks" provided in the XSLT specification to allow vendors and users to plug in extra functionality. The way this works will vary from one implementation to another, so we can't cover all possibilities, but one important aspect that the chapter does cover is how to use such extensions and still keep your code portable.Chapter 17: Stylesheet Design Patterns: This chapter explores a number of design and coding patterns for XSLT programming, starting with the simplest "fill-in-the-blanks" stylesheet, and extending to the full use of recursive programming in the functional programming style, which is needed to tackle problems of any computational complexity. This provides an opportunity to explain the thinking behind functional programming and the change in mindset needed to take full advantage of this style of development. Chapter 18: Case Study: XMLSpec: XSLT is often used for rendering documents, so where better to look for a case study than the stylesheets used by the W3C to render the XML and XSLT specifications, and others in the same family, for display on the web? The resulting stylesheets are typical of those you will find in any publishing organization that uses XML to develop a series of documents with a compatible look-and-feel. Chapter 19: Case Study: A Family Tree: Displaying a family tree is another typical XSLT application.This example with semi-structured data-a mixture of fairly complex data and narrative text-that can be presented in many different ways for different audiences. It also shows how to tackle another typical XSLT problem, conversion of the data into XML from a legacy text-based format. As it happens, this uses nearly all the important new XSLT 2.0 features in one short stylesheet. But another aim of this chapter is to show a collection of stylesheets doing different jobs as part of a complete application. Chapter 20: Case Study: Knight's Tour: Finding a route around a chessboard where a knight visits every square without ever retracing its steps might sound a fairly esoteric application for XSLT, but it's a good way of showing how even the most complex of algorithms are within the capabilities of the language. You may not need to tackle this particular problem, but if you want to construct an SVG diagram showing progress against your project plan, then the problems won't be that dissimilar. Part IV: Appendices: A ppendix A: XPath 2.0 Syntax Summary: Collects the XPath grammar rules and operator precedences into one place for ease of reference.Appendix B: Error Codes: A list of all the error codes defined in the XSLT and XPath language specifications, with brief explanations to help you understand what's gone wrong. Appendix C: Backward Compatibility: The list of things you need to look out for when converting applications from XSLT 1.0. Appendix D: Microsoft XSLT Processors: Although the two Microsoft XSLT processors don't yet support XSLT 2.0, we thought many readers would find it useful to have a quick summary here of the main objects and methods used in their APIs. Appendix E: JAXP: the Java API for XML Processing: JAXP is an interface rather than a product. Again, it doesn't have explicit support yet for XSLT 2.0, but Java programmers will often be using it in XSLT 2.0 projects, so the book includes an overview of the classes and methods available. Appendix F: Saxon: At the time of writing Saxon (developed by the author of this book) provides the most comprehensive implementation of XSLT 2.0 and XPath 2.0, so its interfaces and extensions are covered in some detail. Appendix G: Altova: Altova, the developers of XML Spy, have an XSLT 2.0 processor that can be used either as part of the development environment or as a freestanding component.This appendix gives details of its interfaces. Appendix H: Glossary Note: CD-ROM/DVD and other supplementary materials are not included as part of eBook file.

Sklep: Libristo.pl

Encyclopedia of NMR 10 V Set - 2873170012

21114,04 zł

Encyclopedia of NMR 10 V Set John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Encyclopedia of NMR - Encompassing all relevant areas for NMR science and technology and applications in physics, chemistry and biology§This new 10 volume set captures every aspect of the interdisciplinary nature of magnetic resonance and provides the most complete and up-to-date source in the field. It includes many articles from the print editions of Encyclopedia of Nuclear Magnetic Resonance and recent EMR Books, as well as new and updated articles published online in the Encyclopedia of Magnetic Resonance.§Covering key developments such as:§New techniques§Protein structures§Dynamics of molecular processes§Characterization of materials, polymers and nano-materials§NMR crystallography§Solid biological samples such as membranes§Add Encyclopedia of NMR to your bookshelf for...§Easy to access information - Covering all the techniques and applications in general NMR areas in an A-Z format§Use as a learning tool - Revisit basics as well as get up-to-date with the latest methods and thinking§Use in day-to-day work in the lab - Discover information on new techniques and applications, take advantage of useful hints and tips§Short biographies of contributing authors - Showing the link between the career and the expertise of the contributing scientists§Perspectives and personal recollections - A look back at major adventures, evolution and developments that have shaped the field, alongside leading researchers who share their personal involvements with NMR and MRI§Encyclopedia of NMR includes:§Many original and updated articles from the print edition of Encyclopedia of Nuclear Magnetic Resonance (1996)§Articles from EMR Books - special handbooks covering hot topic areas§Additional NMR-focused articles published online in the Encyclopedia of Magnetic Resonance - the updating online resource Take advantage of the introductory price: Pds. 2500 / EUR3220 / $3750, valid until 28th February 2013. Prices will revert to Pds. 3067 / EUR3940 / $4600 thereafter.§Subscribe to the updating online edition - eMagRes§Available online for libraries and institutions as eMagRes (formerly published as the Encyclopedia of Magnetic Resonance), the online edition relaunched in January 2013with a range of new features which makes the site more user-friendly and more attractive to both the medical MRI community and to the molecular chemistry, physics and biology communities.§This reference work first published online in 2007, and since that date has been updated four times a year with approximately 10% new or updated content each year across a wide range of topics. As part of the relaunch the content structure has been revised to aid quick navigation for both the medical MRI community and the molecular chemistry, physics and biology communities to articles of interest.§Find out more about the online edition here: www.wileyonlinelibrary.com/ref/eMagRes

Sklep: Libristo.pl

Professional WebGL Programming - Developing 3D Graphics for the Web - 2867114564

178,27 zł

Professional WebGL Programming - Developing 3D Graphics for the Web John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Everything you need to know about developing hardware-accelerated 3D graphics with WebGL!§As the newest technology for creating 3D graphics on the web, in both games, applications, and on regular websites, WebGL gives web developers the capability to produce eye-popping graphics. This book teaches you how to use WebGL to create stunning cross-platform apps. The book features several detailed examples that show you how to develop 3D graphics with WebGL, including explanations of code snippets that help you understand the why behind the how.§You will also develop a stronger understanding of WebGL development from coverage that:§Provides a comprehensive overview of WebGL and shows how it relates to other graphics-related technologies§Addresses important topics such as the WebGL graphics pipeline, 3D transformations, texturing and lighting§Teaches you how to write vertex shaders and fragment shaders for WebGL§Includes a lot of useful guidelines, tips, and tricks for WebGL performance optimizations§Professional WebGL Programming is the first book on the market to delve into this fascinating topic and it puts you on your way to mastering the possibilities that exist with WebGL.Everything you need to know to develop web games and applications with superb hardware-accelerated 3D graphics§Ready to develop web games and applications with the same high-quality, real-time 3D graphics featured in the most popular native apps? Professional WebGL Programming shows you how, getting you up and running in no time with the knowledge and skills you need to create stunning, graphically sophisticated games and web apps that run on most web browsers. Featuring clear, step-by-step guidance, expert tips and skill-building exercises, supplemented with detailed, hands-on development examples, it covers all the bases, including:§WebGL basics§WebGL versus other graphics technologies§Relevant linear algebra§Troubleshooting and debugging techniques§Drawing with the WebGL API§Compact JavaScript Libraries and 3D Transformations§Writing vertex shaders and fragment shaders§Texturing and lighting§Animation and user input§OpenGL ES Shading Language§WebGL performance optimisation§From WebGL basics to building stunning 3D graphics and animations from the ground up, Professional WebGL Programming is your total guide to taking full advantage of this powerful web development technology.§wrox.com§Programmer Forums§Join our Programmer to Programmer forums to ask and answer programming questions about this book, join discussions on the hottest topics in the industry, and connect with fellow programmers from around the world.§Code Downloads§Take advantage of free code samples from this book, as well as code samples from hundreds of other books, all ready to use.§Read More§Find articles, ebooks, sample chapters, and tables of contents for hundreds of books, and more reference resources on programming topics that matter to you.§Wrox Professional guides are written by working developers to address everyday needs. They provide examples, practical solutions, and expert education in new technologies, all designed to help programmers do a better job.

Sklep: Libristo.pl

Exceptional Selling - How the Best Connect and Win in High Stakes Sales - 2875794217

105,11 zł

Exceptional Selling - How the Best Connect and Win in High Stakes Sales John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Praise for Exceptional Selling "Thull's leading-edge thinking makes this book extraordinary. This straightforward guide to communicating across all cultures with credibility and respect will give you a significant competitive advantage in a complex and crowded global marketplace." -Guenter Lauber, Vice President, Siemens Energy & Automation, Inc., EA Systems "Exceptional Selling may be one of the most important books written on sales and marketing communications for high stakes sales. It shows you how to stand apart from your competition, communicate with great clarity, and position your solution as the most compelling choice for the long term." -Rob Mancuso, Senior Vice President, Investors Financial Services Corp. "Thull has taken consultative and collaborative sales to new heights. The knowledge in this book is priceless. The trust and respect created by the diagnostic process is a must-have for success here in Asia and around the globe. It enables us to differentiate ourselves early and achieve long-lasting success."-Tay Chong Siew, Major Customer Director, North Asia, BOC Gases "Having achieved exceptional success by working with Thull and implementing the strategy and process in his first two books, I'm astounded that his leading-edge thinking is captured in yet more detail in another brilliant book. The conversation examples of his powerful diagnostic approach will bring even greater success to our organization. Truly exceptional!" -Alberto Chacin, Director of On Demand Services LAD, Oracle USA "Exceptional Selling is a dramatic departure from the vast majority of sales books. It scares me to see all the ways in which we can self-sabotage our sales opportunities-but that's only chapter one. Throughout the book, Thull describes compelling examples of how to succeed in a cluttered marketplace." -Steven Rodriguez, Senior Vice President, Ceridian Corporation "Thull has again extended the concepts and thinking he developed in The Prime Solution and Mastering the Complex Sale. This is an essential read for anyone working to understand his customers in a complex world." -Wayne Hutchinson, Vice President of SalesMarketing and Consulting, Shell Global Solutions International B.V.

Sklep: Libristo.pl

Play Like a Man, Win Like a Woman - 2876120450

77,87 zł

Play Like a Man, Win Like a Woman Broadway Books (A Division of Bantam Doubleday...

Książki / Literatura obcojęzyczna

Women make up almost half of today's labor force, but in corporate America they don't share half of the power. Only four of the "Fortune 500 company CEOs are women, and it's only been in the last few years that even half of the "Fortune 500 companies have more than one female officer. A major reason for this? Most women were never taught how to play the game of business. Throughout her career in the supercompetitive, male-dominated media industry, Gail Evans, one of the country's most powerful executives, has met innumerable women who tell her that they feel lost in the workplace, almost as if they were playing a game without knowing the directions. She tells them that's exactly the case: Business is indeed a game, and like any game, there are rules to playing well. For the most part, Gail has discovered, women don't know them. Men know these rules because they wrote them, but women often feel shut out of the process because they don't know when to speak up, when to ask for responsibility, what to say at an interview, and a lot of other key moves that can make or break a career. Now, in her book Play Like a Man, Win Like a Woman, Gail Evans reveals the secrets to the playbook of success and teaches women at all levels of the organization--from assistant to vice president--how to play the game of business to their advantage. Sharing with humor and candor her years of lessons from corporate life, Gail Evans gives readers practical tools for making the right decisions at work. Among the rules you will learn are: - How to Keep Score at Work- When to Take a Risk- How to Deal with the Imposter Syndrome- Ten Vocabulary Words That Mean Different Things toMen and Women- Why Men Can be Ugly, and You Can't- When to Quit Your Job Evans is not saying that every woman has to play exactly by men's rules--not at all. Women bring many inherent traits to the workplace that can provide them with a potential advantage over

Sklep: Libristo.pl

Sun Tzu and the Art of Business - 2866656300

177,06 zł

Sun Tzu and the Art of Business Oxford University Press Inc

Książki / Literatura obcojęzyczna

More than two millennia ago the famous Chinese general Sun Tzu wrote the classic work on military strategy, The Art of War. Now, in a new edition of Sun Tzu and the Art of Business, Mark McNeilly shows how Sun Tzu's strategic principles can be applied to twenty-first century business. Here are two books in one: McNeilly's synthesis of Sun Tzu's ideas into six strategic principles for the business executive, plus the text of Samuel B. Griffith's popular translation of The Art of War. McNeilly explains how to gain market share without inciting competitive retaliation, how to attack competitors' weak points, and how to maximize market information for competitive advantage. He demonstrates the value of speed and preparation in throwing the competition off-balance, employing strategy to beat the competition, and the need for character in leaders. Lastly, McNeilly presents a practical method to put Sun Tzu's principles into practice.By using modern examples throughout the book from Google, Zappos, Amazon, Dyson, Aflac, Singapore Airlines, Best Buy, the NFL, Tata Motors, Starbucks, and many others, he illustrates how, by following the wisdom of history's most respected strategist, executives can avoid the pitfalls of management fads and achieve lasting competitive advantage.

Sklep: Libristo.pl

Japanese Bookbinding - 2873779710

163,50 zł

Japanese Bookbinding Shambhala Publications Inc

Książki / Literatura obcojęzyczna

A third-generation traditional bookbinder gives easy-to-follow instructions for making all the major, historically important styles of Japanese bindings as well as traditional book cases--the custom-made folding boxes that afford handsome protection for Japan's exquisite books. The authoritative text, written by one of Japan's leading professional bookbinders, has been fully adapted for Western readers. Both American and Japanese suppliers of traditional tools and materials are provided and substitutes are recommended for items not readily available. For centuries the West has admired Japanese books, but only now can we make them ourselves and take full advantage of their creative possibilities. Stunning and practical, these bindings are ideal for preserving calligraphy, letters, artwork, and poems, for adding a distinctive touch to limited-edition books, and for use as diaries or gifts.

Sklep: Libristo.pl

C# 10.0 All-in-One For Dummies - 2867914597

164,10 zł

C# 10.0 All-in-One For Dummies John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Look sharp--learn or refresh your C# skills with the latest versionC# is one of the most popular programming languages, and frequent updates help it keep pace as the world of coding changes. You can keep pace too, thanks to C# 10.0 All-in-One For Dummies, where you'll learn the basics of the language itself, how to code in Visual Studio, and how to take advantage of the new features in the latest release. At every stage of your career, you'll need to know the cutting-edge trends and techniques that clients want. This book has your back, with info on object-oriented programming, writing secure code, building web applications, and more.The six standalone mini-books you'll find inside this all-in-one will take you through the changes to C# and the practical applications and dev tools that you need to know. New features covered include records, init only setters, top-level statements, pattern matching enhancements, fit and finish features, and a lot more. Plus, this version is packed with more examples and code snippets, so you can sharply see C# in action!* Learn the very basics of C# programming, even if you have no prior experience* Refresh your knowledge of the language and learn how to use the new features in the 10.0 version release* Read six mini-books on hot coding topics like object-oriented programming, Visual Studio, and Windows 10 development* Enhance your employability and join the 6.5-million-strong community of C# developersYou need an easy-to-read C# guide that will help you understand the incoming updates, and this For Dummies reference is it.

Sklep: Libristo.pl

Shell Scripting - Expert Recipes for Linux, Bash, and More - 2827072520

197,47 zł

Shell Scripting - Expert Recipes for Linux, Bash, and More John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Tried-and-true recipes that can be immediately applied or easily adjusted to meet your needs§The shell is the primary way of communicating with Unix and Linux systems, providing a direct way to program by automating simple to intermediate tasks. In this invaluable resource, Unix, Linux, and shell scripting expert Steve Parker shares a collection of shell scripting recipes that can be used as provided or easily modified for a variety of environments and situations. The book begins with coverage of theory and principles, replete with insightful examples of each element discussed. You then move on to an in-depth discussion of shell programming, covering all Unix flavors but with a focus on Linux and the Bash shell. All the while, you explore credible, real-world recipes and the tools necessary to get started immediately.§Shell Scripting:§Shares a compendium of helpful shell scripting recipes that can be used to address a variety of real-world challenges§Includes recipes using file and text control as well as general systems administration tasks§Provides a host of plug-and-play recipes ready for you to immediately apply and easily modify§Examines variables, if/then conditionals, loops, functions, pipes, redirects, and more§wrox.com§Programmer Forums§Join our Programmer to Programmer forums to ask and answer programming questions about this book, join discussions on the hottest topics in the industry, and connect with fellow programmers from around the world.§Code Downloads§Take advantage of free code samples from this book, as well as code samples from hundreds of other books, all ready to use.§Read More§Find articles, ebooks, sample chapters, and tables of contents for hundreds of books, and more reference resources on programming topics that matter to you.

Sklep: Libristo.pl

MIDAS Technical Analysis - A VWAP Approach to Trading and Investing in Today's Markets - 2878436059

304,80 zł

MIDAS Technical Analysis - A VWAP Approach to Trading and Investing in Today's Markets Bloomberg Press

Książki / Literatura obcojęzyczna

"If you are already familiar with MIDAS and interested in rediscovering the powerful trading method developed by the late Paul Levine, then this will become your book of reference. The authors walk you through the wonderful MIDAS world and explain its variations with copious charts and examples. If you are new to the MIDAS method, I recommend first reading the introductory chapters, then jumping to the very practical, money-making Chapter 8, then applying the principles yourself (computer code is provided in the appendices). Armed with 'hands-on' knowledge, you will then access the wealth of information that this book provides in helping you correctly read the markets."-- Pascal Willain, independent trader and inventor of volume-based indicators, author of Value in Time"As the first person to ever write about the Commitments of Traders Report way back in 1973, I have seen the data abused and usually greatly misunderstood. Most people writing on the subject just don't understand it and you will be misled. Chapter 12 in this book sets the record straight. I am delighted to give a 100% endorsement, the truth of the COT report is here, simply stated and easy to understand. Don't put this book down. Take it to the checkout and buy it."-- Larry Williams, private trader, author"Coles and Hawkins have masterfully combined the 'art and science of Technical Analysis' into a well-illustrated and comprehensive tome encompassing the MIDAS method. They have captured the essence of Paul Levine's MIDAS Technical Analysis method and then further expanded it into a new dimension. This book will give any trader the unconventional alternative edge they need to take advantage of the stock market and exploit profits."--StockShare Publishing LLC"The authors pick up where Levine left off, boldly and competently tackling both the theoretical aspects of Levine's MIDAS method, as well as providing concrete practical trading applications. There were some delightful diversions as well, including a superb overview of how to mechanically apply the statistics in the CFTC Commitments of Traders report. It is a privilege to be sourced on some of the pages, as this book has earned its reference status."-- Bob English, Austrian Economist, Market Technician, and Trader"The MIDAS curves can be used in any markets over any timeframe. They are flexible, robust, and powerful. Andrew Coles' and David Hawkins' work on the MIDAS curves is pure gold."-- Jayanthi Gopalakrishnan, Editor,Technical Analysis of STOCKS & COMMODITIES magazine"In this extremely well-developed book, Hawkins and Coles have drawn together a number of ideas, their own and existing methods, in order to construct a concise and disciplined method of analysis and trading. I am particularly delighted to see the recognition of volume as a powerful and often neglected tool. This integration of methods should serve as a profitable tool for those who are willing to do the work to understand why markets move. A well-thought-out technical treatise that belongs in the library of any inquiring technician."-- Richard W. Arms, author, advisor to institutions, and developer of many tools such as The Arms Index and Equivolume charting"I started using MIDAS from the time Paul Levine began publishing his articles in instalments. In the intervening years, I have made MIDAS my own. And I did think it was unlikely that Coles' and Hawkins' book would bring fresh insights. Boy was I wrong! This is an amazing book. Most books tend to be practical to the exclusion of the theory - theory that is so necessary if we are to adjust a tool when it 'stops working;' or tend to be so theoretical as to be impractical. MIDAS Technical Analysis straddles both worlds with ease. As a result, the book is both a reference work and a practical 'to do' volume. What I like most about Coles and Hawkins is they have taken Levine's original idea and conquered new realms with it: they have incorporated MIDAS with other technical tools so that the work should appeal to traders of many and varied disciplines. In my view, this is a must-have book and it shall certainly occupy a space in my shelves."-- Ray Barros, CEO, BarroMetrics Investments Inc

Sklep: Libristo.pl

XSLT For Dummies - 2878175616

139,88 zł

XSLT For Dummies John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Restructuring information in an XML document so that it works in other formats used to be a time - consuming ordeal involving lots of blood, sweat, and tears. Now XSLT (Extensible Stylesheet Language Transformations) makes the process nearly instantaneous. Just provide an example of the kind of information you'd like to see, and XSLT does the rest. With XSLT you can effortlessly transform XML documents into virtually any kind of output, including other XML documents and HTML pages. But mastering XSLT can be tricky, especially if you've never worked with XML or HTML; and most books on the subject are written for people who have. Here comes "XSLT For Dummies" to the rescue! "XSLT For Dummies" is your ticket to quickly mastering XSLT no matter what your prior programming experience. Writing in easygoing, plain English, XML pro Richard Wagner provides expert advice, step-by-step guidance, and tons of crystal-clear examples to help you harness the power of XSLT to transform documents.In no time you'll: understand how XSLT works with XSL and XPath; experiment with templates, stylesheets, and expressions; perform HTML transformations; master XPath data types and functions; combine XSLT stylesheets; and explore cool XSLT programming tricks. "XSLT For Dummies" works from the ground up, starting with a practical introduction of the "X-Team" XML, XSL, XSLT, and X-Path and instructions on how to write a XSLT stylesheet. From there it quickly moves onward and upward through the whole range of important XSLT topics, including: transforming with stylesheets, understanding and using template rules, using XPath to locate nodes in XML documents, combining XSLT stylesheets and adding processing instructions, and debugging XSLT transformations. Ten XSLT processors are available online. It doesn't matter whether you're a babe in the woods who can't tell a "tag" from an element, or you're an old pro at creating XML documents, "XSLT For Dummies" offers you a fun, easy way to explore and take full advantage of Extensible Stylesheet Language Transformations.

Sklep: Libristo.pl

Elements of Journalism, Revised and Updated 4th Edition - 2875338723

77,37 zł

Elements of Journalism, Revised and Updated 4th Edition CROWN PUB INC

Książki / Literatura obcojęzyczna

A timely new edition of the classic journalism text, now featuring updated material on the importance of reporting in the age of media mistrust and fake news and how journalists can use technology to navigate its challengesMore than two decades ago, the Committee of Concerned Journalists gathered some of America s most influential newspeople and asked them, What is journalism for? Through exhaustive research, surveys, interviews, and public forums, the committee identified the essential elements that define journalism and its role in our society. The result is one of the most important books on media ever written winner of the Goldsmith Book Prize from Harvard, a Society of Professional Journalists Award, and the Bart Richards Award for Media Criticism from Penn State University.Updated with new material covering the ways journalists can leverage technology to their advantage, especially given the shifting revenue architecture of news and with the future of news, facts, and democracy never more in question this fourth edition of The Elements of Journalism is the authoritative guide for journalists, students, and anyone hoping to stay informed in contentious times.

Sklep: Libristo.pl

Building Websites All-in-One For Dummies 3e - 2866658502

126,51 zł

Building Websites All-in-One For Dummies 3e John Wiley & Sons Inc

Książki / Literatura obcojęzyczna

Get started planning, designing, building, and launching the most amazing websites§Ready to create your own website, but you're all tangled up in technical jargon? From the initial planning phases to testing and publishing your masterpiece, this resource will show you how with easy-to-follow steps. You'll be surprised at how quickly you'll create interactive pages, design for mobile platforms, integrate social media, and much more.§Start building - take advantage of HTML5's radically new approach to structuring content as you create web pages§Say it with style - discover how to format text and images as well as apply emerging CSS3 tools to create impressive effects§Make it stand out - learn how to integrate multimedia content into your designs, such as full-motion video or cool slideshows§Bring it to life - add animation and interactivity to your site by writing simple scripts, using online libraries, or generating JavaScript with Dreamweaver CS6§Fill this out - collect feedback or build your e-newsletter subscription list by implementing forms that validate the data before submission§Visitors welcome - explore the methods you can use to promote your site and ensure that it's found by the search engines§Open the book and find:§Plans to get started with your website project§Advice for assembling and managing a web team§How to create layouts, graphics, navigation, and web pages§HTML, HTML 5, CSS, and CSS3 tutorials§Steps for embedding streaming data§Ways to integrate e-commerce into your site§Tips for using JavaScript for animation and interactivity§PHP resources for server-side coding§10 books in 1§Getting Ready§Designing the Site§Building Pages with HTML§Designing Pages with CSS§Incorporating Web Graphics and Multimedia§Creating Interactive Pages with JavaScript(r)§Managing Forms with PHP§Social Media and Interactive Add-Ons§Deploying and Managing the Site§Case Studies

Sklep: Libristo.pl

Bodybuilder's Nutrition Book - 2826692460

91,94 zł

Bodybuilder's Nutrition Book Contemporary Books Inc

Książki / Literatura obcojęzyczna

Dr. Franco Columbo, a well-known expert on nutrition and kinesiology (and two-time Mr. Olympia) presents the most successful strategies and diet plans for achieving a superior physique. How the body utilizes the basic nutrients and how to use that to your advantage is explained in detail.

Sklep: Libristo.pl

szukaj w Kangoo libristo advantage books inc

Sklepy zlokalizowane w miastach: Warszawa, Kraków, Łódź, Wrocław, Poznań, Gdańsk, Szczecin, Bydgoszcz, Lublin, Katowice

Szukaj w sklepach lub całym serwisie

1. Sklepy z libristo pl advantage books inc

2. Szukaj na wszystkich stronach serwisu

t1=0.028, t2=0, t3=0, t4=0, t=0.028

Dla sprzedawców

copyright © 2005-2024 Sklepy24.pl  |  made by Internet Software House DOTCOM RIVER