A Language of Our Own

A Language of Our Own PDF

Author: Peter Bakker

Publisher: Oxford University Press

Published: 1997-06-05

Total Pages: 337

ISBN-13: 0195357086

DOWNLOAD EBOOK →

The Michif language -- spoken by descendants of French Canadian fur traders and Cree Indians in western Canada -- is considered an "impossible language" since it uses French for nouns and Cree for verbs, and comprises two different sets of grammatical rules. Bakker uses historical research and fieldwork data to present the first detailed analysis of this language and how it came into being.

Students' Right to Their Own Language

Students' Right to Their Own Language PDF

Author: Staci Perryman-Clark

Publisher: Macmillan Higher Education

Published: 2014-02-28

Total Pages: 528

ISBN-13: 1457689944

DOWNLOAD EBOOK →

Students’ Right to Their Own Language collects perspectives from some of the field’s most influential scholars to provide a foundation for understanding the historical and theoretical context informing the affirmation of all students’ right to exist in their own languages. Co-published with the National Council for Teachers of English, this critical sourcebook archives decades of debate about the implications of the statement and explores how it translates to practical strategies for fostering linguistic diversity in the classroom.

A Language of Our Own : The Genesis of Michif, the Mixed Cree-French Language of the Canadian Metis

A Language of Our Own : The Genesis of Michif, the Mixed Cree-French Language of the Canadian Metis PDF

Author: Peter Bakker Researcher University of Aarhus

Publisher: Oxford University Press, USA

Published: 1997-05-08

Total Pages: 341

ISBN-13: 0198025750

DOWNLOAD EBOOK →

The Michif language -- spoken by descendants of French Canadian fur traders and Cree Indians in western Canada -- is considered an "impossible language" since it uses French for nouns and Cree for verbs, and comprises two different sets of grammatical rules. Bakker uses historical research and fieldwork data to present the first detailed analysis of this language and how it came into being.

Doing Our Own Thing

Doing Our Own Thing PDF

Author: John McWhorter

Publisher: Penguin

Published: 2004-09-09

Total Pages: 413

ISBN-13: 0593330544

DOWNLOAD EBOOK →

“McWhorter is a gifted young linguist who seeks to understand the change in our verbal habits rather than just bemoan it, and his analysis is insightful, richly documented and, yes, eloquently written.”—Steven Pinker, author of The Blank Slate and The Language Instinct In Doing Our Own Thing, critically acclaimed linguist and cultural critic John McWhorter traces the precipitous decline of language in contemporary America, arguing persuasively that casual everyday speech has conquered the formal in all arenas, from oratory to poetry to everyday journalism—and has even had dire consequences for our musical culture. McWhorter argues that the swift and startling change in written and oral communication emanated from the countercultural revolution of the 1960s and its ideology that established forms and formality were autocratic and artificial. While acknowledging that the evolution of language is, in and of itself, inevitable and often benign, he warns that the near-total loss of formal expression in America is unprecedented in modern history and has reached a crisis point in our culture such that our very ability to convey ideas and arguments effectively is gravely threatened. By turns compelling and harrowing, passionate and judicious, Doing Our Own Thing is required reading for all concerned about the state of our language—and the future of intellectual life in America.

Porcelain, and

Porcelain, and PDF

Author: Chay Yew

Publisher: Grove Press

Published: 1997

Total Pages: 244

ISBN-13: 9780802135001

DOWNLOAD EBOOK →

Porcelain is an examination of a young man's crime of passion. Triply scorned - as an Asian, a homosexual, and now a murderer - nineteen-year-old John Lee has confessed to shooting his lover in a public lavatory in London. Porcelain dissects the crime through a prism of conflicting voices: newscasts, flashbacks, and John's recollections to a prison psychiatrist. A Language of Their Own is a lyrical and dramatic meditation on the nature of desire and sexuality as four men - three Asian and one white - come together and drift apart in a series of interconnecting stories.

Our Own Language

Our Own Language PDF

Author: Gabrielle Maguire

Publisher: Multilingual Matters

Published: 1991

Total Pages: 272

ISBN-13: 9781853590962

DOWNLOAD EBOOK →

