Coding, Bugs, and Fixes

Coding, Bugs, and Fixes
Author: Heather Lyons
Publisher: Lerner Publications
Total Pages: 28
Release: 2016-08-01
Genre: Juvenile Nonfiction
ISBN: 1512413801

How do computers know what you want them to do? They receive instructions called code with the specific steps needed to perform a task. Learn how to create codes, what happens when instructions are out of order, and how mistakes are fixed. Once you know the basics, use the link in this book to go online and try coding yourself!

Find the Bug

Find the Bug
Author: Adam Barr
Publisher: Addison-Wesley Professional
Total Pages: 346
Release: 2005
Genre: Computers
ISBN:

Gain a deeper understanding of software and learn to be a better programmer with this unique book of challenging code exercises.

Kids Get Coding

Kids Get Coding
Author: Heather Lyons
Publisher: Hodder Children's Books
Total Pages:
Release: 2016-05-26
Genre:
ISBN: 9780750297011

Debug It!

Debug It!
Author: Paul Butcher
Publisher:
Total Pages: 214
Release: 2009
Genre: Computers
ISBN: 9781934356289

Provides information on the techniques of debugging software and code.

The Effective Engineer

The Effective Engineer
Author: Edmond Lau
Publisher: Effective Bookshelf
Total Pages: 260
Release: 2015-03-19
Genre: Computer programmers
ISBN: 9780996128100

Introducing The Effective Engineer--the only book designed specifically for today's software engineers, based on extensive interviews with engineering leaders at top tech companies, and packed with hundreds of techniques to accelerate your career.

Bugs That Make Your Computer Crawl

Bugs That Make Your Computer Crawl
Author: Brian P. Cleary
Publisher: Millbrook Press
Total Pages: 28
Release: 2019
Genre: Juvenile Nonfiction
ISBN: 1541545605

"Don't swat that bug--fix it! Author Brian P. Cleary, illustrator (and coding hobbyist) Martin Goneau, and the indefatigable CATegorical cats offer a fun and accessible introduction to computer bugs"--

Code Craft

Code Craft
Author: Pete Goodliffe
Publisher: No Starch Press
Total Pages: 626
Release: 2007
Genre: Computers
ISBN: 1593271190

A guide to writing computer code covers such topics as variable naming, presentation style, error handling, and security.

Debugging Techniques Finding and Fixing Bugs

Debugging Techniques Finding and Fixing Bugs
Author: Sunil Kumar Saini
Publisher: Sunil Kumar Saini
Total Pages: 45
Release: 2023-04-27
Genre: Antiques & Collectibles
ISBN:

"Debugging Techniques: Finding and Fixing Bugs" is a book that provides guidance on identifying and resolving software bugs in computer programs. The book covers a range of techniques and strategies that can be used to debug code, including debugging tools, testing methodologies, and best practices for identifying and isolating bugs. The book is aimed at programmers and software developers of all levels, from beginners to experienced professionals. It covers both the theoretical and practical aspects of debugging, including how to approach different types of bugs, how to use debugging tools effectively, and how to work collaboratively to identify and fix bugs in complex software projects. Overall, "Debugging Techniques: Finding and Fixing Bugs" is a comprehensive guide to the art of debugging that provides readers with the knowledge and skills needed to improve the quality and reliability of their software applications.

Writing Secure Code

Writing Secure Code
Author: David LeBlanc
Publisher: Pearson Education
Total Pages: 800
Release: 2002-12-04
Genre: Computers
ISBN: 0735637407

Keep black-hat hackers at bay with the tips and techniques in this entertaining, eye-opening book! Developers will learn how to padlock their applications throughout the entire development process—from designing secure applications to writing robust code that can withstand repeated attacks to testing applications for security flaws. Easily digested chapters reveal proven principles, strategies, and coding techniques. The authors—two battle-scarred veterans who have solved some of the industry’s toughest security problems—provide sample code in several languages. This edition includes updated information about threat modeling, designing a security process, international issues, file-system issues, adding privacy to applications, and performing security code reviews. It also includes enhanced coverage of buffer overruns, Microsoft .NET security, and Microsoft ActiveX development, plus practical checklists for developers, testers, and program managers.

Scala Test-Driven Development

Scala Test-Driven Development
Author: Gaurav Sood
Publisher: Packt Publishing Ltd
Total Pages: 191
Release: 2016-10-27
Genre: Computers
ISBN: 1786463024

Build robust Scala applications by implementing the fundamentals of test-driven development in your workflow About This Book Get a deep understanding of various testing concepts such as test-driven development (TDD) and BDD Efficient usage of the built-in Scala features such as ScalaTest, specs2, and Scala check Change your approach towards problem solving by thinking about the boundaries of the problem and its definition rather than focusing on the solution Who This Book Is For This book is for Scala developers who are looking to write better quality and easily maintainable code. No previous knowledge of TDD/BDD is required. What You Will Learn Understand the basics of TDD and its significance Refactoring tests to build APIs in order to increase test coverage How to leverage the inbuilt Scala testing modules like ScalaTest, specs2 and Scala Check Writing test fixtures and apply the concepts of BDD How to divide tests to run at different points in continuous delivery cycle Benefits of refactoring and how it affects the final quality of code produced Understanding of SBT based build environment and how to use it to run tests The fundamentals of mocking and stubbing in Scala and how to use it efficiently In Detail Test-driven development (TDD) produces high-quality applications in less time than is possible with traditional methods. Due to the systematic nature of TDD, the application is tested in individual units as well as cumulatively, right from the design stage, to ensure optimum performance and reduced debugging costs. This step-by-step guide shows you how to use the principles of TDD and built-in Scala testing modules to write clean and fully tested Scala code and give your workflow the change it needs to let you create better applications than ever before. After an introduction to TDD, you will learn the basics of ScalaTest, one of the most flexible and most popular testing tools around for Scala, by building your first fully test-driven application. Building on from that you will learn about the ScalaTest API and how to refactor code to produce high-quality applications. We'll teach you the concepts of BDD (Behavior-driven development) and you'll see how to add functional tests to the existing suite of tests. You'll be introduced to the concepts of Mocks and Stubs and will learn to increase test coverage using properties. With a concluding chapter on miscellaneous tools, this book will enable you to write better quality code that is easily maintainable and watch your apps change for the better. Style and approach This step-by-step guide explains the significance of TDD in Scala through various practical examples. You will learn to write a complete test-driven application throughout the course of the book.