author avatar

sujay

Fri Jul 19 2024

A Rails engine is a pattern used to modularize a Rails application. These engines are self-contained applications with their own models, views, controllers, and routes, allowing them to function autonomously. They can be integrated into a larger Rails application. For example, in an e-commerce application, modules like orders, products, users, and payments can each be separate engines. #rails

author avatar

pavankumarreddy

Fri Jul 19 2024

Resolving gen_random_uuid() Error with PostgreSQL While Implementing CI When configuring CI with GitHub Actions, I encountered the following error:

PG::UndefinedFunction: ERROR:  function gen_random_uuid() does not exist

This error occurred because the gen_random_uuid() function is not available in PostgreSQL versions older than 11. UUID generation functions were only available through external modules like uuid-ossp and pgcrypto in these older versions.

To resolve this issue, I upgraded to PostgreSQL 13, which includes the gen_random_uuid() function to generate version-4 UUIDs. After upgrading, the error was resolved.

#rails #postgresql #uuid #ci-cd #github-actions

author avatar

adithya.hebbar

Wed Jul 17 2024

Jupyter Labs

• To install Jupyter Labs in Mac using Homebrew:

brew install jupyterlab

• To run Jupyter lab:

jupyter lab

This will open JupyterLab in your default web browser.

#python #homebrew

author avatar

giritharan

Tue Jul 16 2024

The fields_for helper in Rails creates form bindings without rendering a <form> tag. This is particularly useful for rendering fields for additional model objects within a single form.

Imagine you have a Book model with an associated Author model. You can create a single form for both the Book and Author models using the fields_for helper.

<%= form_with model: @book do |book_form| %>
  <%= book_form.text_field :title %>
  <%= book_form.text_area :description %>

  <%= fields_for :author, @book.author do |author_form| %>
    <%= author_form.text_field :name %>
    <%= author_form.text_field :email %>
  <% end %>
<% end %>

#rails #fields-for #rails-view

author avatar

pavankumarreddy

Tue Jul 16 2024

rails db:prepare in Ruby on Rails, This command sets up and prepares the database for my application, ensuring everything's ready to go, including populating the database. #rails #databasesetup

author avatar

soniya.rayabagi

Mon Jul 15 2024

Handling Terraform State Errors with S3 Backend: We use an S3 bucket to store our Terraform state. If Terraform fails to update the state, it creates an errored.tfstate file in your working directory. Reapplying will cause errors because the resources already exist. To fix this, push the errored state back to S3: terraform state push errored.tfstate

#devops #terraformstateS3 #errorhandling

author avatar

syedsibtain

Fri Jul 12 2024

In Ruby, exception handling is done using begin, rescue, ensure, and end blocks. Here's a brief overview of how they work in a general Ruby context:

begin
  # Code that might raise an exception
rescue SomeExceptionClass =&gt; e
  # Code that handles the exception
ensure
  # Code that will always run, regardless of whether an exception was raised
end

begin: Marks the beginning of a block of code that might raise exceptions.

rescue: Specifies what to do if a specific exception is raised. We can rescue multiple exception types by chaining rescue blocks.

ensure: An optional block that will always execute, regardless of whether an exception was raised or rescued. It's useful for cleanup code that must run no matter what.

#ruby #rails

author avatar

syedsibtain

Fri Jul 12 2024

Using Ruby's built-in URI::MailTo::EMAIL_REGEXP for email validation is generally better than using a custom regular expression due to its robustness, reliability, and maintenance by the Ruby core team.

class User < ApplicationRecord
  has_secure_password
  validates :name, presence: true

  # Using a custom regular expression for email validation
  validates :email, presence: true, format: { with: /\A[^@\s]+@[^@\s]+\z/ }, uniqueness: true
  
  # Using Ruby's built-in URI::MailTo::EMAIL_REGEXP for email validation
  validates :email, presence: true, format: { with: URI::MailTo::EMAIL_REGEXP }, uniqueness: true

end

#ruby #regex #rails

author avatar

syedsibtain

Fri Jul 12 2024

Fixing Image Rendering in Rails with Active Storage How to fix the error PG::UndefinedTable: ERROR: relation "active_storage_attachments" does not exist

This error occurs because Active Storage in Rails relies on specific database tables (e.g., active_storage_attachments and active_storage_blobs) to store metadata about attached files. If these tables do not exist, Rails cannot store or retrieve the necessary metadata for file attachments, resulting in the mentioned error.

By following these steps, we ensure that the necessary Active Storage tables are created, allowing Rails to store and retrieve image metadata correctly.

Run Active Storage Installation:

rails active_storage:install

Migrate the Database:

rails db:migrate

Restart the Rails Server:

rails server

Then in views we can simply use the helper and render the image

&lt;%= image_tag url_for(recipe.image), class: "w-full h-64 object-cover" %&gt;

#rails #activestorage

author avatar

soniya.rayabagi

Wed Jul 10 2024

Terraform Import : terraform import allows you to bring existing resources into Terraform's state management without recreating them. Syntax: terraform import &lt;RESOURCE_TYPE&gt;.&lt;RESOURCE_NAME&gt; &lt;RESOURCE_ID&gt; Example: terraform import aws_s3_bucket.bucket my-existing-bucket

#devops #TerraformImport

Showing 3 to 5 of 66 results