Ryan Hendrickson
Ryan Hendrickson
#172741 was merged so this can be closed, I think.
I also vote for reusing an existing Brief tab, if there is one in the window.
In my personal preference order, from best to worst (but still acceptable): 1. On button click, activate a Brief tab in this window if it exists; if not, activate a...
Try this? ```css .headlines-view > #feed-content article:nth-of-type(even) .headline-header { background-color: aliceblue; } ```
There's definitely a bug here (seems likely to be an unforeseen consequence of #3915), but based on the fact that you're providing a string message you probably want `crashWith` (`crash`...
I don't know what the best resolution to this would be. #3915 was founded on the assumption that eliminating a class constraint by supplying a class dictionary is a pure...
> Would the fact that it's a nullary class be a special enough case for? Similar to the fact `Partial` is weird, nullary type classes are generally. If `Partial` had...
That example blows the stack even in old versions of PureScript. The `Foo Int` instance, having no constraints, was always constructed eagerly at the top level. If you add a...
@MonoidMusician If you mean something like this: ```purs main = unsafePartial do let x = \_ -> crash pure unit ``` then no, this is still unsafe as long as...
Yeah, that's basically a restricted `Effect`—maybe the sort of thing that the old `Eff` type was good at representing? I think the (tempting, dangerous) appeal of `Partial` over that encoding...