Note Use yarn dedupe in Yarn v2+: https://yarnpkg.com/cli/dedupe This package only works with Yarn v1. Yarn v2 supports...
When your Rails application offers downloading a bunch of files as ZIP archive, you basically have two options:
Recently we detected a memory leak in one of our applications. Hunting it down, we found that the memory leak...
The linked content includes a few design patterns implemented with Ruby on Rails. What is the card indented to achieve...
This should be fixed in the latest LTS-branches of our mysql2 fork, 0.2.x-lts and 0.3.x-lts...
To read the Rails session from a Rack middleware, use env['rack.session']. It's an ActionDispatch::Request::Session object.
The inset CSS property is a shorthand that corresponds to the top, right, bottom, and/or left properties. It has the...
Issue: You have an app using jsbundling-rails and esbuild. After deploy, the assets built by esbuild are missing in...
There's a simple way in bolt to run commands from a file without caring about BASH escaping: # /home/user/foo.sh
In our monitoring, RabbitMQ queues like aliveness-test may show up as unresponsive, with a ping timeout after 10 seconds...
Beim schreiben von Scripts ist es nützlich Tests zu schreiben um bei Änderungen nicht alles nochmals manuell testen zu müssen...
Bei Automatisierungsaufgaben kannst du dich nicht immer auf fertige Tools verlassen. Häufig musst du eine Schnittstelle zu einem bestehenden System...
Siehe Advanced git [2d] aus dem Developer Curriculum.
In case you have trouble with the zeitwerk autoloader, you can check out the documentation Autoloading and Reloading Constants and...
Instead of using Puppet exported resources you can use the puppetdb_query feature. This can result in more complex code...
You can use the code below to check whether the browser can make connections to the current site: await isOnline...
I recently wanted to add a model for address information but also wanted to add a unique index to those...
Imagine these models and associations: class Deck < ApplicationRecord has_many :cards end class Card < ApplicationRecord belongs_to :deck, optional: true...
When changing code in mailers, updating the corresponding mailer preview can be forgotten very easily. Mailer previews can be tested...
When redirecting you should take care to use the right HTTP status code. From controllers When redirecting from a controller...
If you have a JS fiddle, you can open it in fullscreen by appending /show to the URL. Example: https://...
Recent IRB versions include a multi-line autocomplete which may be helpful to novice users but can be distracting.
If you get an error message like this: You have already activated some-gem 1.2.3, but your Gemfile requires some...
While verifying doubles in RSpec is a good default, it is limited in the amount of methods it actually is...