Tim Dowling PRO
Joined 1/28/2019
Tim Dowling PRO said over 3 years ago on StimulusJS, Active Storage and DropzoneJS :
Thanks for pointing me in the right direction, it was working with the direct upload, but I was passing the blob signed id to the controller as a string rather than an array, this worked below:

 let formData = new FormData()
            formData.append("event[evidences][]", [this.hiddenInput.value] )
            Rails.ajax({
              url: this.data.get("update-url"),
              type: "PATCH",
              data: formData
              
            });

Tim Dowling PRO said over 2 years ago on Slim Select with Stimulus :
Slim select seems to throw a CSS export error on the latest version of webpacker just FYI incase anyone is running into that issue

Tim Dowling PRO said over 2 years ago on Florrick :
This is an oldie  !! But very helpful as i've just started using this with Trix. However, i need to loop through a has many association (quote has_many line_items) and was wondering if you have any pointers on this? The belongs_to relationship works great

Tim Dowling PRO said over 2 years ago on Deployment alternatives :
   It would be cool to maybe do a series adding to your app runner episode, and do GCP cloud run, DO App Platform and Azure Container App (i think?).Personally i would love to see buildpacks used instead of docker, but that's because im really interested in using them but haven't had the time to explore them

Tim Dowling PRO said about 2 years ago on Deployment alternatives :
   Just something i've been playing with, GCP Cloud Run now supports Ruby with Buildpacks, making it a little more 'Heroku' like. PG gem fails to install so im trying to fix this at the moment, just thought i'd give the heads up :)