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

itsterry PRO said over 3 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 about 3 years ago on Turbo Native for iOS :
Another great ep. Thanks Dave!

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