Viewing profile — null_driver
null_driver
HN member- Joined
- Wed, Aug 09, 2017, 1:07 PM UTC
- HN karma
- 2
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About null_driver
No profile information was provided.
Recent public activity
-
comment
Comment #46626740
harryk.dev
-
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…
-
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")…
-
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…