Simply Scheme

Simply Scheme
Author: Brian Harvey
Publisher: MIT Press
Total Pages: 620
Release: 1999
Genre: Computers
ISBN: 9780262082815


Download Simply Scheme Book in PDF, Epub and Kindle

Showing off scheme - Functions - Expressions - Defining your own procedures - Words and sentences - True and false - Variables - Higher-order functions - Lambda - Introduction to recursion - The leap of faith - How recursion works - Common patterns in recursive procedures - Advanced recursion - Example : the functions program - Files - Vectors - Example : a spreadsheet program - Implementing the spreadsheet program - What's next?

Scheme and the Art of Programming

Scheme and the Art of Programming
Author: George Springer
Publisher:
Total Pages: 344
Release: 1990
Genre: Computer programming
ISBN:


Download Scheme and the Art of Programming Book in PDF, Epub and Kindle

This is the first introduction to computer programming text to focus on functional programming which is not too mathematically rigorous for freshmen. The text features an introduction to the Scheme programming language and real-world examples and exercises which are easy to follow and learn from.

Ponzi's Scheme

Ponzi's Scheme
Author: Mitchell Zuckoff
Publisher: Random House Trade Paperbacks
Total Pages: 418
Release: 2006-01-10
Genre: Biography & Autobiography
ISBN: 0812968360


Download Ponzi's Scheme Book in PDF, Epub and Kindle

It was a time when anything seemed possible–instant wealth, glittering fame, fabulous luxury–and for a run of magical weeks in the spring and summer of 1920, Charles Ponzi made it all come true. Promising to double investors’ money in three months, the dapper, charming Ponzi raised the “rob Peter to pay Paul” scam to an art form. At the peak of his success, Ponzi was raking in more than $2 million a week at his office in downtown Boston. Then his house of cards came crashing down–thanks in large part to the relentless investigative reporting of Richard Grozier’s Boston Post. A classic American tale of immigrant life and the dream of success, Ponzi’s Scheme is the amazing story of the magnetic scoundrel who launched the most successful scheme of financial alchemy in modern history.

The Geometry of Schemes

The Geometry of Schemes
Author: David Eisenbud
Publisher: Springer Science & Business Media
Total Pages: 265
Release: 2006-04-06
Genre: Mathematics
ISBN: 0387226397


Download The Geometry of Schemes Book in PDF, Epub and Kindle

Grothendieck’s beautiful theory of schemes permeates modern algebraic geometry and underlies its applications to number theory, physics, and applied mathematics. This simple account of that theory emphasizes and explains the universal geometric concepts behind the definitions. In the book, concepts are illustrated with fundamental examples, and explicit calculations show how the constructions of scheme theory are carried out in practice.

Concrete Abstractions

Concrete Abstractions
Author: Max Hailperin
Publisher: Max Hailperin
Total Pages: 686
Release: 1999
Genre: Abstract data types (Computer science).
ISBN: 0534952119


Download Concrete Abstractions Book in PDF, Epub and Kindle

CONCRETE ABSTRACTIONS offers students a hands-on, abstraction-based experience of thinking like a computer scientist. This text covers the basics of programming and data structures, and gives first-time computer science students the opportunity to not only write programs, but to prove theorems and analyze algorithms as well. Students learn a variety of programming styles, including functional programming, assembly-language programming, and object-oriented programming (OOP). While most of the book uses the Scheme programming language, Java is introduced at the end as a second example of an OOP system and to demonstrate concepts of concurrent programming.

Programming in Scheme

Programming in Scheme
Author: Michael Eisenberg
Publisher:
Total Pages: 304
Release: 1990
Genre: Scheme (Computer program language)
ISBN: 9780262050432


Download Programming in Scheme Book in PDF, Epub and Kindle

The Apologetics of Evil

The Apologetics of Evil
Author: Richard Raatzsch
Publisher: Princeton University Press
Total Pages: 136
Release: 2009-07-26
Genre: Drama
ISBN: 9780691137339


Download The Apologetics of Evil Book in PDF, Epub and Kindle

The concept of Iago -- Apologia for Iago.

Getting Things Done

Getting Things Done
Author: David Allen
Publisher: Penguin
Total Pages: 354
Release: 2015-03-17
Genre: Business & Economics
ISBN: 0698161866


Download Getting Things Done Book in PDF, Epub and Kindle

The book Lifehack calls "The Bible of business and personal productivity." "A completely revised and updated edition of the blockbuster bestseller from 'the personal productivity guru'"—Fast Company Since it was first published almost fifteen years ago, David Allen’s Getting Things Done has become one of the most influential business books of its era, and the ultimate book on personal organization. “GTD” is now shorthand for an entire way of approaching professional and personal tasks, and has spawned an entire culture of websites, organizational tools, seminars, and offshoots. Allen has rewritten the book from start to finish, tweaking his classic text with important perspectives on the new workplace, and adding material that will make the book fresh and relevant for years to come. This new edition of Getting Things Done will be welcomed not only by its hundreds of thousands of existing fans but also by a whole new generation eager to adopt its proven principles.

Strong Towns

Strong Towns
Author: Charles L. Marohn, Jr.
Publisher: John Wiley & Sons
Total Pages: 262
Release: 2019-10-01
Genre: Business & Economics
ISBN: 1119564816


Download Strong Towns Book in PDF, Epub and Kindle

A new way forward for sustainable quality of life in cities of all sizes Strong Towns: A Bottom-Up Revolution to Build American Prosperity is a book of forward-thinking ideas that breaks with modern wisdom to present a new vision of urban development in the United States. Presenting the foundational ideas of the Strong Towns movement he co-founded, Charles Marohn explains why cities of all sizes continue to struggle to meet their basic needs, and reveals the new paradigm that can solve this longstanding problem. Inside, you’ll learn why inducing growth and development has been the conventional response to urban financial struggles—and why it just doesn’t work. New development and high-risk investing don’t generate enough wealth to support itself, and cities continue to struggle. Read this book to find out how cities large and small can focus on bottom-up investments to minimize risk and maximize their ability to strengthen the community financially and improve citizens’ quality of life. Develop in-depth knowledge of the underlying logic behind the “traditional” search for never-ending urban growth Learn practical solutions for ameliorating financial struggles through low-risk investment and a grassroots focus Gain insights and tools that can stop the vicious cycle of budget shortfalls and unexpected downturns Become a part of the Strong Towns revolution by shifting the focus away from top-down growth toward rebuilding American prosperity Strong Towns acknowledges that there is a problem with the American approach to growth and shows community leaders a new way forward. The Strong Towns response is a revolution in how we assemble the places we live.

Crafting Interpreters

Crafting Interpreters
Author: Robert Nystrom
Publisher: Genever Benning
Total Pages: 1021
Release: 2021-07-27
Genre: Computers
ISBN: 0990582949


Download Crafting Interpreters Book in PDF, Epub and Kindle

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.