David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
David Kimura PRO said about 4 years ago on Null Object Pattern :
  checkout this episode https://www.driftingruby.com/episodes/editors

It's still pretty much true on my setup. The only difference now is Settings Sync is a build in feature and I also use the Remote - SSH and Remote - Containers extensions.

David Kimura PRO said about 4 years ago on Label Maker with Ruby :
I have a bad habit of not being consistent. It's something that doesn't bother me as far as styling goes and I think I may have even turned off that Rubocop warning. 

David Kimura PRO said about 4 years ago on Shopping Cart with Turbo :
I create each episode from a template which can be found at https://github.com/driftingruby/template

Honestly, the template if very bare. It uses esbuild/css-bundling (see the README) and installs bootstrap with a very simple layout with a navigation bar. That's really all the template does.

David Kimura PRO said about 4 years ago on Hotwire Modals :
  , you can probably mitigate this from a visual perspective by removing the "fade" class

<div class="modal fade" data-controller="modal">

to 

<div class="modal" data-controller="modal">

David Kimura PRO said about 4 years ago on Hotwire Modals :
That's strange, I removed the fade class, and while it did remove some of the animation functionality, it did properly display the persisted form while submitting and getting a server response.