Matthew Dapena-Tretter
Matthew Dapena-Tretter
Ah, I see. DRY is usually used to refer to duplication in the developer-written source code—not the compiled output—but I see what you're getting at now. Yeah, if you do...
Well they aren't [pseudoclasses](https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-classes), but yeah. You still write them "inline"; the generation of classes is just a behind-the-scenes optimization—an implementation detail of the compilation. As for autoprefixer, there are...
I agree that JS's ternary isn't as ideal as but for the simple case you could just use JS's short circuiting logical operators, right? ``` js {x && ValueA} ```...
> > ...but JSX isn't the right place to address that IMHO. > > I guess that's the point of this discussion, there is definitely a point where JSX could...
do expressions are _exactly_ the kind of thing I was hoping for! Thanks for the link @sebmck! If the "statement problem" is solved in JS land like that, the only...
Something worth noting is that you don't even have to let the player play until the last frame (`STATE_ENDED`) to see this! If the player is paused, each time it's...
No project in particular. We were just looking for something like this for a utility that would be used in several closed-source projects that we're paid to build, but the...
I know how I want to implement this, but it's going to take some effort and, since I'm not sure there's much of a demand, it could be a while…
What do you want to get the URL from?
Hm…the README seems accurate to me; you can generate processed image files from any image—but you need to pass a file object (not a URL).