ViewTube

ViewTube
Sign inSign upSubscriptions
Filters

Upload date

Type

Duration

Sort by

Features

Reset

42 results

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

31 minutes 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

41 seconds ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Stimulus.js Basics in Rails

Stimulus is the lightweight JavaScript framework that pairs with Hotwire, adding small bits of real interactivity, like toggling a menu, ...

1:55
Ruby on Rails - Web development basic Series: Stimulus.js Basics in Rails

0 views

11 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Rails API Mode for Building JSON APIs

Not every Rails app needs to render HTML at all, sometimes it just needs to serve JSON to a mobile app or a separate JavaScript ...

2:07
Ruby on Rails - Web development basic Series: Rails API Mode for Building JSON APIs

0 views

8 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Introduction to RSpec for Rails

RSpec is the most popular alternative testing framework in the Rails community, favored for its readable, English-like syntax.

2:08
Ruby on Rails - Web development basic Series: Introduction to RSpec for Rails

0 views

3 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Hotwire: Turbo Frames and Turbo Streams

Hotwire is Rails' modern default for building fast, dynamic pages, and Turbo Frames and Turbo Streams let you update just PART ...

2:06
Ruby on Rails - Web development basic Series: Hotwire: Turbo Frames and Turbo Streams

0 views

13 minutes 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

20 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Active Job and Background Processing

Some tasks, sending an email, resizing an image, are too slow to make a user wait for while a page loads. Active Job is Rails' ...

2:01
Ruby on Rails - Web development basic Series: Active Job and Background Processing

0 views

19 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Action Cable for WebSockets and Real-Time Features

Action Cable is Rails' built-in framework for WebSockets, letting your server push real, live updates to a page without the user ever ...

2:02
Ruby on Rails - Web development basic Series: Action Cable for WebSockets and Real-Time Features

0 views

16 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Active Storage for File Uploads

Active Storage is Rails' built-in system for attaching real files, images, PDFs, anything, to your models, without you writing any ...

2:20
Ruby on Rails - Web development basic Series: Active Storage for File Uploads

0 views

23 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Strong Parameters and Mass Assignment Protection

A submitted form sends a whole bag of data to your controller, but blindly trusting all of it is a real security risk, someone could ...

2:16
Ruby on Rails - Web development basic Series: Strong Parameters and Mass Assignment Protection

0 views

44 minutes 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

49 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Sessions and Login/Logout Flow

HTTP itself has no memory between requests, so Rails uses sessions, a small piece of data persisted across requests, ...

2:03
Ruby on Rails - Web development basic Series: Sessions and Login/Logout Flow

0 views

27 minutes 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

40 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Running and Rolling Back Migrations

Database structure changes over time, you'll add columns, remove them, and sometimes need to undo a migration entirely.

2:10
Ruby on Rails - Web development basic Series: Running and Rolling Back Migrations

0 views

1 hour ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: ActiveRecord CRUD Basics

ActiveRecord is what turns a plain Ruby model into something that can talk to your database, no SQL required. In this video you'll ...

2:00
Ruby on Rails - Web development basic Series: ActiveRecord CRUD Basics

0 views

58 minutes 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

47 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Full CRUD: Create and Update Actions

Create and update are where user-submitted form data actually becomes a saved (or changed) database record. In this video ...

1:50
Ruby on Rails - Web development basic Series: Full CRUD: Create and Update Actions

0 views

42 minutes ago

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

Almost every real app has related data, an article that has many comments, and a comment that belongs to one article.

2:16
Ruby on Rails - Web development basic Series: Associations: has_many and belongs_to

0 views

52 minutes ago

Web Development Tutorials
Ruby on Rails - Web development basic Series: Validations in ActiveRecord

Nothing stops bad data from being saved unless you explicitly tell your model to reject it, and that's exactly what validations do.

2:09
Ruby on Rails - Web development basic Series: Validations in ActiveRecord

0 views

57 minutes ago