Live data from Hacker News

Viewing profile — null_driver

null_driver

HN member
Joined
Wed, Aug 09, 2017, 1:07 PM UTC
HN karma
2
Public activity
4 items

About null_driver

No profile information was provided.

Recent public activity

  1. comment
    Comment #46626740

    harryk.dev

  2. comment
    Comment #46276146

    I'm looking to leverage the upcoming WebNN browser spec with my spreadsheet app. I think integration with vision, audio and language models opens a whole new world of possibilities…

  3. comment
    Comment #42970623

    I tend to rely on old traditional methods and recently came across this dissection which opened up my interpretation of the whole dreaming process (a way in which we are "renewed")…

  4. comment
    Comment #33417265

    Ocaml also has `@@` which gives `'a -> ('a -> 'b) -> 'b = ` and `|>` for `('a -> 'b) -> 'a -> 'b = ` so you can also do: ```ocaml type point = { x: float; y: float};; let euclidean…