Hi Pete, nice video! Thanks for sharing. It would be great to see some use case of a view _component with turbo_frame and stimulus that applies tailwind effects... something like the slide over example but with some sliding effects applied with stimulus (?. Thanks again for the videos, cool stuff
Excellent content! If I may make a suggestion for a video idea, could you share how you handle newsletters in your applications? Specifically, how you send emails for new content and what you include in your newsletter model versus using third-party services.
That’s a great idea! In the past I’ve synced contacts to Mailchimp, but for rapid ruby I just built it into the app and used postmarks bulk send API. Would you find that interesting?
@@rapid-ruby I do, what made me suggest this is after I saw the first newsletter you sent for rapid ruby and it seems custom, and i thought it'd be helpful for folks to find more about how to do that, sending both automating & custom newsletters in rails apps.
Wow, that’s neat. So you can make your fragments like components from single page applications. I’ve been using react for the last three years but now that I’m between jobs, I’m picking Ruby back up since I played around with Ruby seven years ago. I was going to go with API only mode for Ruby on rails and just use react for the front end. But then I was talking about it in the Reddit about Ruby on rails, and they were saying things like why would you go out of your way to make an API when you can just use ERB and hotwire and all that stuff. And then I thought about it, yeah, I would have to write all of that boilerplate API code, so that the react front end could actually make request to the rails back end. I’m sure there’s a library that could come up with the Chava script API client so that in the reacts front end, all I have to do is call premade methods. But still, it sounds like going with ERB should be way simpler if I actually hypothetically knew how to do it all.
Hi, I have 2 tabs | a href='#tabs-spend-by-account' | = link_to '#tabs-spend-by-service', data: { turbo_frame: "spend_by_services" } | and in 2nd tab's content area I have a "turbo frame with src" = turbo_frame_tag "spend_by_services", src: spend_by_services_ubs_user_bills_path do (turbo frame with src loads the content automatically as the page loads fully) what I want is to load the content of 2nd tab "turboframe with src" on clicking of 2nd tab. How can I do it? please suggest
Quality Ruby/Rails content is on the rise. This is awesome, I feel so good about the future of this ecosystem :)
Pete, you are the best teacher.
I usually get motivated by watching your videos.
Thank you for the effort to publish this.
Thank you Dennis, means a lot!
That logo is awesome
Please don't stop making Rails content. So glad I found your channel
Hey Pete, I'm learning a lot from your videos and being inspired. Thank you for sharing.
Hi Pete, nice video! Thanks for sharing. It would be great to see some use case of a view _component with turbo_frame and stimulus that applies tailwind effects... something like the slide over example but with some sliding effects applied with stimulus (?. Thanks again for the videos, cool stuff
Hi Alexis, thanks for the idea, I’ll have a think about how I could best show this.
Hotwire is life-changing!
Excellent content! If I may make a suggestion for a video idea, could you share how you handle newsletters in your applications? Specifically, how you send emails for new content and what you include in your newsletter model versus using third-party services.
That’s a great idea! In the past I’ve synced contacts to Mailchimp, but for rapid ruby I just built it into the app and used postmarks bulk send API. Would you find that interesting?
@@rapid-ruby I do, what made me suggest this is after I saw the first newsletter you sent for rapid ruby and it seems custom, and i thought it'd be helpful for folks to find more about how to do that, sending both automating & custom newsletters in rails apps.
Nice video, thanks!
Wow, that’s neat. So you can make your fragments like components from single page applications. I’ve been using react for the last three years but now that I’m between jobs, I’m picking Ruby back up since I played around with Ruby seven years ago. I was going to go with API only mode for Ruby on rails and just use react for the front end. But then I was talking about it in the Reddit about Ruby on rails, and they were saying things like why would you go out of your way to make an API when you can just use ERB and hotwire and all that stuff. And then I thought about it, yeah, I would have to write all of that boilerplate API code, so that the react front end could actually make request to the rails back end. I’m sure there’s a library that could come up with the Chava script API client so that in the reacts front end, all I have to do is call premade methods. But still, it sounds like going with ERB should be way simpler if I actually hypothetically knew how to do it all.
How is it working for you 5 months later?
send theme please
also the icon
Hi, I have 2 tabs
| a href='#tabs-spend-by-account' | = link_to '#tabs-spend-by-service', data: { turbo_frame: "spend_by_services" } |
and in 2nd tab's content area I have a "turbo frame with src"
= turbo_frame_tag "spend_by_services", src: spend_by_services_ubs_user_bills_path do
(turbo frame with src loads the content automatically as the page loads fully)
what I want is to load the content of 2nd tab "turboframe with src" on clicking of 2nd tab.
How can I do it? please suggest