itsterry PRO
Joined 2/7/2020
itsterry PRO said about 4 years ago on Database Encoding :
REALLY useful episode - thank you!

itsterry PRO said almost 4 years ago on Cropping Active Storage Uploads :
Hang on a minute!

crop_width and crop_x are saved as strings, so...

crop_width = '1.0'
crop_x = '2.5'

(crop_width + crop_x).to_f # 1.02

I think you may want..

crop_width.to_f + crop_x.to_f # 3.5
(I haven't refactored that, but I would)

Unless I'm wrong (happy to be wrong: please tell me if so), the version in the episode may trip up a few people

Meant constructively, as ever!

itsterry PRO said over 3 years ago on Turbo Native for iOS :
Another great ep. Thanks Dave!

itsterry PRO said over 3 years ago on Multiple Resources with Devise :
Great ep, Dave (again) - thank you!

itsterry PRO said over 3 years ago on Adding Custom Buttons to Action Text :
Hi Dave

This is a great tutorial: thank you!

I'd love to see how you'd go about adding table functionality to Trix. It's something that many people have been looking for without success over the past few years (https://github.com/basecamp/trix/issues/539). 

I've tried looking at it myself (the Trix homepage at Github is useful), but my JavaScript skills aren't all they should be!

T