Tech Rumors
3 subscribers
235K photos
239K links
Download Telegram
dev.to

How to add bootstrap in Rails 7
How to add bootstrap in rails 7 Bootstrap is a popular CSS framework that can help you...
#ruby #rails #webdev #design
dev.to

What's New in Rails 7.1
Rails 7 was a welcome release that brought a lot of significant features and changes. On the backend,...
#ruby #rails
dev.to

Install Ruby on Rails on Ubuntu
We will be setting up a Ruby on Rails development environment on Ubuntu 22.04 LTS. Table of...
#ruby #rails #linux #beginners
dev.to

Why I Left React
With good reason, React is one of the most popular front-end JavaScript libraries available. It's...
#javascript #svelte #react #rails
dev.to

Mastering Eager Loading and Beyond! Rails 7
If you're building a web application using Ruby on Rails, you might find that your queries are...
#ruby #rails #beginners #webdev
dev.to

Metaprogramming, ancestors chain and super.
Let's imagine we are building DSL similar to ActiveRecord associations. class Person ...
#ruby #rails
dev.to

Using Docker for Rails development
Recently I got assigned to an old project and while luckily it had instructions on how to set it up...
#docker #rails #webdev
dev.to

Basic Understanding of Webhooks with examples
Webhooks are a way for an external service to notify your application about events that occur in the...
#ruby #rails #webhooks #beginners
dev.to

How to Setup Devise for User Authentication on Rails 7
If you are a frequent user of Ruby on Rails, you know that building authentication and user...
#webdev #ruby #rails #fullstack
dev.to

SearQ: A RESTful search engine
Hello everyone!!! Today I want to tell you about my personal Rails project, SearQ, a search engine...
#showdev #ruby #rails #api
dev.to

🧹 Tidying Up Your Rails Code: The Art of Refactoring, Marie Kondo Style
You know that feeling when you're in the mood to crack on some code and do a 'brain dump' of ideas...
#rails #refactoring #webcomponents #programming
dev.to

How to implement Pub/Sub pattern in Ruby on Rails?
Overview: In this article we'll provide a comprehensive guide to understanding and...
#ruby #rails #patterns #pubsub
dev.to

Active Record "merge"
Active Record is a part of the Ruby on Rails framework that provides an easy-to-use interface to...
#ruby #database #rails #beginners
dev.to

Stripe Connect onboarding with Ruby on Rails
Stripe Connect provides a suite of tools and APIs that allow you to create, manage, and scale your...
#stripe #rails #tutorial #webdev
dev.to

How to use Sidekiq in Rails 7: Background Jobs
In this blog, we'll explore how to use background jobs with Sidekiq in Rails 7 to handle long-running...
#ruby #rails #tutorial #webdev
dev.to

Is CDN Right for Your Rails App? and good for large scale applications?
As websites have become more complex and content-heavy, page load time has become a critical factor...
#ruby #rails #programming #beginners
dev.to

Say Goodbye to Messy Constants: A New Approach to Moving Constants Away from Your Model!
Overview: In this article, we will discuss the usage of constants in a Rails application....
#ruby #rails #patters #constant
dev.to

5 Tips to Optimize Your Ruby on Rails App's Performance
Performance is a critical factor for any application, and Ruby on Rails is no exception. Slow...
#ruby #rails #performance
dev.to

Solving a critical bug in the default Rails caching library
An odd coincidence On March 20th, ChatGPT users reported seeing conversations that were...
#security #ruby #rails
dev.to

Organize Business Logic in Your Ruby on Rails Application
With its strong emphasis on convention over configuration, Ruby on Rails has counteracted many...
#ruby #rails