Heroku Routers & Mesh Layer
The mesh layer is a special architectural design of Heroku's. Each web request is routed through one of several high-powered routers, called "the mesh layer,"...
The mesh layer is a special architectural design of Heroku's. Each web request is routed through one of several high-powered routers, called "the mesh layer,"...
Pipelines are a modern way to work on Heroku. From the Heorku docs: A pipeline is a group of Heroku apps that share the same codebase. Each...
Meet "the Dyno"
With Ruby 2.0 we now have first-class support for keyword arguments in our method parameters. ("First class" means it is a fundamental part of the...
1/ Everything is a Type The foundation of TypeScript is that everything — absolutely every variable, constant, or object — is a type. You will always be...
Ruby on Rails has special under-the-hood magic that will patch four methods onto your models for each enum value you specify. That means if you...
• Can be used to specify notifications for certain people or teams. (---) (---) • Can be used with a path that will notify the...
Consider the following method. Assume that the call to thing.method_that_possibly_raises! might raise an app exception we will call SomeAppException? def some_method thing.method_that_possibly_raises! ensure return thing end What we...
(Part 1 of 2) Shakapacker is a strong alternative to both JSBundling and Importmaps. It is the official successor to Webpacker, the gem in Rails...