Book picks similar to
Learn Python Programming by Fabrizio Romano
archived
china
learning
readarr
Shantung Compound
Langdon Gilkey - 1975
This vivid diary of life in a Japanese internment camp during World War II examines the moral challenges encountered in conditions of confinement and deprivation.
The Humble Administrator's Garden
Vikram Seth - 1985
The poet Donald Davie writes: 'Vikram Seth's poems should have an impact far beyond much noisier pieces; for when did we last see a volume in which the poet's eye is on what is objectively before him, rather than on the intricacies of his own sensibility?'
The Passionate Programmer
Chad Fowler - 2009
In this book, you'll learn how to become an entrepreneur, driving your career in the direction of your choosing. You'll learn how to build your software development career step by step, following the same path that you would follow if you were building, marketing, and selling a product. After all, your skills themselves are a product. The choices you make about which technologies to focus on and which business domains to master have at least as much impact on your success as your technical knowledge itself--don't let those choices be accidental. We'll walk through all aspects of the decision-making process, so you can ensure that you're investing your time and energy in the right areas. You'll develop a structured plan for keeping your mind engaged and your skills fresh. You'll learn how to assess your skills in terms of where they fit on the value chain, driving you away from commodity skills and toward those that are in high demand. Through a mix of high-level, thought-provoking essays and tactical "Act on It" sections, you will come away with concrete plans you can put into action immediately. You'll also get a chance to read the perspectives of several highly successful members of our industry from a variety of career paths. As with any product or service, if nobody knows what you're selling, nobody will buy. We'll walk through the often-neglected world of marketing, and you'll create a plan to market yourself both inside your company and to the industry in general. Above all, you'll see how you can set the direction of your career, leading to a more fulfilling and remarkable professional life.
The Lucky Ones: One Family and the Extraordinary Invention of Chinese America
Mae M. Ngai - 2010
Until now, that hasn’t been the case for Chinese Americans. From noted historian Mae Ngai, The Lucky Ones uncovers the three-generational saga of the Tape family. It’s a sweeping story centered on patriarch Jeu Dip’s (Joseph Tape’s) self-invention as an immigration broker in post–gold rush, racially explosive San Francisco, and the extraordinary rise it enables. Ngai’s portrayal of the Tapes as the first of a brand-new social type—middle-class Chinese Americans, with touring cars, hunting dogs, and society weddings to broadcast it—will astonish. Again and again, Tape family history illuminates American history. Seven-year-old Mamie Tape attempts to integrate California schools, resulting in the landmark 1885 Tape v. Hurley. The family’s intimate involvement in the 1904 St. Louis World’s Fair reveals how the Chinese American culture brokers essentially invented Chinatown—and so Chinese culture—for American audiences. Finally, Mae Ngai reveals aspects—timely, haunting, and hopeful—of the lasting legacy of the immigrant experience for all Americans.
The Mythical Man-Month: Essays on Software Engineering
Frederick P. Brooks Jr. - 1975
With a blend of software engineering facts and thought-provoking opinions, Fred Brooks offers insight for anyone managing complex projects. These essays draw from his experience as project manager for the IBM System/360 computer family and then for OS/360, its massive software system. Now, 45 years after the initial publication of his book, Brooks has revisited his original ideas and added new thoughts and advice, both for readers already familiar with his work and for readers discovering it for the first time.The added chapters contain (1) a crisp condensation of all the propositions asserted in the original book, including Brooks' central argument in The Mythical Man-Month: that large programming projects suffer management problems different from small ones due to the division of labor; that the conceptual integrity of the product is therefore critical; and that it is difficult but possible to achieve this unity; (2) Brooks' view of these propositions a generation later; (3) a reprint of his classic 1986 paper "No Silver Bullet"; and (4) today's thoughts on the 1986 assertion, "There will be no silver bullet within ten years."
Java Concurrency in Practice
Brian Goetz - 2005
Now this same team provides the best explanation yet of these new features, and of concurrency in general. Concurrency is no longer a subject for advanced users only. Every Java developer should read this book."--Martin BuchholzJDK Concurrency Czar, Sun Microsystems"For the past 30 years, computer performance has been driven by Moore's Law; from now on, it will be driven by Amdahl's Law. Writing code that effectively exploits multiple processors can be very challenging. Java Concurrency in Practice provides you with the concepts and techniques needed to write safe and scalable Java programs for today's--and tomorrow's--systems."--Doron RajwanResearch Scientist, Intel Corp"This is the book you need if you're writing--or designing, or debugging, or maintaining, or contemplating--multithreaded Java programs. If you've ever had to synchronize a method and you weren't sure why, you owe it to yourself and your users to read this book, cover to cover."--Ted NewardAuthor of Effective Enterprise Java"Brian addresses the fundamental issues and complexities of concurrency with uncommon clarity. This book is a must-read for anyone who uses threads and cares about performance."--Kirk PepperdineCTO, JavaPerformanceTuning.com"This book covers a very deep and subtle topic in a very clear and concise way, making it the perfect Java Concurrency reference manual. Each page is filled with the problems (and solutions!) that programmers struggle with every day. Effectively exploiting concurrency is becoming more and more important now that Moore's Law is delivering more cores but not faster cores, and this book will show you how to do it."--Dr. Cliff ClickSenior Software Engineer, Azul Systems"I have a strong interest in concurrency, and have probably written more thread deadlocks and made more synchronization mistakes than most programmers. Brian's book is the most readable on the topic of threading and concurrency in Java, and deals with this difficult subject with a wonderful hands-on approach. This is a book I am recommending to all my readers of The Java Specialists' Newsletter, because it is interesting, useful, and relevant to the problems facing Java developers today."--Dr. Heinz KabutzThe Java Specialists' Newsletter"I've focused a career on simplifying simple problems, but this book ambitiously and effectively works to simplify a complex but critical subject: concurrency. Java Concurrency in Practice is revolutionary in its approach, smooth and easy in style, and timely in its delivery--it's destined to be a very important book."--Bruce TateAuthor of Beyond Java" Java Concurrency in Practice is an invaluable compilation of threading know-how for Java developers. I found reading this book intellectually exciting, in part because it is an excellent introduction to Java's concurrency API, but mostly because it captures in a thorough and accessible way expert knowledge on threading not easily found elsewhere."--Bill VennersAuthor of Inside the Java Virtual MachineThreads are a fundamental part of the Java platform. As multicore processors become the norm, using concurrency effectively becomes essential for building high-performance applications. Java SE 5 and 6 are a huge step forward for the development of concurrent applications, with improvements to the Java Virtual Machine to support high-performance, highly scalable concurrent classes and a rich set of new concurrency building blocks. In Java Concurrency in Practice , the creators of these new facilities explain not only how they work and how to use them, but also the motivation and design patterns behind them.However, developing, testing, and debugging multithreaded programs can still be very difficult; it is all too easy to create concurrent programs that appear to work, but fail when it matters most: in production, under heavy load. Java Concurrency in Practice arms readers with both the theoretical underpinnings and concrete techniques for building reliable, scalable, maintainable concurrent applications. Rather than simply offering an inventory of concurrency APIs and mechanisms, it provides design rules, patterns, and mental models that make it easier to build concurrent programs that are both correct and performant.This book covers:Basic concepts of concurrency and thread safety Techniques for building and composing thread-safe classes Using the concurrency building blocks in java.util.concurrent Performance optimization dos and don'ts Testing concurrent programs Advanced topics such as atomic variables, nonblocking algorithms, and the Java Memory Model
Forbidden Nation: A History of Taiwan
Jonathan Manthorpe - 2005
At the heart of Taiwan's story is the curse of geography that placed the island on the strategic cusp between the Far East and Southeast Asia and made it the guardian of some of the world's most lucrative trade routes. It is the story of the dogged determination of a courageous people to overcome every obstacle thrown in their path. Forbidden Nation tells the dramatic story of the island, its people, and what brought them to this moment when their future will be decided.
The Geography of Thought: How Asians and Westerners Think Differently... and Why
Richard E. Nisbett - 2003
As a result, East Asian thought is “holistic”—drawn to the perceptual field as a whole and to relations among objects and events within that field. By contrast, Westerners focus on salient objects or people, use attributes to assign them to categories, and apply rules of formal logic to understand their behavior. From feng shui to metaphysics, from comparative linguistics to economic history, a gulf separates the children of Aristotle from the descendants of Confucius. At a moment in history when the need for cross-cultural understanding and collaboration have never been more important, The Geography of Thought offers both a map to that gulf and a blueprint for a bridge that will span it.
The Joy of Clojure
Michael Fogus - 2010
It combines the nice features of a scripting language with the powerful features of a production environment—features like persistent data structures and clean multithreading that you'll need for industrial-strength application development.The Joy of Clojure goes beyond just syntax to show you how to write fluent and idiomatic Clojure code. You'll learn a functional approach to programming and will master Lisp techniques that make Clojure so elegant and efficient. The book gives you easy access to hard soft ware areas like concurrency, interoperability, and performance. And it shows you how great it can be to think about problems the Clojure way. Purchase of the print book comes with an offer of a free PDF, ePub, and Kindle eBook from Manning. Also available is all code from the book. What's InsideThe what and why of ClojureHow to work with macrosHow to do elegant application designFunctional programming idiomsWritten for programmers coming to Clojure from another programming background—no prior experience with Clojure or Lisp is required.
The Critical Mind: Make Better Decisions, Improve Your Judgment, and Think a Step Ahead of Others
Zoe McKey - 2017
Spot inconsistencies and lies, and apply logic to your daily life. If you want to become a critical, effective, and rational thinker instead of an irrational and snap-judging one, this book is for you. Critical thinking skills strengthen your decision making muscle, speed up your analysis and judgment, and help you spot errors easily. The Critical Mind offers a thorough introduction to the rules and principles of critical thinking. You will find widely usable and situation-specific advice on how to critically approach your daily life, business, friendships, opinions, and even social media. Critical thinking not only saves you time but saves you money and helps you prevent misunderstanding and disappointment. • Learn the main elements of critical thinking. • The theories and practices of the best critical thinkers of the world. • Tips to keep your brain in good shape and receptive to analysis. • Solve your problems with critical thinking. • Become a quicker and better decision maker. Cut out the inefficiencies of your life. The Critical Mind is a guideline for everyone who wishes to learn the basics of critical thinking. If you work in business, education, healthcare, or you study, you’ll find the book equally useful. The book takes a deep look at the framework of geniuses like Richard Paul and Linda Elder to give you a well-established foundation on effective thought. • Become a more effective communicator having relevant argument points. • How to apply critical thinking in a group. • Guiding questions that help you think more critically. • Four types of critical thinking exercise to deepen your knowledge each day. The Critical Mind gives you the best theories and practices to become a more successful and better thinker. Know that the people whom you admire for their mind aren’t aliens, they just use their minds differently. In this book, I unveil how and what they do differently. Delete this. Too repetitive. Put something about the author Discover hidden opportunities, gain a solution-oriented mindset, solve difficult tasks, and understand the world more deeply. Critical thinking will enhance your creativity, logic, intelligence, and helps you navigate through everyday life matters more easily. Think faster, argue better, and succeed consistently.
Working Effectively with Unit Tests
Jay Fields - 2014
Unfortunately, developers are creating mountains of unmaintainable tests as a side effect. I've been fighting the maintenance battle pretty aggressively for years, and this book captures the what I believe is the most effective way to test.This book details my strong opinions on the best way to test, while acknowledging alternative styles and various contexts in which tests are written. Whether you prefer my style or not, this book will help you write better Unit and Functional Tests.
Exercise For The Brain: 70 Neurobic Exercises To Increase Mental Fitness & Prevent Memory Loss: How Non Routine Actions And Thoughts Improve Mental Health
Jason Scotts - 2013
As more and more persons seek better ways to retain and improve their memory this text is well timed. It gives the reader the solutions that they need to get started on the path to having a fantastic memory. Of course in quite a number of instances the memory loss cannot be helped as it may be hereditary but it can be slowed down with the use of these exercises. Just as the body needs physical exercises in order to function correctly, the brain needs to be exercised as well to prevent it from becoming sluggish.
Effective Java
Joshua Bloch - 2001
The principal enhancement in Java 8 was the addition of functional programming constructs to Java's object-oriented roots. Java 7, 8, and 9 also introduced language features, such as the try-with-resources statement, the diamond operator for generic types, default and static methods in interfaces, the @SafeVarargs annotation, and modules. New library features include pervasive use of functional interfaces and streams, the java.time package for manipulating dates and times, and numerous minor enhancements such as convenience factory methods for collections. In this new edition of Effective Java, Bloch updates the work to take advantage of these new language and library features, and provides specific best practices for their use. Java's increased support for multiple paradigms increases the need for best-practices advice, and this book delivers. As in previous editions, each chapter consists of several "items," each presented in the form of a short, standalone essay that provides specific advice, insight into Java platform subtleties, and updated code examples. The comprehensive descriptions and explanations for each item illuminate what to do, what not to do, and why. Coverage includes:Updated techniques and best practices on classic topics, including objects, classes, methods, libraries, and generics How to avoid the traps and pitfalls of commonly misunderstood subtleties of the platform Focus on the language and its most fundamental libraries, such as java.lang and java.util
The Pragmatic Programmer: From Journeyman to Master
Andy Hunt - 1999
It covers topics ranging from personal responsibility and career development to architectural techniques for keeping your code flexible and easy to adapt and reuse. Read this book, and you'll learn how toFight software rot; Avoid the trap of duplicating knowledge; Write flexible, dynamic, and adaptable code; Avoid programming by coincidence; Bullet-proof your code with contracts, assertions, and exceptions; Capture real requirements; Test ruthlessly and effectively; Delight your users; Build teams of pragmatic programmers; and Make your developments more precise with automation. Written as a series of self-contained sections and filled with entertaining anecdotes, thoughtful examples, and interesting analogies,
The Pragmatic Programmer
illustrates the best practices and major pitfalls of many different aspects of software development. Whether you're a new coder, an experienced programmer, or a manager responsible for software projects, use these lessons daily, and you'll quickly see improvements in personal productivity, accuracy, and job satisfaction. You'll learn skills and develop habits and attitudes that form the foundation for long-term success in your career. You'll become a Pragmatic Programmer.
The Devastation of Baal
Guy Haley - 2017
Thus begins the greatest conflict in the history of the sons of Sanguinius. Despite a valiant battle in the void around Baal, the Blood Angels are unable to stop the tyranids drawing ever closer, but their petitions for reinforcements are met with dread news. The Cadian Gate, the Imperium’s most stalwart bastion against Chaos, has fallen. In their darkest hour, no help will reach the beleaguered Dante and his warriors. Is this truly then the Time of Ending?