fcosrno
fcosrno
Something like this: ``` php $from = strtotime('yesterday'); $to = strtotime('today'); $this->blog_model->get_by_date_range($from,$to)->limit(10); ``` This would look at 'created_at' and do the equivalent of this: ``` php $this->db->where("UNIX_TIMESTAMP(created_at)>=".$from); $this->db->where("UNIX_TIMESTAMP(created_at)
Is it possible to get a TLDR for Usage in the docs? Or is there a functioning example I can look at? I'd be happy to PR setup details to...
Any chance of quickly adding webp support? ImageMagick seems to allow webp [(See here)](https://www.imagemagick.org/script/webp.php). I tried the README example using webp: ```javascript var resize = require('im-resize'); var image = {...