GoRails is a series of screencasts and guides for all aspects of Ruby on Rails. Learn how to setup your machine, build a Rails application, and deploy it to a server.
…
continue reading
Every week you will be treated to a new Drifting Ruby episode featuring tips and tricks with Ruby on Rails, the popular web development framework. These screencasts are short and focus on one technique so you can quickly move on to applying it to your own project. The topics are geared toward the intermediate Rails developer, but beginners and experts will get something out of it as well.
…
continue reading
Tutorials, tips and tricks on the latest applications and technologies
…
continue reading
High quality videos demonstrating development in Ruby, Rails, Groovy, Grails, CSS, HTML, JQuery, and much more...
…
continue reading
Wir zeigen Ihnen in 120 Sekunden die Vorteile von LinguLab. Erstellen Sie ganz einfach verständliche, strukturierte und suchmaschinenoptimierte Texte.
…
continue reading
CSS-Tricks Screencasts is focused on showing you tips, tricks, techniques about web design. Code samples can be extremely helpful, but sometimes it is even more helpful to watch someone as they code. In CSS-Tricks Screencasts will show you real live CSS and HTML code being written and tested right on the screen. Topics will vary but will always center around design and usability.
…
continue reading
Learn how easy it is to apply web interaction using jQuery.
…
continue reading
Ruby 3.4 added 'it' to reference a block parameter with no variable name. Let's check it out!Oleh Chris Oliver
…
continue reading
Hotwire Spark is a new live reloading tool for Hotwire applications that uses morphing to update the page smoothly.Oleh Chris Oliver
…
continue reading
In this episode, we look at some precautions we can take with our production environment and setup recurring backups for the database.Oleh Dave Kimura
…
continue reading
1
Creating a Ruby Gem for Black Friday sales
26:22
26:22
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
26:22
Black Friday is a popular shopping holiday every year. In this lesson, we'll build a Ruby gem to help automate our Black Friday sales each year.Oleh Chris Oliver
…
continue reading
In this episode, we look at creating an entire infrastructure (proxy, load balancer, app servers, worker servers, database server, and a storage server) on our own hardware use Kamal to provision and deploy our Ruby on Rails application.Oleh Dave Kimura
…
continue reading
Import maps are great, but how do they work? In this lesson, we'll demystify import maps and see how they integrate with Rails' asset pipeline.Oleh Chris Oliver
…
continue reading
1
How to Configure Multiple Databases with Rails
20:07
20:07
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
20:07
Rails 8 now ships with multiple databases by default. In this lesson, we'll learn how the configuration works and how to deploy to production with environment variablesOleh Chris Oliver
…
continue reading
1
How To Add Impersonation To Rails Authentication Generator
16:10
16:10
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
16:10
The Rails authentication generator is an awesome new addition with Rails 8 so let's explore how we can customize it to support user impersonation.Oleh Chris Oliver
…
continue reading
In this episode we look at deploying a Rails 8 beta application to a Digital Ocean droplet. We'll also look at a scenario of deploying Action Cable broadcasts and another with recurring background jobs.Oleh Dave Kimura
…
continue reading
1
Customizing Rubocop Rails Omakase Rules
6:33
6:33
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
6:33
Rubocop Rails Omakase is just a starting place and provides a handful of rules.Oleh Chris Oliver
…
continue reading
1
Tests Without Assertions Warning in Rails 7.2
6:28
6:28
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
6:28
Rails 7.2 now warns if any test runs without assertions. It helps make tests that may raise errors more explicit and less prone to mistakes.Oleh Chris Oliver
…
continue reading
Large forms can be overwhelming to fill out, especially if not all of the fields are required. In this episode, we'll look at creating a stimulus controller to conditionally display fields based on the input of another field.Oleh Dave Kimura
…
continue reading
1
How to use Omakase Rubocop Linter/Formatter Rules for Rails
18:51
18:51
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
18:51
Formatting Ruby code can be a point of contention because the language is so flexible, but itOleh Chris Oliver
…
continue reading
1
Defer Job Enqueues After Transaction Commit in Rails 7.2
17:14
17:14
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
17:14
Enqueuing jobs inside of a database transaction is a common mistake that's now handled for you automatically in Rails 7.2Oleh Chris Oliver
…
continue reading
1
How to use the Browser Guard in Rails
14:56
14:56
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
14:56
The new browser guard in Rails 7.2 allows you to gate access to your application if a user is not using a modern browser.Oleh Chris Oliver
…
continue reading
1
How to use Dev Containers with Rails
24:07
24:07
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
24:07
Installing dependencies to develop and run your Rails applications locally can be a pain.Oleh Chris Oliver
…
continue reading
1
How to Rate Limit Requests in Rails 7.2
20:09
20:09
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
20:09
Rails 7.2 introduced a new rate limit feature that uses the Rails cache for preventing abuse of routes in your applications.Oleh Chris Oliver
…
continue reading
In this episode, we will upload a CSV file but need to pass it into a background job. This can prove to be difficult based on the hosting infrastructure so we'll explore some mechanisms to work around them. We'll also look to optimize Solid Queue to handle the large number of jobs.Oleh Dave Kimura
…
continue reading
1
Adding Honeybadger Insights To The RubyGem
22:42
22:42
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
22:42
Honeybadger's new Insights feature is awesome but required manually editing the yaml file to enable. Let's make a pull request to automate this.Oleh Chris Oliver
…
continue reading
In this episode, we look at setting up a mechanism to track the changes from an externally developed product. We'll also discuss branching strategies and how to develop your own features on top of Writebook.Oleh Dave Kimura
…
continue reading
1
Adding Timeouts to net-ssh with Mike Perham
1:20:22
1:20:22
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
1:20:22
In this lesson, we'll dive into some code to add timeouts for an issue with net-ssh with the help of Mike PerhamOleh Chris Oliver
…
continue reading
In this episode, we tackle the issue of slow-loading dropdowns with a high volume of options by implementing an asynchronous select using the Hotwire Combobox library.Oleh Dave Kimura
…
continue reading
Sometimes you need user input to be restricted to a certain range or limited like "greater than zero". While you can do this with conditionals, there are some useful tricks to do this better in Ruby.Oleh Chris Oliver
…
continue reading
Rubygems.org released a new feature called Trusted Publishing which allows you to release gems directly from GitHub Actions without requiring 2FA or long-lived API tokens. Let's see how it works!Oleh Chris Oliver
…
continue reading
1
Refactoring Local Variables To Methods
4:36
4:36
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
4:36
Sometimes you write code to get a feature working and stop there. With a little refactoring, you can extract local variables into methods that make testing and extending easier.Oleh Chris Oliver
…
continue reading
In this episode, we look at various tricks in Ruby on Rails as well as some other neat tricks.Oleh Dave Kimura
…
continue reading
1
One Time Payments With Pay And Stripe
39:24
39:24
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
39:24
In this episode, we will learn about handling one-time payments with the Pay gem and Stripe embedded checkout. This is a great approach for non-recurring payments and can be implemented very quickly.Oleh Chris Oliver
…
continue reading
In this episode, we'll look at setting up a fresh Windows 11 environment for Ruby on Rails development. We'll be looking at a few different tricks that makes managing a Windows environment much easier.Oleh Dave Kimura
…
continue reading
In this video, you'll learn about a feature of IRB, which is the ability to change context into an object.Oleh Chris Oliver
…
continue reading
Ever wonder how you could add audio to interactions on a website. In this episode, we'll explore adding sounds whenever someone clicks on a link or button.Oleh Dave Kimura
…
continue reading
Ever wondered how Rails controllers get their functionality? Let's see how we can add translation support to Rails API controllers by looking at the Rails sourceOleh Chris Oliver
…
continue reading
Adam McCrea walks through using Phlex to build components for views in your Rails applications. Phlex is a Ruby gem for building fast object-oriented HTML and SVG components using Ruby constructs: methods, keyword arguments and blocks.Oleh Chris Oliver
…
continue reading
1
How to use Mission Control Jobs in Rails
9:46
9:46
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
9:46
Mission Control Jobs is a UI for ActiveJob in Rails. It was announced at Rails World 2023 and just got released. It currently supports SolidQueue and Resque with more queue adapter support in the future.Oleh Chris Oliver
…
continue reading
1
Single Table Inheritance (STI) with ActiveRecord in Rails
13:24
13:24
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
13:24
Have models that store the same data but need different functionality? Rails provides Single Table Inheritance in ActiveRecord to solve this problem.Oleh Chris Oliver
…
continue reading
1
Send Notifications in Rails with Noticed gem v2
23:45
23:45
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
23:45
Notifications in Rails applications are even easier now with the new release of Noticed gem v2. We'll explore how to add notifications to your Rails app in just a few minutes.Oleh Chris Oliver
…
continue reading
Ruby 3.3.0 was released today and this lesson we're diving into the goodies included in the new version.Oleh Chris Oliver
…
continue reading
1
Syncing Repositories with Ruby Scripts - Part 2
37:59
37:59
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
37:59
In this lesson, we will pick up where we left off in the last part and package up our script into a gem that we can share. Along the way, we'll look at how we can spread responsibility across a few small classes to separate concerns and hopefully make theOleh Chris Oliver
…
continue reading
1
How to use Solid Queue in Rails with Active Job
13:24
13:24
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
13:24
Solid Queue is a database backed queue adapter for ActiveJob in your Rails apps. Instead of requiring an additional service like Redis, jobs are managed in the database itself and it's compatible with PostgreSQL, MySQL, and SQLite.Oleh Chris Oliver
…
continue reading
1
Syncing Repositories with Ruby Scripts - Part 1
33:02
33:02
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
33:02
In this lesson, we will be looking at getting a v1 of a Ruby script that will fetch, pull, and push across several repositories and remotes to keep our code up-to-date. Hopefully, it will give you ideas for other areas in your workflow where a simple RubyOleh Chris Oliver
…
continue reading
Discover how the new template locals work in Rails 7.1Oleh Chris Oliver
…
continue reading
In this lesson, we will look at a key element in what make the web, the web. Hyperlinks.Oleh Chris Oliver
…
continue reading
In this lesson, we will have a look at the elements used to markup text content in HTML.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - Form Parameter Naming Conventions In Rails
5:23
5:23
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
5:23
In this lesson, we will step briefly into the world of forms in Rails to see the naming conventions Rails uses to help us get structured data from form submissions in our Rails applications.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - Additional Input Types
19:19
19:19
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
19:19
In this lesson, we will explore the other types of input elements which we can use in our forms.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - List and Nav Elements
13:40
13:40
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
13:40
In this lesson, we will learn about how to display content in a list and how we can use list elements to create navigational aids for our webpages.Oleh Chris Oliver
…
continue reading
In this lesson, we will learn about how to display images on our webpages.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - Intro to Forms
17:42
17:42
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
17:42
In this lesson, we will lay down our foundational knowledge of forms on the web, knowledge that will be used throughout your career as a web developer.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - HTML Document Structure
10:35
10:35
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
10:35
In this lesson, we will learn about the basic structure of HTML documents.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - Button Element
11:18
11:18
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
11:18
In this lesson, we will explore the button element and some of the lesser known attributes/functionality that can be added to them.Oleh Chris Oliver
…
continue reading
1
HTML Learning Path - What is HTML and Why Learn It
5:50
5:50
Putar nanti
Putar nanti
Daftar
Suka
Menyukai
5:50
In this lesson, we will learn what HTML is and why we need to know about it.Oleh Chris Oliver
…
continue reading