Jordan Danford
Jordan Danford
What about making the duty cycle a parameter? Seems unnecessarily restrictive to have multiple implementations with fixed values.
I'd like to start working on this, assuming no one else is.
What's the long-term plan for Servo handling external protocols like `mailto:` and `webcal:`?
Okay, at that point the URL handling code will need to be integrated with other parts of the system, instead of relying on something like a simple regex. I'm not...
> http:8080 should not be special-cased This is one of those cases where real-world behavior deviates from the spec – Firefox and Chrome both interpret URLs like `http:8080` and `file:/etc/hosts`...
That's what the `flow check` command is for, but even on `master` it comes up with a bunch of errors, so it might be hard to get much out of...
I love [timeago](https://github.com/rmm5t/jquery-timeago), so I would appreciate this feature. Do you know of an existing fuzzy timestamp library for Rust? I can't seem to find anything on Google.
Good point! Are you interested in implementing this yourself, or do you want to leave that to someone else? I'd be happy to, assuming @ogham is okay with the general...
There isn't a built-in solution, but you can do it with weighted averaging: ```js const color = chroma("rgba(255, 0, 0, 0.5)"); const alpha = color.alpha(); const colorWithFullAlpha = color.alpha(1); chroma.average([colorWithFullAlpha,...
`Channel.send()` creates and returns a new `Gain` node, so it looks like calling `.dispose()` on that node will do the trick