Results 105 comments of Shish
trafficstars

Somebody made an even better version - https://evanw.github.io/thumbhash/

Also happens on iphone - with a short list, dragging always wants to drop things at the top of the list; with a long list, dragging at the bottom wants...

This is my current attempt at updating the generator to handle this case: ``` --- a/generator/src/Parameter.php +++ b/generator/src/Parameter.php @@ -75,7 +75,7 @@ class Parameter public function isNullable(): bool { -...

I needed this for my own use, and I don't see it getting merged any time soon, so I've fixed this (and merged a bunch of the other open PRs)...

Longer term I'd love to use User Classes for everything and get rid of the special cases for `is_anonymous` and `is_logged_in` - this PR is definitely a step forwards compared...

(Sorry for the delays here - this seems pretty great but I have some foundational bits I'd like to merge first and things at my day job got hectic which...

A bunch of sleep-deprived changes have half-un-knotted this, but also mean that ImageAddition and ImageReplace are now separate workflows -- ImageAddition gets the Transcode & Sanitize steps but ImageReplace doesn't....

Similar to DataHandlerExtension: ``` class DataFilterEvent { $file = "..."; } onDataFilter($event) { if(this->cares_about($event->file)) { // stop this DataFilter $event->stop(); // transcode to a new file $tmpfile = mktemp(); transcode($event->file,...

(Also TIL that `COUNT(*)` is literally interpreted as "count the number of rows" and it doesn't load all of the columns from disk despite what the `*` might imply, it...

It's not super-elegant, but if you want something that can be done _today_ - sites that want to be locked down like this currently run by: - disabling user signups...