|
Showing 1 - 12 of
12 matches in All Departments
The discipline of engineering presumes certain foundational truths
that are not reducible to mathematical formulas. It presupposes
certain things about creativity, beauty, and abstraction in order
to operate effectively. In short, engineering relies on philosophy.
Conversely, philosophy can draw profound truths from principles
derived from engineering experience. Engineering and the Ultimate
crosses boundaries between a wide variety of disciplines to find
truths both new and old that can be transformative to modern
thought and practice.
Beginnen Sie Ihre Reise in die Welt der Elektronik! Wenn Sie mit
dem Gedanken spielen, in die Elektronik einzusteigen, aber nicht
wissen, wo Sie anfangen sollen, gibt Ihnen dieses Buch die
Informationen, die Sie brauchen. Beginnend mit den Grundlagen von
Elektrizität und Schaltkreisen werden Sie in die digitale
Elektronik und Mikrocontroller, Kondensatoren und Induktivitäten
sowie Verstärkerschaltungen eingeführt - und erhalten
gleichzeitig die grundlegenden Werkzeuge und Informationen, die Sie
für die Arbeit mit Elektronik mit geringem Stromverbrauch
benötigen. Electronics for Beginners schafft den Spagat, sich auf
projektbasiertes Lernen zu konzentrieren und gleichzeitig die
Elektronik in den Mittelpunkt zu stellen. Sie lernen die Mathematik
der Schaltkreise auf unkomplizierte Weise kennen und sehen, wie
Schaltpläne auf echten Breadboards abgebildet werden. Dieses Buch
ist für den absoluten Anfänger geschrieben und vermeidet es, zu
mathematisch zu sein. Es gibt den Lesern die
Schlüsselinformationen, die sie brauchen, um mit ihrer Reise in
die Elektronik zu beginnen. Was Sie lernen werden · Wiederholung
der grundlegenden "Muster" für die Verwendung von Widerständen -
Pull-up, Pull-down, Spannungsteiler und Strombegrenzer · die
Anforderungen an Schaltkreise und deren Aufbau verstehen · Lesen
und Unterscheiden, was die verschiedenen Teile des Schaltplans
bewirken  welche Überlegungen Sie bei der Auswahl der
Komponenten anstellen müssen · Verwenden Sie ausschließlich
batteriebetriebene Schaltkreise, damit die Projekte sicher sind.
Für wen dieses Buch bestimmt ist Praktiker, Studenten und
Anfänger jeden Alters, die sich für den Einstieg in die
Elektronik interessieren.
Jump start your journey with electronics! If you've thought about
getting into electronics, but don't know where to start, this book
gives you the information you need. Starting with the basics of
electricity and circuits, you'll be introduced to digital
electronics and microcontrollers, capacitors and inductors, and
amplification circuits - all while gaining the basic tools and
information you need to start working with low-power electronics.
Electronics for Beginners walks the fine line of focusing on
projects-based learning, while still keeping electronics front and
center. You'll learn the mathematics of circuits in an
uncomplicated fashion and see how schematics map on to actual
breadboards. Written for the absolute beginner, this book steers
clear of being too math heavy, giving readers the key information
they need to get started on their electronics journey. What You'll
Learn Review the basic "patterns" of resistor usage-pull up, pull
down, voltage divider, and current limiter Understand the
requirements for circuits and how they are put together Read and
differentiate what various parts of the schematics do Decide what
considerations to take when choosing components Use all
battery-powered circuits, so projects are safe Who This Book Is For
Makers, students, and beginners of any age interested in getting
started with electronics.
Many programmers have limited effectiveness because they don't have
a deep understanding of how their computer actually works under the
hood. In Learn to Program with Assembly, you will learn to program
in assembly language - the language of the computer itself.
Assembly language is often thought of as a difficult and arcane
subject. However, author Jonathan Bartlett presents the material in
a way that works just as well for first-time programmers as for
long-time professionals. Whether this is your first programming
book ever or you are a professional wanting to deepen your
understanding of the computer you are working with, this book is
for you. The book teaches 64-bit x86 assembly language running on
the Linux operating system. However, even if you are not running
Linux, a provided Docker image will allow you to use a Mac or
Windows computer as well. The book starts with extremely simple
programs to help you get your grounding, going steadily deeper with
each chapter. At the end of the first section, you will be familiar
with most of the basic instructions available on the processor that
you will need for any task. The second part deals with interactions
with the operating system. It shows how to make calls to the
standard library, how to make direct system calls to the kernel,
how to write your own library code, and how to work with memory.
The third part shows how modern programming language features such
as exception handling, object-oriented programming, and garbage
collection work at the assembly language level. Additionally, the
book comes with several appendices covering various topics such as
running the debugger, vector processing, optimization principles, a
list of common instructions, and other important subjects. This
book is the 64-bit successor to Jonathan Bartlett's previous book,
Programming from the Ground Up, which has been a programming
classic for more than 15 years. This book covers similar ground but
with modern 64-bit processors, and also includes a lot more
information about how high level programming language features are
implemented in assembly language. What You Will Learn How the
processor operates How computers represent data internally How
programs interact with the operating system How to write and use
dynamic code libraries How high-level programming languages
implement their features Who This Book Is ForAnyone who wants to
know how their computer really works under the hood, including
first time programmers, students, and professionals.
New programmers start here...this book introduces students or
aspiring professionals to the world of computer programming using
JavaScript and related technologies. This book doesn't just teach
the basics of programming, but also all of the tools that new
programmers need to get started, including the basics of making web
pages and how the Internet works. Programming for Absolute
Beginners offers practice problems, activities, and a host of
resources to get new programmers started, plus a large glossary of
terms introduced in the book and that a new programmer might
encounter when learning on their own. No special software is
required; this book will help you regardless of what your computer
setup is, and source code will be freely available via GitHub. What
You Will Learn How computers work How computers communicate over
networks How web pages are built with HTML and CSS How JavaScript
works How JavaScript interacts with web pages Intermediate
JavaScript topics such as recursion and scoping Using JavaScript
for network communication Who This Book Is ForAnyone wanting to
begin computer programming, including students who need to learn
the fundamentals and early professionals who want to go back and
revisit the basics.
This book takes developers on a journey into the cloud with Docker
and Kubernetes. It walks you through the basics of Docker
containers, how they are built, run, and published, and how the
Kubernetes system allows you to use containers to better manage a
cloud native application. Additionally, it walks you through
various issues in cloud architecture, and how to design a cloud
architecture that will work with your application and your team.
The book takes a unique approach, getting you immersed in each
subject with tutorials, then building up your technical knowledge,
and finally backing up and thinking about more big-picture issues.
Part one introduces Docker, building and working with Docker
images, and covering best practices for Docker Containers. Part two
covers the practicalities of "cloud native" and managing a
Kubernetes application, including a full working example. The last
part covers the design of cloud and microservice architectures,
including the use of enterprise message queues, multi-site
configurations and the common values that such architectures
follow. This approach accelerates learning and keeps you moving
forward without leaving you behind. The appendices also contain a
wealth of worthwhile reference material for routine cloud
application management. What You Will Learn Understand Docker and
containerization Gain insight into what Kubernetes is Master
essential cloud architecture design principles Design and implement
notes for building cloud architectures Who This Book Is
ForPrimarily developers who are moving to the cloud and want to get
a sense of the environment they are getting into, and developers
who want to move into a larger role of cloud architecture.
Eliminate the guesswork involved in writing and deploying a cloud
application. This step-by-step guide uses PHP to minimize the
complexity of the code and setup, but the tools and techniques can
be applied on any platform using any language. Everything that you
need to jumpstart your application on the cloud is right here.
Clear diagrams, step-by-step configuration information, and
complete code listings tell you everything you need to get off the
ground and start developing your cloud application today. This book
introduces several cloud architectures and technologies that will
help you accelerate your application in the cloud. Chapters cover
load-balanced clusters, database replication, caching
configuration, content delivery networks, infinite-scale file
storage, and cloud system administration. Cloud computing has
dramatically changed the landscape of web hosting. Instead of
spending weeks negotiating contracts for servers, new servers can
be deployed with the push of a button, and your application can be
resized almost instantly to meet today's needs. No matter what size
of web application you are developing, you can benefit from modern
cloud servers, and this is the guide to tell you how. What You'll
Learn Use the cloud and its various platforms with Docker
management tools Build a simple PHP-based scalable web application
Create a basic cloud cluster Work with Amazon and Google Cloud
Platform in your PHP web application development Who This Book Is
For Developers who have some prior programming experience,
including PHP, and who are new to building applications
Programming from the Ground Up uses Linux assembly language to
teach new programmers the most important concepts in programming.
It takes you a step at a time through these concepts: * How the
processor views memory * How the processor operates * How programs
interact with the operating system * How computers represent data
internally * How to do low-level and high-level optimization Most
beginning-level programming books attempt to shield the reader from
how their computer really works. Programming from the Ground Up
starts by teaching how the computer works under the hood, so that
the programmer will have a sufficient background to be successful
in all areas of programming. This book is being used by Princeton
University in their COS 217 "Introduction to Programming Systems"
course.
Programming from the Ground Up uses Linux assembly language to
teach new programmers the most important concepts in programming.
It takes you a step at a time through these concepts: * How the
processor views memory * How the processor operates * How programs
interact with the operating system * How computers represent data
internally * How to do low-level and high-level optimization Most
beginning-level programming books attempt to shield the reader from
how their computer really works. Programming from the Ground Up
starts by teaching how the computer works under the hood, so that
the programmer will have a sufficient background to be successful
in all areas of programming. This book is being used by Princeton
University in their COS 217 "Introduction to Programming Systems"
course.
|
You may like...
Captain America
Jack Kirby, Joe Simon, …
Paperback
R610
R476
Discovery Miles 4 760
|