The Oxford Dictionary of Family Names in Britain and Ireland


Book Description

Containing entries for more than 45,000 English, Scottish, Welsh, Irish, Cornish, and immigrant surnames, The Oxford Dictionary of Family Names in Britain and Ireland is the ultimate reference work on family names of the UK. The Dictionary includes every surname that currently has more than 100 bearers. Each entry contains lists of variant spellings of the name, an explanation of its origins (including the etymology), lists of early bearers showing evidence for formation and continuity from the date of formation down to the 19th century, geographical distribution, and, where relevant, genealogical and bibliographical notes, making this a fully comprehensive work on family names. This authoritative guide also includes an introductory essay explaining the historical background, formation, and typology of surnames and a guide to surnames research and family history research. Additional material also includes a list of published and unpublished lists of surnames from the Middle Ages to the present day.




National Death Index


Book Description




Indexing for Editors and Authors


Book Description

At lastan indexing guide for editors, authors, and designers who need to create, edit, format, or evaluate indexes and work with professional indexers. Three experienced indexer-authors explain the various types of indexes, the characteristics of good indexes, and common formatting considerations. They share dozens of practical tips and over 100 examples of good and bad indexing practices. Publishing professionals will not only learn how to edit an index, but how to hire freelance indexers and maintain successful editor/author/indexer relationships. While geared to the needs of publishing professionals who are not indexers, the book will serve indexers as a guide to navigating the publishing process and explaining indexing processes to their clients.




Basics of Genealogy Reference


Book Description

This book offers novice and experienced reference librarians an introduction to tried-and-true genealogy techniques and resources. With the help of four case studies, Simpson outlines a basic starting strategy for conducting genealogy research. Later chapters deal specifically with genealogical librarianship: how to conduct a reference interview, continuing and professional development, and basic resources every collection should have. Charts, screen shots, and examples of public documents are also included; while a series of appendices present the case studies in their entirety. Genealogy is one of the most popular hobbies in the United States, and is heavily researched in public libraries and historical repositories. Increasingly, major genealogy resources are available online at libraries through subscription databases or free on the internet. As a result, librarians face the overwhelming task of helping a large audience of genealogists cope with an ever growing flood of new resources. This book offers novice and experienced reference librarians an introduction to tried-and-true genealogy techniques and resources. With the help of four case studies, Simpson outlines a basic starting strategy for conducting genealogy research. Later chapters deal specifically with genealogical librarianship: how to conduct a reference interview, continuing and professional development, and basic resources every collection should have. Charts, screen shots, and examples of public documents are also included; while a series of appendices present the case studies in their entirety.




The Surnames of Wales


Book Description




Mafia Wife


Book Description

When Lynda Lustig met Louie Milito, she was a sixteen-year-old high-school dropout with a taste for adventure and an agonizing childhood. When they were married two years later, he was not yet a made man in the powerful Gambino crime family. Louie was a hairdresser who dabbled in petty thievery. But Lynda was so happy to be out of her domineering mothers loveless house. And over the years, she was willing to forgive her husband for anything: his violent rages, his frequent absences, his shady associates, and the blood on his hands. For twentyfour years Lynda Milito remained loyal to this charming and dangerous criminal -- her childrens father and close friend of crime boss John Gotti and underboss Sammy the Bull Gravano. But in 1988, Louie Milito disappeared, murdered by the very people he had always trusted to protect him. A crime story, a family story, a love story, Mafia Wife is the shockingly intimate, brutally honest tale of a survivor -- and of the life she lived in the dark bosom of the underworld.




The Source


Book Description

Genealogists and other historical researchers have valued the first two editions of this work, often referred to as the genealogist's bible."" The new edition continues that tradition. Intended as a handbook and a guide to selecting, locating, and using appropriate primary and secondary resources, The Source also functions as an instructional tool for novice genealogists and a refresher course for experienced researchers. More than 30 experts in this field--genealogists, historians, librarians, and archivists--prepared the 20 signed chapters, which are well written, easy to read, and include many helpful hints for getting the most out of whatever information is acquired. Each chapter ends with an extensive bibliography and is further enriched by tables, black-and-white illustrations, and examples of documents. Eight appendixes include the expected contact information for groups and institutions that persons studying genealogy and history need to find. ""




Get Programming


Book Description

Get Programming: Learn to code with Python teaches you the basics of computer programming using the Python language. In this exercise-driven book, you'll be doing something on nearly every page as you work through 38 compact lessons and 7 engaging capstone projects. By exploring the crystal-clear illustrations, exercises that check your understanding as you go, and tips for what to try next, you'll start thinking like a programmer in no time. This book works perfectly alongside our video course Get Programming with Python in Motion, available exclusively at Manning.com: www.manning.com/livevideo/get-programming-with-python-in-motion Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. What's Inside Programming skills you can use in any language Learn to codeā€”no experience required Learn Python, the language for beginners Dozens of exercises and examples help you learn by doing About the Reader No prior programming experience needed. Table of Contents LEARNING HOW TO PROGRAM Lesson 1 - Why should you learn how to program? Lesson 2 - Basic principles of learning a programming language UNIT 1 - VARIABLES, TYPES, EXPRESSIONS, AND STATEMENTS Lesson 3 - Introducing Python: a programming language Lesson 4 - Variables and expressions: giving names and values to things Lesson 5 - Object types and statements of code 46 Lesson 6 - Capstone project: your first Python program-convert hours to minutes UNIT 2 - STRINGS, TUPLES, AND INTERACTING WITH THE USER Lesson 7 - Introducing string objects: sequences of characters Lesson 8 - Advanced string operations Lesson 9 - Simple error messages Lesson 10 - Tuple objects: sequences of any kind of object Lesson 11 - Interacting with the user Lesson 12 - Capstone project: name mashup UNIT 3 - MAKING DECISIONS IN YOUR PROGRAMS Lesson 13 - Introducing decisions in programs Lesson 14 - Making more-complicated decisions Lesson 15 - Capstone project: choose your own adventure UNIT 4 - REPEATING TASKS Lesson 16 - Repeating tasks with loops Lesson 17 - Customizing loops Lesson 18 - Repeating tasks while conditions hold Lesson 19 - Capstone project: Scrabble, Art Edition UNIT 5 - ORGANIZING YOUR CODE INTO REUSABLE BLOCKS Lesson 20 - Building programs to last Lesson 21 - Achieving modularity and abstraction with functions Lesson 22 - Advanced operations with functions Lesson 23 - Capstone project: analyze your friends UNIT 6 - WORKING WITH MUTABLE DATA TYPES Lesson 24 - Mutable and immutable objects Lesson 25 - Working with lists Lesson 26 - Advanced operations with lists Lesson 27 - Dictionaries as maps between objects Lesson 28 - Aliasing and copying lists and dictionaries Lesson 29 - Capstone project: document similarity UNIT 7 - MAKING YOUR OWN OBJECT TYPES BY USING OBJECT-ORIENTED PROGRAMMING Lesson 30 - Making your own object types Lesson 31 - Creating a class for an object type Lesson 32 - Working with your own object types Lesson 33 - Customizing classes Lesson 34 - Capstone project: card game UNIT 8 - USING LIBRARIES TO ENHANCE YOUR PROGRAMS Lesson 35 - Useful libraries Lesson 36 - Testing and debugging your programs Lesson 37 - A library for graphical user interfaces Lesson 38 - Capstone project: game of tag Appendix A - Answers to lesson exercises Appendix B - Python cheat sheet Appendix C - Interesting Python libraries




Programming and Problem Solving with C++


Book Description

Programming/Languages