git --fixup is very handy to amend a change to a previous commit. You can then autosquash your commits with...
Generate a password htpasswd -Bn firstname.lastname This will ask you for a password and use bcrypt (-B, more secure) and...
To attach files to your records, you will need a new database column representing the filename of the file...
In Ruby (almost) everything is an Object. While this enables a lot of powerful features, this concept might be confusing...
By default parallel_tests will spawn as many test processes as you have CPUs. If you have issues with flaky...
By default, your terminal emulator (Gnome Terminal, Terminator, etc.) sets some kind of window title to reflect the shell type...
When testing with Cucumber / Caypbara, iframes are ignored, so you can't interact with them. To interact with your iframe...
When loading a database dump created with pg_dump into your database, you might run into an error like
There is a common view that extracting text from a PDF document should not be too difficult. After all, the...
A flat folder structure can be cool if you have only a few folders but can be painful for huge...
Ruby's File class has a handy method binary? which checks whether a file is a binary file. This method...
"Open-source software (OSS) is great. Anyone can use virtually any open-source code in their projects." Well, it depends...
When an event listener on a DOM element throws an error, that error will be silenced and not interrupt your...
Speaker today is Henning Koch, Head of Development at makandra. This talk will be in German with English slides.
Sometimes it's nice to have some coloring in your logs for better readability. You can output your logs via...
Fixed #68: The "cucumber" command now fails early when @solo features fail. Added: The "setup" command now prints the db...
When text renders differently in Firefox and Chrome, it may be caused by a font alias that both browsers handle...
When using Chrome for Selenium tests, the chromedriver binary will be used to control Chrome. To debug problems that stem...
There are several ways to merge two (or more) PDF files to a single file using the Linux command line...
In Ruby on Rails, all objects have a useful blank? method. It returns true for nil but also for empty...
Download buttons can be difficult to test, especially with Selenium. Depending on browser, user settings and response headers, one of...
In Rails, we usually have a mailer setup like this: class MyMailer < ActionMailer::Base def newsletter mail to: 'receiver@host.tld',
The standard way to abort async code is that your function takes a AbortSignal { signal } property. The caller can use...
Cucumber has an output format that prints step definitions only. You can use this to find unused ones: Temporarily add...