David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said over 3 years ago on Creating Command Line Applications :
I normally favor [].tap, but I was having issues with my keyboard.  It’s strange, but I did get a replacement.

I haven’t explored too many rake task arg methods as I usually try to keep those arg-less.

David Kimura PRO said over 3 years ago on Adding Custom Buttons to Action Text :
I think my main issue with tables on WYSIWYG editors is that they are easy to create but become very difficult to manage. For example, you create a 2x3 table, but later want to add an additional column.

David Kimura PRO said over 3 years ago on Adding Custom Buttons to Action Text :

  , I would hide the button with something like


trix-toolbar .trix-button--icon-heading-1 { display: none; }

David Kimura PRO said about 3 years ago on Importmaps in Rails 7 :
  I would probably use their provided gem for bootstrap. But for other things where a gem isn't provided, I am not quite sure of the best method yet. I think that this will be one of the growing pains as we'd have to find out the best routes for these things. I can see other libraries like FullCalendar where this too would be a concern.

# Gemfile
gem 'bootstrap', '~> 5.1.0'

# app/assets/stylesheets/application.scss
@import "bootstrap";

# app/javascript/application.js
//= require "bootstrap"


David Kimura PRO said about 3 years ago on Slim Select with Stimulus :
  I found it a bit strange on single selects not behaving the same as multiple selects.