Dart for Absolute Beginners

Dart for Absolute Beginners

David Kopec

Language: English

Pages: 336

ISBN: 1430264810

Format: PDF / Kindle (mobi) / ePub


Dart for Absolute Beginners enables individuals with no background in programming to create their own web apps while learning the fundamentals of software development in a cutting edge language. Easily digested chapters, while comprehensive enough to explore the whole domain, are aimed at both hobbyists and professionals alike. The reader will not only gain an insight into Dart, but also the technologies behind the web. A firm foundation is laid for further programming studies.

Dart is a new, innovative language developed by Google which is poised to take the web by storm. For client side web app development, Dart has many advantages over JavaScript. These include but are not limited to: improved speed, enforcement of programmatic structure, and improved facilities for software reuse. Best of all, Dart is automatically converted to JavaScript so that it works with all web browsers. Dart is a fresh start, without the baggage of the last two decades of the web. Why start learning to program with yesterday’s technology?

  • Teaches you the fundamentals of programming and the technologies behind the web.
  • Utilizes the cutting edge, easy to learn, structured Dart programming language so that your first steps are pointed towards the future of web development.
  • No prior knowledge is required to begin developing your own web apps.

What you’ll learn

  • Become proficient in the fundamentals of programming.
  • Learn how the technologies behind the web work.
  • Use Dart to write small to medium size web apps.
  • Understand enough HTML and CSS to create your own designs.
  • Be capable of interpreting others’ code.
  • Develop a foundation that enables you to further advance your programming skills.

Who this book is for

Dart for Absolute Beginners is for readers with no prior knowledge of programming (or even HTML) who are interested in taking their first steps into web development with the “latest and greatest” web programming language, Dart. Hobbyists will appreciate its easy-to-digest content, while its focus on the cutting edge Dart language will appeal to professionals. It’s also for the reader who simply has a curiosity about how the web and/or programming works – he will gain insight into its technologies without getting into the tiresome emphasis on semantics in some introductory texts. Dart for Absolute Beginners is a thoroughly approachable text for new programmers of all backgrounds.

Table of Contents

  1. Getting Set Up
  2. Your First Dart Programs
  3. Some Programming Fundamentals
  4. Five Small Programs to Showcase Fundamentals in Dart
  5. Functions
  6. Data Structures
  7. How Does the Web Work?
  8. Using Dart to Interact with HTML
  9. Hangman
  10. Object-Oriented Programming Fundamentals
  11. Object-Oriented Design
  12. Advanced Dart Concepts
  13. Testing Your Work
  14. Concurrency
  15. Tools of the Trade
  16. Putting it All Together
  17. Where to Go from Here
  18. Interview with Dart's Creators
  19. Appendix A: Dart Cheat Sheet
  20. Appendix B: History of Web Programming
  21. Appendix C: Dart Timeline
  22. Appendix D: Great Resources

Ruby on Rails For Dummies

Responsive Theming for Drupal: Making Your Site Look Good on Any Device

Foundation Rails 2

Getting Started with Backbone Marionette

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Map has the key specified to it as an argument. This is how we check whether we can encode the character from the user’s input. Our program can’t encode punctuation or spaces, so we just ignore non-letters. To break the user’s input into a List that we can easily iterate, we use the String method split(). split() takes a String and divides it into little pieces that it returns cobbled together as a List. The String is divided at the substrings specified by the argument to split(). If split() is

attribute of the

tag points to the resource that the form will be submitted to. The method attribute could be "GET" in another scenario. The tag can represent multiple different types of input elements. The type that it is representing is specified by the type attribute. The first tag is a text box, while the second is a button that when clicked will cause the form’s content to be changed into a POST request and sent to the get_weather resource.