David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
Ruby Rogues Panelist
David Kimura PRO said over 4 years ago on Using Bootstrap Themes :
  My thoughts are that you still have references to the javascript files in your application layout file. This is what is found in their template which seems to match with what you have in your errors. You probably don't need the jquery and bootstrap references, but may need to import in the jquery.easing and the resume javascript files.

  <!-- Bootstrap core JavaScript -->
 |   <script src="vendor/jquery/jquery.min.js"></script>
 |   <script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
 | 

 |   <!-- Plugin JavaScript -->
 |   <script src="vendor/jquery-easing/jquery.easing.min.js"></script>
 | 

 |   <!-- Custom scripts for this template -->
 |   <script src="js/resume.min.js"></script>

David Kimura PRO said over 4 years ago on Crud, filter, pagination and add skeleton loading like FB, youtube, dev.to with react and rails 6 :
I'm considering/planning a different path specifically for React, but I often feel that React deviates from the Rails standard way of doing things.

David Kimura PRO said over 4 years ago on Crud, filter, pagination and add skeleton loading like FB, youtube, dev.to with react and rails 6 :
I find that Stimulus is great. It's small and very powerful. It's also built by Basecamp, so it follows a lot of the Rails styles and philosophies. .

David Kimura PRO said over 4 years ago on Real Time Updates with ActionCable :
  Yea, from nearly every article I've read, this is one of the most common "overlooked" things. StimulusJS may be overkill for this kind of functionality, but it make it so easy to create "situational" websocket subscriptions based on which page you're on by simply adding in the controller name. Disconnecting from a subscription also seems to be a very overlooked topic.