Language: English
Published by No Starch Press, Incorporated, 2020
ISBN 10: 1718500386 ISBN 13: 9781718500389
Seller: Better World Books: West, Reno, NV, U.S.A.
Condition: Very Good. Pages intact with possible writing/highlighting. Binding strong with minor wear. Dust jackets/supplements may not be included. Stock photo provided. Product includes identifying sticker. Better World Books: Buy Books. Do Good.
Condition: good. Book is in good condition. Minimal signs of wear. It May have markings or highlights, but kept to only a few pages. May not come with supplemental materials if applicable.
Condition: Good. Item in good condition and has highlighting/writing on text. Used texts may not contain supplemental items such as CDs, info-trac etc.
Seller: HPB-Red, Dallas, TX, U.S.A.
Paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority!
Seller: HPB-Red, Dallas, TX, U.S.A.
Paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority!
Seller: HPB-Red, Dallas, TX, U.S.A.
Paperback. Condition: Good. Connecting readers with great books since 1972! Used textbooks may not include companion materials such as access codes, etc. May have some wear or writing/highlighting. We ship orders daily and Customer Service is our top priority!
Seller: Red's Corner LLC, Tucker, GA, U.S.A.
paperback. Condition: Fine. Grade 4 out of 5 points. This is a used book. Book may have wear due to handling. Has no markings on pages. May not include extra materials like access codes, CDs, accessories, etc. All orders ship by next business day! We are a small company and very thankful for your business!
Seller: Zoom Books East, Glendale Heights, IL, U.S.A.
Condition: like_new. Book is in like new condition with minimal signs of wear. Pages are clean and free from notes or highlighting. Dust cover is intact. May not contain miscellaneous items toys, dvds, etc. . We offer 100% money back guarantee and 24 7 customer service.
Language: English
Published by No Starch Press, Incorporated, 2020
ISBN 10: 1593279795 ISBN 13: 9781593279790
Seller: Better World Books, Mishawaka, IN, U.S.A.
Condition: Good. Former library copy. Pages intact with minimal writing/highlighting. The binding may be loose and creased. Dust jackets/supplements are not included. Includes library markings. Stock photo provided. Product includes identifying sticker. Better World Books: Buy Books. Do Good.
Seller: GreatBookPrices, Columbia, MD, U.S.A.
Condition: New.
Language: English
Published by No Starch Press,US, San Francisco, 2020
ISBN 10: 1593279795 ISBN 13: 9781593279790
Seller: Grand Eagle Retail, Bensenville, IL, U.S.A.
Paperback. Condition: new. Paperback. Learn how to write code that everybody thinks is great. This book covers topics relevant to writing great code at a personal level- craftsmanship, art, and pride in your workmanship.This third volume in the Write Great Code series addresses the issues of creating readable and maintainable code that will generate awe from fellow programmers. Volumes I & II of the Write Great Code series address an important attribute, efficiency, that is often ignored in modern software development. But no matter how efficient your code is, if it isn't readable and maintainable by others, then it's not great code. Great code must have a great design and must adhere to good coding standards. In this book, you'll learn things like coding styles, commenting, code layout, and other crucial coding tasks. Lean how to write highly legible, maintainable code that everybody thinks is great. Shipping may be from multiple locations in the US or from the UK, depending on stock availability.
Language: English
Published by Penguin Random House, 2020
ISBN 10: 1593279795 ISBN 13: 9781593279790
Seller: INDOO, Avenel, NJ, U.S.A.
Condition: New.
Seller: GreatBookPrices, Columbia, MD, U.S.A.
Condition: New.
Seller: GreatBookPrices, Columbia, MD, U.S.A.
Condition: New.
Language: English
Published by No Starch Press,US, San Francisco, 2020
ISBN 10: 171850036X ISBN 13: 9781718500365
Seller: Grand Eagle Retail, Bensenville, IL, U.S.A.
Paperback. Condition: new. Paperback. Understanding the Machine, the first volume in the landmark Write Great Code series by Randall Hyde, explains the underlying mechanics of how a computer works.Understanding the Machine, the first volume in the landmark Write Great Code series by Randall Hyde, explains the underlying mechanics of how a computer works.This, the first volume in Randall Hyde's Write Great Code series, dives into machine organization without the extra overhead of learning assembly language programming. Written for high-level language programmers, Understanding the Machine fills in the low-level details of machine organization that are often left out of computer science and engineering courses.Learn-How the machine represents numbers, strings, and high-level data structures, so you'll know the inherent cost of using them.How to organize your data, so the machine can access it efficiently.How the CPU operates, so you can write code that works the way the machine does.How I/O devices operate, so you can maximize your application's performance when accessing those devices.How to best use the memory hierarchy to produce the fastest possible programs.Great code is efficient code. But before you can write truly efficient code, you must understand how computer systems execute programs and how abstractions in programming languages map to the machine's low-level hardware. After all, compilers don't write the best machine code; programmers do. This book gives you the foundation upon which all great software is built.NEW IN THIS EDITION, COVERAGE OF-Programming languages like Swift and JavaCode generation on modern 64-bit CPUsARM processors on mobile phones and tabletsNewer peripheral devicesLarger memory systems and large-scale SSDs The first volume in a landmark series explaining the underlying mechanics of how a computer works. Shipping may be from multiple locations in the US or from the UK, depending on stock availability.
Language: English
Published by No Starch Press,US, San Francisco, 2020
ISBN 10: 1718500386 ISBN 13: 9781718500389
Seller: Grand Eagle Retail, Bensenville, IL, U.S.A.
Paperback. Condition: new. Paperback. Thinking Low-Level, Writing High-Level, the second volume in the landmark Write Great Code series by Randall Hyde, covers high-level programming languages (such as Swift and Java) as well as code generation on 64-bit CPUsARM, the Java Virtual Machine, and the Microsoft Common Runtime.Thinking Low-Level, Writing High-Level, the second volume in the landmark Write Great Code series by Randall Hyde, covers high-level programming languages (such as Swift and Java) as well as code generation on 64-bit CPUsARM, the Java Virtual Machine, and the Microsoft Common Runtime.Today's programming languages offer productivity and portability, but also make it easy to write sloppy code that isn't optimized for a compiler. Thinking Low-Level, Writing High-Level will teach you to craft source code that results in good machine code once it's run through a compiler.You'll learn-How to analyze the output of a compiler to verify that your code generates good machine codeThe types of machine code statements that compilers generate for common control structures, so you can choose the best statements when writing HLL codeEnough assembly language to read compiler outputHow compilers convert various constant and variable objects into machine dataWith an understanding of how compilers work, you'll be able to write source code that they can translate into elegant machine code.NEW TO THIS EDITION, COVERAGE OF-Programming languages like Swift and JavaCode generation on modern 64-bit CPUsARM processors on mobile phones and tabletsStack-based architectures like the Java Virtual MachineModern language systems like the Microsoft Common Language Runtime Fully updated 2nd edition, explaining how compilers translate high-level language source code into low-level machine code. Shipping may be from multiple locations in the US or from the UK, depending on stock availability.
Seller: GreatBookPrices, Columbia, MD, U.S.A.
Condition: As New. Unread book in perfect condition.
Seller: GreatBookPrices, Columbia, MD, U.S.A.
Condition: As New. Unread book in perfect condition.
Seller: GreatBookPrices, Columbia, MD, U.S.A.
Condition: As New. Unread book in perfect condition.
Language: English
Published by Penguin Random House, 2020
ISBN 10: 1593279795 ISBN 13: 9781593279790
Seller: INDOO, Avenel, NJ, U.S.A.
Condition: As New. Unread copy in mint condition.
Language: English
Published by No Starch Press,US, US, 2020
ISBN 10: 1593279795 ISBN 13: 9781593279790
Seller: Rarewaves USA, OSWEGO, IL, U.S.A.
Paperback. Condition: New. This third volume in the Write Great Code series addresses the issues of creating readable and maintainable code that will generate awe from fellow programmers. No matter how efficient your code is, if it isn't readable and maintainable by others, then it's not great code. Great code must have a great design and must adhere to good coding standards. In this book, you'll learn things like coding styles, commenting, code layout, and other crucial coding tasks.
Language: English
Published by No Starch Press,US, US, 2020
ISBN 10: 171850036X ISBN 13: 9781718500365
Seller: Rarewaves USA, OSWEGO, IL, U.S.A.
Paperback. Condition: New. Like the highly regarded first edition, this second edition of Understanding the Machine covers machine organisation and computer science topics like the CPU, machine architecture, memory and cache organisation, I/O and peripheral devices, and how the decoding and execution of machine instructions affects software performance. This edition has been updated to cover 64-bit machines, newer peripheral devices, larger memory systems, large-scale SSDs, and newer CPUs like those used in personal computers and tablets.
Language: English
Published by No Starch Press,US, US, 2020
ISBN 10: 1718500386 ISBN 13: 9781718500389
Seller: Rarewaves USA, OSWEGO, IL, U.S.A.
Paperback. Condition: New. The second edition of the second volume in the highly-regarded Write Great Code series, teachinh readers how to produce better machine code by directing the actions of their chosen compiler. This second edition has been updated to cover high-level programming languages (such as Swift and Java) as well as code generation on 64-bit CPUsARM, the Java Virtual Machine, and the Microsoft Common Runtime.
Seller: Books Puddle, New York, NY, U.S.A.
Condition: New. pp. 376.
Condition: New. pp. 472 2nd Edition.
Seller: Massive Bookshop, Greenfield, MA, U.S.A.
Paperback. Condition: New.
Seller: Massive Bookshop, Greenfield, MA, U.S.A.
Paperback. Condition: New.
Seller: Massive Bookshop, Greenfield, MA, U.S.A.
Paperback. Condition: New.
Seller: Majestic Books, Hounslow, United Kingdom
Condition: New. pp. 376.
Language: English
Published by Penguin Random House Group, 2020
ISBN 10: 171850036X ISBN 13: 9781718500365
Seller: PBShop.store UK, Fairford, GLOS, United Kingdom
PAP. Condition: New. New Book. Shipped from UK. Established seller since 2000.