Live data from Hacker News

Viewing profile — evomassiny

evomassiny

HN member
Joined
Mon, Dec 04, 2017, 4:30 PM UTC
HN karma
42
Public activity
24 items

About evomassiny

No profile information was provided.

Recent public activity

  1. comment
    Comment #49067354

    About a third of those fires are criminal [0], yes that's a lot, but the majority are still accidental or natural. Even the criminal ones are only enabled because of the dry vegeta…

  2. comment
    Comment #48992980

    Could you duplicate `RECORD_INST` before each `INSTRUCTION_N`, so that: ``` INSTRUCTION_1: // subroutine 1 ip++; goto *dispatch_var[*ip]; INSTRUCTION_2: // subroutine 2 ip++; goto …

  3. comment
    Comment #48990053

    Can't you solve it using hash trees (or Merkle trees) ? You tag each computation nodes with a hash of its dependencies and some constant salt, that gives you an ID which identifies…

  4. comment
    Comment #48444207

    In the same vein, there is the "tournesol"[0] browser extension, which plugs its own recommandation algorithm into YouTube, to promote educational videos [0]: https://tournesol.app…

  5. comment
    Comment #42695988

    An interesting project, but it seems to be in its infancy :) I definitely want an actor based language to play with, and something with a strong type system would be perfect. gleam…

  6. comment
    Comment #41982696

    I've nothing to add to the conversation, but I jump on this oportinity to tell you that i like the content you've made with Adam Barth on yt very much, have a great day :)

  7. comment
    Comment #41386532

    hyperref does this with the "\ref{}" command, it can link to any defined \label

  8. comment
    Comment #41299700

    I thought go binaries were purely static, aren't they ?

  9. comment
    Comment #40032329

    It doesn't really make sense to compare a 350T sail boat with a super tanker, a comparable diesel boat produce 36g per ton per km(according to the same report), the "grain de sail …

  10. comment
    Comment #40025259

    According to [0], a typical container ship generate 12.5 g of CO2 per ton per km, which means that one trip from France to NY with 350T of cargo would release about 35T of CO2 in t…

  11. comment
    Comment #40024818

    I don't really understand how the yearly tonnage per person is relevant here

  12. comment
    Comment #40024470

    How is 360$ of fuel more eco-friendly than 0$ ? I don't get your argument

  13. comment
    Comment #40024209

    This is their second boat,and they already do exactly that. So far it's been quite successful

  14. comment
    Comment #40024072

    Could you elaborate on why this is not a method by which carbon emissions can be significantly reduced ? This is only the second boat of a small company, they most likely don't hav…

  15. comment
    Comment #37578237

    Population count is just one of many metrics when evaluating the "niceness" of a place. Maybe "destroyed" is not the best way of describing the effect of car dependency (my english…

  16. comment
    Comment #37576962

    Houston comes to mind, it has a very low walkbility index (see https://pedestriansfirst.itdp.org/ ).

  17. comment
    Comment #37576647

    This is a valid point, I don't know of any "bus only" highway but it could a good alternative.

  18. comment
    Comment #37571493

    a couple of reasons: * cars destroy cities, they take huge chunks of the public space, * air pollution, * noise pollution, * safety, * fast floods favored by impermeable soil cover…

  19. comment
    Comment #36905768

    Agreed ! Plus, the ability submit a bunch of tasks, and to block until _one_ task completed (akin to `epoll_wait` of tokio's `select`) makes it quite useful. I don't know of a use …

  20. comment
    Comment #35083129

    For a fair comparison, hybrid cars can easily do 50+ MPG. For instance the "toyota yaris hybrid" is supposed to run 62MPG (3.8L/100km).

  21. comment
    Comment #34956776

    > Just like `zero | one | two` is not equivalent to `Option ` Isn't it ? both cases represent a type than can express 3 variants

  22. comment
    Comment #34956267

    exaclty, whether you call it 'Nothing' or 'null' does not matter, as long as it represents a distinct type than 'true' or 'false'

  23. comment
    Comment #34955110

    the type `null | true | false` is different from `true | false`, a type checker can assert that you handle the `null` case before using a function that wants a boolean. This is how…

  24. comment
    Comment #34789228

    dataclasses document the full set of attribute they can hold, along with their type.