Live data from Hacker News

Viewing profile — bilboa

bilboa

HN member
Joined
Wed, Apr 19, 2017, 4:26 PM UTC
HN karma
39
Public activity
24 items

About bilboa

No profile information was provided.

Recent public activity

  1. comment
    Comment #37125375

    I suppose the main reason I think it's hyperbolic is because I disagree with you that this is a critical feature. First of all, I've written lots of scores with MuseScore and Sibel…

  2. comment
    Comment #37124533

    I downvoted your comment, not because I'm a MuseScore apologist, but just because calling an extraordinarily complex piece of software like this "trash" just because it's missing a…

  3. comment
    Comment #37042745

    Exactly. I did get the impression that the author is more familiar with OCaml than Rust. However I don't think they were claiming Rust's greater low-level control makes it inferior…

  4. comment
    Comment #33696889

    It seems too early to say "no one else is able to replicate it", given that the claim was only posted to Twitter yesterday, and the Gizmodo article linked to here was only posted 4…

  5. comment
    Comment #33265947

    It's the opposite for me. Typing seems to have gotten easier. Especially now that Apple added their own swype-like functionality, I've found I'm more willing to type longer pieces …

  6. comment
    Comment #32318819

    The point though is that the tone of his article seems to suggest that this is some scary "gotcha" of the language, whereas some of us consider this to just be the expected behavio…

  7. comment
    Comment #31503714

    I'm puzzled by your statement that "Coaxing the engine to use an index is much harder, if not impossible in postgres so far". If this were true it would make Postgres pretty much u…

  8. comment
    Comment #29866726

    You're interpreting the headline too literally if you what you took from it was that people care about the actual color of the messages. The point is that they care about preservin…

  9. comment
    Comment #28610261

    While you may not have to directly call malloc and free in Rust, the memory management still feels very manual compared to a language with GC. When I want to pass an object around …

  10. comment
    Comment #28314793

    Sounds like you want jsonschema.

  11. comment
    Comment #28203081

    There are other reasons for deciding not to sell a house after advertising it other than pulling a bait-and-switch scam. Maybe the seller changed their mind about selling it, or re…

  12. comment
    Comment #26076964

    Yes, the variable names in the case patterns are treated like variables on the left hand side of an assignment statement. Whatever value they may have had before is irrelevant. A p…

  13. comment
    Comment #24616891

    >> This comes from the Ada design philosophy to be explicit in everything and to prefer the use of keywords over symbols. This may be true, but it doesn't contradict the claim that…

  14. comment
    Comment #22825743

    Python's time.time() call is also going to be affected by system time changes and thus not guaranteed to increase uniformly. So Date() in Swift and time.time() in Python are the sa…

  15. comment
    Comment #17454221

    I agree with you. I'm actually a big fan of both Haskell and F#, and use Haskell especially for a lot of my hobby projects. However the idea that either of them make a better scrip…

  16. comment
    Comment #17453736

    I found the official docs on how python special methods are looked up. https://docs.python.org/3/reference/datamodel.html#special-l... Apparently the runtime is even more picky tha…

  17. comment
    Comment #17452560

    This is because the actual translation of `a + b` is a little more complicated. It's something like this: if '__add__' in a.__dict__: try: return a.__add__(b) except NotImplemented…

  18. comment
    Comment #17129627

    Agreed. I've read accounts from several elite players who were told they wouldn't be taken as seriously if they played a contemporary instrument compared to if they played a Strad …

  19. comment
    Comment #17128203

    I think most people understand that rarity and antiquity have an intrinsic value to many people, including for violins. If someone said they value their Stradivarius because it's a…

  20. comment
    Comment #17037906

    The other problem that T solves and nested doesn't is being able to reuse a spec. Once you have a spec, whether created with T or directly, you can call glom multiple times with th…

  21. comment
    Comment #16022389

    Apparently constexpr is like "inline". Just as the inline keyword doesn't actually guarantee that the compiler will inline a function, so constexpr doesn't require the compiler to …

  22. comment
    Comment #14414279

    Exactly. The author wasn't advising against using higher order functions in general, just certain ones like comp and partial, which are easily replaced by anonymous functions. I.e.…

  23. comment
    Comment #14215466

    Yes, that's what "standby" tickets basically are. Some airlines would (not sure it's still a thing) sell you a "standby" ticket for cheaper than a normal ticket, which meant you sh…

  24. comment
    Comment #14149010

    The Lambda API is an HTTP API. http://docs.aws.amazon.com/lambda/latest/dg/API_Reference.ht...