Live data from Hacker News

Viewing profile — axiomabsolute

axiomabsolute

HN member
Joined
Sat, Jul 26, 2014, 2:41 PM UTC
HN karma
28
Public activity
15 items

About axiomabsolute

No profile information was provided.

Recent public activity

  1. comment
    Comment #14144715

    To be fair, I'm pretty sure some of the engineers at Google and Facebook have spent some time with the language and platform graybeards at Microsoft, Sun, or Adobe. Some of them ar…

  2. comment
    Comment #13521600

    It's a bit awkward to read on large screens. Long lines and whatnot

  3. comment
    Comment #13521576

    Inspired by https://bestmotherfucking.website/ body { margin: 1em auto; max-width: 40em; font: 1.2em/1.62em sans-serif; } That seems like a good start

  4. comment
    Comment #13499741

    The canonical text discussing how this is achieved refers to data structures optimized for immutability as "purely functional data structures". [1] These type of data structures ar…

  5. comment
    Comment #12697988

    https://github.com/angular/angular/releases 2.0 was released 28 days ago

  6. comment
    Comment #12666730

    So much this. Through a series of unexpected events, I ended up studying math in undergrad with no clue why or what I was going to do with it. My senior year I took a class called …

  7. comment
    Comment #11534256

    Based on the slides discussing Pypy performance, it looks to me that they're not confident that rewriting those 80k lines of C would provide sufficient performance. It might, but i…

  8. comment
    Comment #10973227

    > The Go maintainers have conflated what a library is and where a library is. That's an important distinction that should not be glossed over like this. I think this depends on whe…

  9. comment
    Comment #9395544

    It's not perfect, there's still some learning to do around the fringes where it interacts with emacs, but it is by far the BEST vik - like - but - not - vim experience I've seen so…

  10. comment
    Comment #9220663

    I believe Ceylon will actually further refine Int | Option[Int] to simply Option[Int]. Option[Int] is simply an alias to the type Int | Null, so Int | Option[Int] would become Int …

  11. comment
    Comment #8981351

    Doesn't this presume the x axis is time. What if the x axis is progress towards completion and the y axis is effort?

  12. comment
    Comment #8886297

    That kind of makes sense. How often do you view Tweets on a desktop? Even when I'm actively using a desktop browser, I usually check Tweets on my phone. Why? Because that's where I…

  13. comment
    Comment #8659344

    Features like Scala's implicit parameters could be argued to be a kind of "dynamic scope". True, the language is lexically scoped and most code is written expecting that, but it do…

  14. comment
    Comment #8659331

    Even in type inferred languages they serve some use, namely in avoiding mis-typed variable names. Languages which require "var" make a distinction between the intent of declaring a…

  15. comment
    Comment #8089865

    People often mistake the succinctness of vim's commands as an attempt to save a few keystrokes typing, but that's only a side benefit. The vim command structure makes it trivial to…