Emily Eisenberg
Emily Eisenberg
Not sure if this was your problem, @SciLor, but I was having the exact same problem. For me I discovered that `arc4random()` was trying to read from `/dev/urandom`, but since...
That only works for escaping `$` inside of math, but not outside of it. @PaulSohn can you give an example of what you're trying to do?
> I'm okay with the property key and the generated classname not exactly matching up, I suppose. Prefixing with a- if the name doesn't start with a letter, and stripping...
Thanks for the report! Yeah, that definitely should work. I wonder why it doesn't... Can you be more specific about what you mean by "This doesn't work"? Does it throw...
Most of the styles at Khan Academy are after the component. We don't have eslint's no-use-before-define rule on, so we don't encounter that problem, but I can see that might...
@kevinSuttle The hashes are used explicitly so that when we rehydrate after server-side rendering we don't generate duplicate styles. They aren't just added for uniqueness. Is there some problem with...
This has already been discussed a little bit in #63. In order to render styles that the page needs in the ``, we need to know all of the `css()`...
What if we just hash the `src` value and use that as the key? We already have a hashing function, it would be pretty easy to swap that in. Or...
Hi @couturecraigj! Sorry you're running into this issue. Are you experiencing this error on the server-side rendering server, or in the client? What does your code look like for doing...
@ecozoic See #62. Basically, Aphrodite buffers its style insertion and performs it async, which means that even if `document` is defined during the test, it might not be defined after...