David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
David Kimura PRO said about 6 years ago on React Native and Ruby on Rails API Only Applications :
Thanks   . That's really frustrating about frameworks like React and React Native. It's almost like very little forethought was given. I know that even Rails has breaking changes, but some value can be taken from older outdated articles. Regardless, I'll have to look at some of the recent changes to see how things have progressed.

David Kimura PRO said about 6 years ago on In Depth with Docker Compose :
  Is the postgres instance running? You can run docker container ls to see.  You can also run docker logs CONTAINER_NAME to see if there is something else weird going on.

David Kimura PRO said about 6 years ago on Rails dynamic role management :
Did you want to see this from scratch or is there a gem in mind?

David Kimura PRO said about 6 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 about 6 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.