John A. De Goes

Results 410 comments of John A. De Goes

@relrod If no one minds, perhaps we should use Jekyll so we can have Github Pages build it. Otherwise we need to have a separate deployment process and require Haskell...

Thanks, @retronym. @tonymorris, if you can transfer them to me or at me as an admin, I'm happy to do the setup.

Only an admin has the ability to create a new repository `scalaz.github.io`. /cc @tonymorris

@puffnfresh That should be enough to start. As I recall, domain names cannot be mapped to gh-pages (project docs). Are the existing contents important at all?

@puffnfresh Makes sense, I think the links can be located on the website in a "docs" section. Do folks have examples of OSS library websites they find quite useful and...

I like this idea. Now does anyone of the talent to create such a thing? 😆

@fommil I think @puffnfresh is an Admin and can do this. I would if I had appropriate permissions but I only have admin on the Scalaz repo (like you, btw—welcome...

We should discuss laziness here, too, which also has an impact on performance.

You can choose to not box: ```scala @specialized trait EqClass[A] { final def equal(l: A, r: A): Boolean } ``` But then you can't rely on `A` being an `AnyRef`,...

Perhaps numeric code can define its own specialized equals. Just thinking that for high-performance numerics, you can't really afford to box at the level of individual values... For the average...