[SOLVED] Decrypt S/MIME 'file.xml.p7m' with OpenSSL
Awesome, thanks for posting your solution. I'm sure at some point when I need to use OpenSSL directly, this will come in handy!

8
Ruby
Nested Comments in Rails Part 2, nested comments are showing in reverse order

3
Rails
Why is application.css working locally but 404 on production server?
The defaults are also manipulated by the `load_defaults` method which can tell Rails to use the defaults from a specific version of Rails. Could be something with that maybe, I'm not sure. https://...

6
General
how to process images with carrierwave and delay_job
I am trying to process the versions of the images with carrierware I want to send that process to a queue

2
Rails
Did I forget to do a migration?
Hey Christopher,
path helpers like `profile_path` are not methods on the User model. You can use `` in your view to link to a route that matches that name.
The Rails guides would be a good pl...

2
Rails
Displaying User presence when tracking online Users with ActionCable
Yup. It's actually going to be faster than querying your database because Redis is all in-memory.

3
Rails
Contact form that sends email directly from the page
Hi Kyle,
Here are examples that may help you get the form working:
* https://www.codementor.io/@simi736/send-email-using-mailform-gem-and-sendgrid-on-heroku-using-rails-5-eyy4zuwnl
* This ...

3
Rails
jquery_ujs and rails-ujs problem ajax page
hello everyone.
i am new in rails and ruby , i just started like 1 week ago .
i trying to do a chat between 2 people on rails, with jquery for the ajax part.
everything work, but i got th...

2
Rails
Flash alert/notification messages not displaying for the 'Log In' and 'Log Out' views
I found the solution to the problem I was running into for the Flash alert/notification messages not displaying with the correct styling for the 'Log In' and 'Log Out' views. The issue was resolved...

2
Rails
How do I resolve Rails 5.2.4.2 routing error: No route matches [GET] "/pages_about_path"?
Hi Chris,
thank you very much for providing the solution to the routing error I was running into.

4
Rails
Newbie question trying to understand collection_check_boxes method
As I understand it, `author_ids` is one of those Rails built-in magic merhods that gives you all the IDs of associated records. For example, if I have a School that `has_many :teachers` I can do `...

3
Rails
Working with action cable and remote redis server on development
I further inspected redis via ``redis-cli monitor`` and found out that ``ActionCable.server.broadcast`` publishes messages to local redis even though the remote redis url is mentioned in ``cable.ym...

2
Rails
Having Problems with has_one association driving me crazy
select_tag('entry[detail_ids]'
fixes it

2
Rails
Was wondering if there is a tutorial on how to setup background job server in Ubuntu with Rails
For background jobs on Ubuntu, you would normally use SystemD.
With sidekiq, you would:
1. Add the [Sidekiq systemd script](https://github.com/mperham/sidekiq/blob/master/examples/systemd/sid...

2
Rails