ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

528 results

Web Development Tutorials
Ruby on Rails - Web development basic Series: Methods: Defining and Calling Reusable Ruby Code

A method packages up a piece of logic under one name so you can reuse it anywhere instead of rewriting the same code ...

2:14
Ruby on Rails - Web development basic Series: Methods: Defining and Calling Reusable Ruby Code

1 view

16 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: System Tests with Capybara

A system test drives a real, actual browser, clicking buttons and filling in forms exactly like a real user would, and Capybara is the ...

2:10
Ruby on Rails - Web development basic Series: System Tests with Capybara

0 views

14 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Generating and Understanding Controllers

Rails ships a generator that scaffolds a whole controller file for you in one command, and knowing what it actually creates saves ...

1:51
Ruby on Rails - Web development basic Series: Generating and Understanding Controllers

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: What Is Ruby? Installing Ruby and Running Your First S

Ruby is the programming language Rails itself is written in, and before touching any Rails code at all, you need Ruby installed ...

2:36
Ruby on Rails - Web development basic Series: What Is Ruby? Installing Ruby and Running Your First S

2 views

16 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: ERB Templating Basics

ERB is the templating language behind every .html.erb file, and it's really just HTML with two special tags for embedding real Ruby ...

2:30
Ruby on Rails - Web development basic Series: ERB Templating Basics

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Loops and Iterators: each, times, and while

Repeating an action without copy-pasting the same line over and over is one of the most useful things a program can do, and ...

1:57
Ruby on Rails - Web development basic Series: Loops and Iterators: each, times, and while

0 views

16 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Generating Models and Migrations

A model isn't just a Ruby class, it needs a real matching database table, and Rails generates both together with one command.

2:05
Ruby on Rails - Web development basic Series: Generating Models and Migrations

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Displaying Validation Errors in Forms

When a save fails validation, the user needs to see exactly what went wrong, right next to the field that caused it. In this video ...

2:03
Ruby on Rails - Web development basic Series: Displaying Validation Errors in Forms

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Rendering Views and Layouts

Every controller action automatically renders a matching view, but you can also render something different, or wrap every page in ...

2:03
Ruby on Rails - Web development basic Series: Rendering Views and Layouts

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Associations: has_many :through and has_and_belongs_to

Some relationships are more complex than a simple has_many, like an article having many tags, and a tag belonging to many ...

2:02
Ruby on Rails - Web development basic Series: Associations: has_many :through and has_and_belongs_to

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Classes and Objects in Ruby

Ruby is a genuinely object-oriented language, meaning almost everything, including your own custom data, can be modeled as a ...

2:13
Ruby on Rails - Web development basic Series: Classes and Objects in Ruby

1 view

16 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Hashes: Storing Key-Value Data in Ruby

A hash stores data as key-value pairs instead of a plain ordered list, so you look values up by a meaningful name instead of a ...

2:00
Ruby on Rails - Web development basic Series: Hashes: Storing Key-Value Data in Ruby

0 views

16 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Database Seeding and Fixtures

A fresh database is completely empty, but you often need real starter data, an admin user, some sample categories, to actually ...

2:07
Ruby on Rails - Web development basic Series: Database Seeding and Fixtures

0 views

14 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Adding has_secure_password for Basic Auth

Storing a user's password in plain text is a serious security mistake, and Rails gives you has_secure_password, a real, built-in ...

2:28
Ruby on Rails - Web development basic Series: Adding has_secure_password for Basic Auth

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Full CRUD: Destroy and Confirmation

Deleting a record is permanent, so Rails makes it easy to both perform the deletion and ask the user to confirm it first. In this video ...

1:51
Ruby on Rails - Web development basic Series: Full CRUD: Destroy and Confirmation

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Using the Devise Gem for Authentication

Devise is the most widely used Rails authentication gem, generating a complete, production-ready login system, sign up, login, ...

2:20
Ruby on Rails - Web development basic Series: Using the Devise Gem for Authentication

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Action Mailer for Sending Emails

Action Mailer is Rails' built-in system for sending real emails, and it works almost exactly like a controller and view, just for ...

2:09
Ruby on Rails - Web development basic Series: Action Mailer for Sending Emails

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: RESTful Routes with resources

Most real apps need the same seven routes for every resource: index, show, new, create, edit, update, destroy. Instead of writing ...

2:17
Ruby on Rails - Web development basic Series: RESTful Routes with resources

0 views

16 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Building Forms with form_with

form_with is Rails' modern helper for generating real HTML forms, and it automatically wires up the correct URL and HTTP ...

2:07
Ruby on Rails - Web development basic Series: Building Forms with form_with

0 views

15 hours ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Deploying a Rails App

A Rails app running only on your own laptop isn't reachable by anyone else, deploying puts it on a real server the whole internet ...

2:13
Ruby on Rails - Web development basic Series: Deploying a Rails App

0 views

14 hours ago