This book considers the growth of the Irish language in Belfast today. The reader is invited to take a close look at a unique vibrant speech community in Belfast. During the 1960's its members took a courageous step, when they determined to create an environment wherin they could raise their children as Irish speakers. The success of the initiative is most clearly evidenced by steady diffusion of bilingualism throughout surrounding neighbourhoods.

Prophetic Translation

Prophetic Translation PDF

Author: Maya Kesrouany

Publisher: Edinburgh University Press

Published: 2017-09-08

Total Pages: 384

ISBN-13: 1474407420

DOWNLOAD EBOOK →

Collection of newly-commissioned essays tracing cutting-edge developments in children's literature research

Crafting Interpreters

Crafting Interpreters PDF

Author: Robert Nystrom

Publisher: Genever Benning

Published: 2021-07-27

Total Pages: 1021

ISBN-13: 0990582949

DOWNLOAD EBOOK →

Despite using them every day, most software engineers know little about how programming languages are designed and implemented. For many, their only experience with that corner of computer science was a terrifying "compilers" class that they suffered through in undergrad and tried to blot from their memory as soon as they had scribbled their last NFA to DFA conversion on the final exam. That fearsome reputation belies a field that is rich with useful techniques and not so difficult as some of its practitioners might have you believe. A better understanding of how programming languages are built will make you a stronger software engineer and teach you concepts and data structures you'll use the rest of your coding days. You might even have fun. This book teaches you everything you need to know to implement a full-featured, efficient scripting language. You'll learn both high-level concepts around parsing and semantics and gritty details like bytecode representation and garbage collection. Your brain will light up with new ideas, and your hands will get dirty and calloused. Starting from main(), you will build a language that features rich syntax, dynamic typing, garbage collection, lexical scope, first-class functions, closures, classes, and inheritance. All packed into a few thousand lines of clean, fast code that you thoroughly understand because you wrote each one yourself.

Build Your Own Programming Language

Build Your Own Programming Language PDF

Author: Clinton L. Jeffery

Publisher: Packt Publishing Ltd

Published: 2021-12-31

Total Pages: 495

ISBN-13: 1800200331

DOWNLOAD EBOOK →

Written by the creator of the Unicon programming language, this book will show you how to implement programming languages to reduce the time and cost of creating applications for new or specialized areas of computing Key Features Reduce development time and solve pain points in your application domain by building a custom programming language Learn how to create parsers, code generators, file readers, analyzers, and interpreters Create an alternative to frameworks and libraries to solve domain-specific problems Book Description The need for different types of computer languages is growing rapidly and developers prefer creating domain-specific languages for solving specific application domain problems. Building your own programming language has its advantages. It can be your antidote to the ever-increasing size and complexity of software. In this book, you'll start with implementing the frontend of a compiler for your language, including a lexical analyzer and parser. The book covers a series of traversals of syntax trees, culminating with code generation for a bytecode virtual machine. Moving ahead, you'll learn how domain-specific language features are often best represented by operators and functions that are built into the language, rather than library functions. We'll conclude with how to implement garbage collection, including reference counting and mark-and-sweep garbage collection. Throughout the book, Dr. Jeffery weaves in his experience of building the Unicon programming language to give better context to the concepts where relevant examples are provided in both Unicon and Java so that you can follow the code of your choice of either a very high-level language with advanced features, or a mainstream language. By the end of this book, you'll be able to build and deploy your own domain-specific languages, capable of compiling and running programs. What you will learn Perform requirements analysis for the new language and design language syntax and semantics Write lexical and context-free grammar rules for common expressions and control structures Develop a scanner that reads source code and generate a parser that checks syntax Build key data structures in a compiler and use your compiler to build a syntax-coloring code editor Implement a bytecode interpreter and run bytecode generated by your compiler Write tree traversals that insert information into the syntax tree Implement garbage collection in your language Who this book is for This book is for software developers interested in the idea of inventing their own language or developing a domain-specific language. Computer science students taking compiler construction courses will also find this book highly useful as a practical guide to language implementation to supplement more theoretical textbooks. Intermediate-level knowledge and experience working with a high-level language such as Java or the C++ language are expected to help you get the most out of this book.