Skip to content

Instantly share code, notes, and snippets.

Maceió: A Coastal Gem of Brazil

Nestled along the northeastern coastline of Brazil, Maceió stands as a captivating city that seamlessly blends natural beauty, cultural richness, and a vibrant atmosphere. As the capital of the state of Alagoas, Maceió has earned a reputation as a tropical paradise, drawing visitors with its pristine beaches, historic charm, and warm hospitality. This text explores the multifaceted allure of Maceió, from its sun-kissed shores to its cultural treasures, providing an in-depth look at what makes this city a unique destination.

Geography and Climate:

Maceió enjoys a prime location on the easternmost tip of South America, bordered by the Atlantic Ocean to the east. Its coastal setting infuses the city with a refreshing maritime breeze and stunning ocean views. The city's tropical climate ensures consistently warm temperatures throughout the year, with an average high hovering around 28-30 degrees Celsius (82-86 degrees Fah

Update notes for the book Testing Rails:

Chapter 2, page 23:

After defining the LinksController class, the book mentions:

Failure/Error: visit root_path
NoMethodError:
  undefined method `action' for LinksController:Class
@neilvcarvalho
neilvcarvalho / Annotations.md
Last active March 26, 2022 17:29
Hotwire study annotations

Definitions

  • Stimulus: a lightweight JavaScript framework when it's not needed to do a roundtrip to the server
  • Turbo Drive: automatically captures any link, merges the already loaded header to the response header and replaces the loaded body with the response body
  • Turbo Frames: replaces only a specific part of the body
  • Turbo Streams: handles multiple responses, like appending something or replacing something on the body

Turbo Frames

require 'benchmark'
require 'prime'
limite = 1000000
Benchmark.bm(7) do |x|
# x.report("Mais simples") do
# primos = [2]
# (3..limite).each do |dividendo|