Home > Store

Learn Enough Programming Skills to Be Dangerous (Video Collection)

Online Video

Register your product to gain access to bonus material or receive a coupon.

Description

  • Copyright 2023
  • Edition: 1st
  • Online Video
  • ISBN-10: 0-13-809271-0
  • ISBN-13: 978-0-13-809271-9

36+ hours of Video Instruction

The Learn Enough Programming Skills to Be Dangerous video collection teaches you the foundational skills of software development and website creation, including core developer tools with the command line, text editors, and Git, web basics with HTML and CSS, and programming with JavaScript and Ruby. The tutorials start from scratch with no prior knowledge assumed other than general computer skills. The Learn Enough curriculum fits together with interlocking projects that build on each other. These videos begin with instructive "Hello, World" examples and quickly take advantage of the latest tools and best practices for front-end and beginning back-end software development to quickly build interactive websites that can launch immediately.

An essential aspect of using computers is the ability to figure things out and troubleshoot on your own--or technical sophistication. Developing technical sophistication means not only following systematic tutorials . . . but also knowing when it's time to break free of a structured presentation and just start googling around for a solution.

This master class includes the following courses:

  • Learn Enough Developer Tools to Be Dangerous: Command Line, Text Editor, and Git Version Control Essentials
  • Learn Enough HTML, CSS and Layout to Be Dangerous: An Introduction to Modern Website Creation and Templating Systems
  • Learn Enough JavaScript to Be Dangerous: Write Programs, Publish Packages, and Develop Interactive Websites with JavaScript
  • Learn Enough Ruby to Be Dangerous: Write Programs, Publish Gems, and Develop Sinatra Web Apps with Ruby

In Learn Enough Developer Tools to Be Dangerous: Command Line, Text Editor, and Git Version Control Essentials, renowned instructor Michael Hartl teaches the foundational tools and skills you need to work with developers or become a developer yourself. This video teaches you three essential tools for modern software development: the Unix command line, a text editor, and version control with Git. All three are ubiquitous in the contemporary technology landscape, and yet there are surprisingly few resources for learning them from scratch and seeing how they all fit together. Learn Enough Developer Tools to Be Dangerous, which assumes no prerequisites other than general computer knowledge, fills this gap.

