Search for the Star

Search for the Star
Author: Mary Stanton
Publisher: Apple
Total Pages: 114
Release: 1999
Genre: Juvenile Fiction
ISBN: 9780439120470

The celestial unicorns are in great danger. The Evil Shifter has stolen the jewel from the dragon's lair on Blue Mountain, and it's up to Princess Arianna and her unicorn, Sunchaser, to rescue the magical jewel and save the rainbow herd.

TIME The Search for Life in Our Universe

TIME The Search for Life in Our Universe
Author: Editors of TIME
Publisher: Time Inc. Books
Total Pages: 130
Release: 2016-03-01
Genre: Science
ISBN: 1618932349

If we are to believe what we see in movies and on television, the universe is populated with other worlds and civilizations that rival our own. But how true is that? Are we alone in the universe? How wide is the universe’s scope? We’ll delve into the latest science and research on whether we’re truly alone.

Some of what you’ll discover:

  • A historical overview of space discovery
  • Our visions of the universe played out through books, TV and the movies
  • The latest research on other universes and galaxies and what they might hold

Relevant Search

Relevant Search
Author: John Berryman
Publisher: Simon and Schuster
Total Pages: 517
Release: 2016-06-19
Genre: Computers
ISBN: 1638353611

Summary Relevant Search demystifies relevance work. Using Elasticsearch, it teaches you how to return engaging search results to your users, helping you understand and leverage the internals of Lucene-based search engines. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the Technology Users are accustomed to and expect instant, relevant search results. To achieve this, you must master the search engine. Yet for many developers, relevance ranking is mysterious or confusing. About the Book Relevant Search demystifies the subject and shows you that a search engine is a programmable relevance framework. You'll learn how to apply Elasticsearch or Solr to your business's unique ranking problems. The book demonstrates how to program relevance and how to incorporate secondary data sources, taxonomies, text analytics, and personalization. In practice, a relevance framework requires softer skills as well, such as collaborating with stakeholders to discover the right relevance requirements for your business. By the end, you'll be able to achieve a virtuous cycle of provable, measurable relevance improvements over a search product's lifetime. What's Inside Techniques for debugging relevance? Applying search engine features to real problems? Using the user interface to guide searchers? A systematic approach to relevance? A business culture focused on improving search About the Reader For developers trying to build smarter search with Elasticsearch or Solr. About the Authors Doug Turnbull is lead relevance consultant at OpenSource Connections, where he frequently speaks and blogs. John Berryman is a data engineer at Eventbrite, where he specializes in recommendations and search. Foreword author, Trey Grainger, is a director of engineering at CareerBuilder and author of Solr in Action. Table of Contents The search relevance problem Search under the hood Debugging your first relevance problem Taming tokens Basic multifield search Term-centric search Shaping the relevance function Providing relevance feedback Designing a relevance-focused search application The relevance-centered enterprise Semantic and personalized search

Annals

Annals
Author: Harvard College Observatory
Publisher:
Total Pages: 318
Release: 1907
Genre: Astronomy
ISBN:

List of quarto publications, exclusive of the Annals , made by the officers of the observatory from 1877 to 1896, with references to the work of the Blue Hill observatory from 1885 to 1895: v. 30, p. 3-8.

Computerworld

Computerworld
Author:
Publisher:
Total Pages: 128
Release: 1995-04-10
Genre:
ISBN:

For more than 40 years, Computerworld has been the leading source of technology news and information for IT influencers worldwide. Computerworld's award-winning Web site (Computerworld.com), twice-monthly publication, focused conference series and custom research form the hub of the world's largest global IT media network.

Real People and the Rise of Reality Television

Real People and the Rise of Reality Television
Author: Michael McKenna
Publisher: Rowman & Littlefield
Total Pages: 275
Release: 2015-06-25
Genre: Performing Arts
ISBN: 1442250542

The origins of, and in many ways the prototype for, modern reality programming can be traced to Real People, a show that premiered on the NBC network in April of 1979. An instant ratings success, Real People appealed to an audience that clamored for stories about “everyday” men and women. However, many of the vignettes focused on individuals who were far from average—eccentric collectors, allegedly talented performers, and inspirational overachievers—many of whom could be called quirky, if not just plain weird. In the wake of the show’s success, a rash of imitators followed. What had started out as a counter-programming gamble became the norm, and now the television airwaves are littered with reality shows. In Real People and the Rise of Reality Television, Michael McKenna looks at the show that started a trend in television viewing, one that now permeates not only the major networks but almost all of cable channels as well. McKenna traces the history of reality programming back to the early days of television up to the late 1970s when networks were beginning to take a chance on non-scripted prime time shows. The author provides an in-depth look at how Real People evolved from profiles of peculiar characters to an almost weekly display of hyper-patriotism, largely fueled by a desperate desire to recover from the disappointments of the 1970s. McKenna also charts the rise of shows that aimed to duplicate Real People’s success: That’s Incredible!, The People’s Court, COPS, America’s Funniest Home Videos, and MTV’s The Real World. Though Real People was cancelled in 1984, reality-themed programming flourished and this look at the show’s history makes for a fascinating read. Fans of nonfiction programs owe a debt to the show that started it all, and Real People and the Rise of Reality Television provides readers with insights into how and why one show changed the cultural landscape forever.

Beginning Regular Expressions

Beginning Regular Expressions
Author: Andrew Watt
Publisher: John Wiley & Sons
Total Pages: 770
Release: 2005-02-08
Genre: Computers
ISBN: 0764595741

This book introduces the various parts of the construction of a regular expression pattern, explains what they mean, and walks you through working examples showing how they work and why they do what they do. By working through the examples, you will build your understanding of how to make regular expressions do what you want them to do and avoid creating regular expressions that don’t meet your intentions. Beginning chapters introduce regular expressions and show you a method you can use to break down a text manipulation problem into component parts so that you can make an intelligent choice about constructing a regular expression pattern that matches what you want it to match and avoids matching unwanted text. To solve more complex problems, you should set out a problem definition and progressively refine it to express it in English in a way that corresponds to a regular expression pattern that does what you want it to do. The second part of the book devotes a chapter to each of several technologies available on the Windows platform. You are shown how to use each tool or language with regular expressions (for example, how to do a lookahead in Perl or create a named variable in C#). Regular expressions can be useful in applications such as Microsoft Word, OpenOffice.org Writer, Microsoft Excel, and Microsoft Access. A chapter is devoted to each. In addition, tools such as the little-known Windows findstr utility and the commercial PowerGrep tool each have a chapter showing how they can be used to solve text manipulation tasks that span multiple files. The use of regular expressions in the MySQL and Microsoft SQL Server databases are also demonstrated. Several programming languages have a chapter describing the metacharacters available for use in those languages together with demonstrations of how the objects or classes of that language can be used with regular expressions. The languages covered are VBScript, Javascript, Visual Basic .NET, C#, PHP, Java, and Perl. XML is used increasingly to store textual data. The W3C XML Schema definition language can use regular expressions to automatically validate data in an XML document. W3C XML Schema has a chapter demonstrating how regular expressions can be used with the xs:pattern element. Chapters 1 through 10 describe the component parts of regular expression patterns and show you what they do and how they can be used with a variety of text manipulation tools and languages. You should work through these chapters in order and build up your understanding of regular expressions. The book then devotes a chapter to each of several text manipulation tools and programming languages. These chapters assume knowledge from Chapters 1 through 10, but you can dip into the tool-specific and language-specific chapters in any order you want.