David Kimura PRO
Joined 7/18/2015
Drifting Ruby Owner
David Kimura PRO said over 7 years ago on Working with Subdomains :
Inspect your browser dev tools to see if there are any errors in loading the assets. It could be CORS policy blocking the assets.

David Kimura PRO said over 7 years ago on Working with Subdomains :
This is usually something with the browser that is blocking the asset. It could be a browser extension or something.

David Kimura PRO said over 7 years ago on Upgrading a ruby on rails application :
The upgrade from 5.2.0 to 5.2.2 is fairly safe. There wasn't much changes. Have you looked at this episode yet https://www.driftingruby.com/episodes/upgrading-ruby-on-rails-versions?

David Kimura PRO said over 7 years ago on Upgrading a ruby on rails application :
Yes. You would upgrade the application locally and test everything to ensure that it is working properly. If you have a staging environment, it would then be best to test within there to make sure that you're not breaking functionality. This step is really important because we sometimes have services that are not "available" during development. For example, if you do file uploads to S3 in production, but in development, you use local disk, then all of your local development tests will not be touching the S3 APIs or code. This would be considered a risk when going to production, but a staging environment may catch any potential issues. This is partly why I always try to mimic my production environment as closely as possible when developing. So in the previous example with S3 file uploads, I would use minio locally to mimic the S3 APIs for file uploads. It makes the development environment a bit more complicated, but would expose any potential breaking changes earlier on in the upgrade process.

David Kimura PRO said over 7 years ago on Managing Terminal Sessions :
Yea, that's a pretty cool one too. I like the `send-keys` feature, but don't know how often I would actually use it. For the most part, I needed something simple and haven't messed with tmux much. However, for tmux users, that would be a nice addition.