In Learn Enough HTML, CSS and Layout to Be Dangerous: An Introduction to Modern Website Creation and Templating Systems, renowned instructors Lee Donahoe and Michael Hartl teach the concepts, skills, and approaches you need to make modern websites and deploy them to the World Wide Web. Learn Enough HTML, CSS and Layout to Be Dangerous teaches you how to make modern websites using Hypertext Markup Language (HTML) and Cascading Style Sheets (CSS). The video includes several much-neglected yet essential techniques for page layout, including more advanced CSS techniques such as flexbox and CSS grid. It also covers the use of a static site generator to make websites that are easy to maintain and update. Finally, Learn Enough HTML, CSS and Layout to Be Dangerous shows you how to register and configure custom domains, including both custom URLs and custom email addresses. You can think of this tutorial as "a website in a box": everything you need (and nothing you don't) to design, build, and deploy modern, professional-grade websites.

In Learn Enough JavaScript to Be Dangerous: Write Programs, Publish Packages, and Develop Interactive Websites with JavaScript, renowned instructor Michael Hartl teaches the concepts, skills, and approaches you need to be professionally productive with JavaScript for both interactive websites and for general-purpose programming. Even if you're new to programming, Hartl helps you quickly build technical sophistication as you gain a solid understanding of JavaScript for object-oriented and functional programming, including making JavaScript modules using test-driven development and Node.js. Focused exercises help you internalize what matters, without wasting time on details pros don't care about. Soon, it'll be like you were born knowing this stuff--and you'll be suddenly, seriously dangerous.

In Learn Enough Ruby to Be Dangerous: Write Programs, Publish Gems, and Develop Sinatra Web Apps with Ruby, renowned instructor Michael Hartl teaches the concepts, skills, and approaches you need to be professionally productive with Ruby for both general-purpose programming and beginning web app development. Programmers love Ruby for its elegance, power, and flexibility: that's why it was chosen for the Ruby on Rails framework that launched websites from Shopify to Coinbase. You'll love Ruby too, but you don't need to learn "everything" about it--just how to use it efficiently to solve real problems. Best-selling author and leading Rails developer Michael Hartl gets you started writing practical and modern Ruby programs as fast as possible, with a focus on the real tools used every day by software developers. You'll learn how to use Ruby interactively, write shell scripts in Ruby, and use Ruby to make simple dynamic web applications.

About the Instructors

Michael Hartl is the creator of the Ruby on Rails Tutorial, one of the leading introductions to web development, and is cofounder and principal author at Learn Enough. Previously, he was a physics instructor at the California Institute of Technology (Caltech), where he received a Lifetime Achievement Award for Excellence in Teaching. He is a graduate of Harvard College, has a PhD in Physics from Caltech, and is an alumnus of the Y Combinator entrepreneur program.

Lee Donahoe is a Learn Enough cofounder, an entrepreneur, designer, and frontend developer. In addition to doing the design for Learn Enough, Softcover, and the Ruby on Rails Tutorial, he is also a cofounder and frontend developer for Coveralls, a leading test coverage analysis service, and is tech cofounder of Buck Mason, a men's clothing company once featured on ABC's Shark Tank. Lee is a graduate of USC, where he majored in Economics and studied Interactive Multimedia & Technologies.

About Pearson Video Training

Pearson publishes expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. These professional and personal technology videos feature world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, Pearson IT Certification, Sams, and Que. Topics include: IT Certification, Network Security, Cisco Technology, Programming, Web Development, Mobile Development, and more. Learn more about Pearson Video training at informit.com/video.

Video Lessons are available for download for offline viewing within the streaming format. Look for the green arrow in each lesson.

Sample Content

Table of Contents

Learn Enough Developer Tools to Be Dangerous: Command Line, Text Editor, and Git Version Control Essentials

Introduction

Module 1: Command Line

Lesson 1: Basics
Topics
1.1 Introduction
1.2 Running a terminal
1.3 Our first command
1.4 Man pages
1.5 Editing the line
1.6 Cleaning up

Lesson 2: Manipulating Files
Topics
2.1 Redirecting and appending
2.2 Listing
2.3 Renaming, copying, deleting

Lesson 3: Inspecting Files
Topics
3.1 Downloading a file
3.2 Making heads and tails of it
3.3 Less is more
3.4 Grepping

Lesson 4: Directories
Topics
4.1 Directory structure
4.2 Making directories
4.3 Navigating directories
4.4 Renaming, copying, and deleting directories
4.5 Conclusion

Module 2: Text Editors

Lesson 5: Introduction to Text Editors
Topics
5.1 Minimum Viable Vim
5.2 Starting Vim
5.3 Editing small files
5.4 Saving and quitting files
5.5 Deleting content
5.6 Editing large files

Lesson 6: Modern Text Editors
Topics
6.1 Choosing a text editor
6.2 Opening
6.3 Moving
6.4 Selecting text
6.5 Cut, copy, paste
6.6 Deleting and undoing
6.7 Saving
6.8 Finding and replacing

Lesson 7: Advanced Text Editing
Topics
7.1 Autocomplete and tab triggers
7.2 Writing source code
7.3 Writing an executable script
7.4 Editing projects
7.5 Customization
7.6 Conclusion

Module 3: Git

Lesson 8: Getting Started
Topics
8.1 Installation and setup
8.2 Initializing the repo
8.3 Our first commit
8.4 Viewing the diff
8.5 Adding an HTML tag
8.6 Adding HTML structure

Lesson 9: Backing Up and Sharing
Topics
9.1 Signing up for GitHub
9.2 Remote repo
9.3 Adding a README

Lesson 10: Immediate Workflow
Topics
10.1 Commit, push, repeat
10.2 Ignoring files
10.3 Branching and merging
10.4 Recovering from errors

Lesson 11: Collaborating
Topics
11.1 Clone, push, pull
11.2 Pulling and merge conflicts
11.3 Pushing branches
11.4 A surprise bonus
11.5 Advanced setup
11.6 Conclusion

Summary

Learn Enough HTML, CSS and Layout to Be Dangerous: An Introduction to Modern Website Creation and Templating Systems

Introduction

Module 1: HTML

Lesson 1: Basic HTML
Topics
1.1 Introduction
1.2 HTML tags
1.3 Starting the project
1.4 The first tag
1.5 An HTML skeleton

Lesson 2: Filling in the Index Page
Topics
2.1 Headings
2.2 Text formatting
2.3 Links
2.4 Adding images

Lesson 3: More Pages, More Tags
Topics
3.1 An HTML page about HTML
3.2 Tables
3.3 Divs and spans
3.4 Lists
3.5 A navigation menu

Lesson 4: Inline Styling and CSS
Topics
4.1 Text styling
4.2 Floats
4.3 Applying a margin
4.4 More margin tricks
4.5 Box styling
4.6 Navigation styling
4.7 A taste of CSS
4.8 Conclusion

Module 2: CSS and Layout

Lesson 5: Introduction to CSS
Topics
5.1 You're a front-end developer
5.2 CSS overview and history
5.3 Sample site setup
5.4 Start stylin'
5.5 CSS selectors

Lesson 6: The Style of Style
Topics
6.1 Naming things
6.2 When and why
6.3 Priority and specificity
6.4 How to be a good styling citizen

Lesson 7: CSS Values: Color and Sizing
Topics
7.1 CSS color
7.2 Introduction to sizing
7.3 Pixels (and their less-used cousin, the point)
7.4 Percentages
7.5 em
7.6 rem isn't just for dreaming
7.7 vh, vw: The new kids on the block
7.8 Pleasing fonts

Lesson 8: The Box Model
Topics
8.1 Inline vs. block
8.2 Margins, padding, and borders
8.3 Floats
8.4 A little more about the overflow style
8.5 Inline block
8.6 Margins for boxes
8.7 Padding ... not just for chairs
8.8 Fun with borders

Lesson 9: Laying It All Out
Topics
9.1 Layout basics
9.2 Jekyll
9.3 Layouts, includes, and pages (oh my!)
9.4 The layout file
9.5 CSS file and reset
9.6 Includes intro: Head and header
9.7 Advanced selectors
9.8 Positioning
9.9 Fixed header
9.10 A footer and includes in includes

Lesson 10: Page Templates and Frontmatter
Topics
10.1 Template content
10.2 There's no place like home
10.3 More advanced selectors
10.4 Other pages, other folders

Lesson 11: Specialty Page Layouts with Flexbox
Topics
11.1 Having content fill a container
11.2 Vertical flex centering
11.3 Flexbox style options and shorthand
11.4 Three-column page layout
11.5 A gallery stub

Lesson 12: Adding a Blog
Topics
12.1 Adding blog posts
12.2 Blog index content loop
12.3 A blog post page

Lesson 13: Mobile Media Queries
Topics
13.1 Getting started with mobile designs
13.2 Mobile adaptation
13.3 Mobile viewport
13.4 Dropdown menu
13.5 Mobile dropdown menu

Lesson 14: Adding More Little Touches
Topics
14.1 Custom fonts
14.2 Favicons
14.3 Custom title and meta description
14.4 Conclusion and Further Reading

Lesson 15: CSS Grid

Summary

Learn Enough JavaScript to Be Dangerous: Write Programs, Publish Packages, and Develop Interactive Websites with JavaScript

Introduction

Lesson 1: Hello World!
Topics
1.1 Introduction to JavaScript
1.2 JS in a Web Browser
1.3 JS in REPL
1.4 JS in a File
1.5 JS in a Shell Script

Lesson 2: Strings
Topics
2.1 String Basics
2.2 Concatenation and Interpolation
2.3 Printing
2.4 Properties, Booleans and control flow
2.5 Methods
2.6 String Iteration

Lesson 3: Arrays
Topics
3.1 Splitting
3.2 Array Access
3.3 Array Slicing
3.4 More Array Methods
3.5 Array Iteration

Lesson 4: Other Native Objects
Topics
4.1 Math and Numbers
4.2 Dates
4.3 Regular Expressions
4.4 Plain Objects
4.5 Application: Unique Words

Lesson 5: Functions
Topics
5.1 Function Definitions
5.2 Functions in a File
5.3 Method Chaining
5.4 Iteration for Each

Lesson 6: Functional Programming
Topics
6.1 Map
6.2 Filter
6.3 Reduce

Lesson 7: Objects and Prototypes
Topics
7.1 Defining Objects
7.2 Prototypes
7.3 Modifying Native Objects

Lesson 8: Testing and Test-Driven Development
Topics
8.1 Testing Setup
8.2 Initial Test Coverage
8.3 Red
8.4 Green
8.5 Refactor

Lesson 9: Events and DOM Manipulation
Topics
9.1 A Working Palindrome Page
9.2 Event Listeners
9.3 Dynamic HTML
9.4 Form Handling

Lesson 10: Shell Scripts with Node.js
Topics
10.1 Reading from Files
10.2 Reading from URLs
10.3 DOM Manipulation at the Command Line

Lesson 11: Full Sample App: Image Gallery
Topics
11.1 Prepping the Gallery
11.2 Changing the Gallery Image
11.3 Setting an Image as Current
11.4 Changing the Image Info
11.5 Conclusion

Summary

Learn Enough Ruby to Be Dangerous: Write Programs, Publish Gems, and Develop Sinatra Web Apps with Ruby

Introduction

Lesson 1: Hello World!
Topics
1.1 Introduction to Ruby
1.2 Ruby in a REPL
1.3 Ruby in a file
1.4 Ruby in a shell script
1.5 Ruby in a web browser

Lesson 2: Strings
Topics
2.1 String basics
2.2 Concatenation and interpolation
2.3 Printing
2.4 Attributes, Booleans, and control flow
2.5 Methods
2.6 String iteration

Lesson 3: Arrays
Topics
3.1 Splitting
3.2 Array access
3.3 Array slicing
3.4 More array methods
3.5 Array iteration

Lesson 4: Other Native Objects
Topics
4.1 Math
4.2 Time
4.3 Regular expressions
4.4 Hashes
4.5 Application: Unique words

Lesson 5: Functions and Blocks
Topics
5.1 Function definitions
5.2 Functions in a file
5.3 Method chaining
5.4 Blocks

Lesson 6: Functional Programming
Topics
6.1 Map
6.2 Select
6.3 Reduce

Lesson 7: Objects and Classes
Topics
7.1 Defining classes
7.2 Inheritance
7.3 Derived classes
7.4 Modifying native objects
7.5 Modules

Lesson 8: Testing and Test-Driven Development
Topics
8.1 Testing and Ruby gem setup
8.2 Initial test coverage
8.3 Red
8.4 Green
8.5 Refactor

Lesson 9: Shell Scripts
Topics
9.1 Reading from files
9.2 Reading from URLs
9.3 DOM manipulation at the command line

Lesson 10: A Live Web Application
Topics
10.1 Setup
10.2 Site pages
10.3 Layouts
10.4 Embedded Ruby
10.5 Palindrome detector
10.6 Conclusion

Summary

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020