Skip to content
View jcuervo's full-sized avatar
💭
I may be slow to respond.
💭
I may be slow to respond.

Highlights

  • Pro

Block or report jcuervo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. rails-audit-claude-skill rails-audit-claude-skill Public

    Rails Audit Skill

    Shell 6 1

  2. activeadmin-sortable activeadmin-sortable Public

    Drag and drop sort interface for ActiveAdmin tables

    Ruby 2 80

  3. Using PostgreSQL Notify and Trigger ... Using PostgreSQL Notify and Trigger Functions in Ruby on Rails
    1
    # Using PostgreSQL Notify and Trigger Functions in Ruby on Rails
    2
    
                  
    3
    One of the advanced features of PostgreSQL is the `NOTIFY` and `LISTEN` functionality. These features enable real-time communication between databases and applications. Modern web applications that requires event-driven behavoir and real-time updates will benefit from this.
    4
    
                  
    5
    Combining these features with Ruby on Rails can create powerful real-time applications with minimum overhead.
  4. Rails 8 Authentication and Beyond Rails 8 Authentication and Beyond
    1
    # Rails 8 Authentication and Beyond
    2
    
                  
    3
    When you're kicking off a new application, one of the first things you tackle is setting up the authentication system. For ages, Devise has been the go-to solution for handling just about anything related to authentication in a Rails application.
    4
    
                  
    5
    Now, Rails 8 comes with a built-in, basic authentication generator. If needed, you can expand on this foundation to include features like registration, two-factor authentication, account locking, invitations, and activity tracking. Naturally, different applications will have different requirements, and adding all these extra bells and whistles can take time, configuration, and integration work.