Luminarys
- Karma
- 119
- Created
- August 9, 2015 (11y ago)
- Submissions
- 0
https://luminarys.com
[ my public key: https://keybase.io/luminarys; my proof: https://keybase.io/luminarys/sigs/Ofk2wr5AXPd7CupMPk5o5Rnp9CsVSC6CM1iIFXj48n8 ]
[ my public key: https://keybase.io/luminarys; my proof: https://keybase.io/luminarys/sigs/Ofk2wr5AXPd7CupMPk5o5Rnp9CsVSC6CM1iIFXj48n8 ]
With regards to Deep Learning, a recently released Keras backend[0] actually supports OpenCL with direct validation on a few AMD cards. I've been playing around with it for the past week or so and so far have had no…
Yes, in a cooperative async model anything which would block will stop progress of every coroutine, so you would need an async version of the ORM library for this to work. When you await something, you're telling the…
It also appears to be using a merkle hash tree for piece hashing now along with a few new peer wire messages to support that.
Having used eBPF/kprobe for work, the main advantage over a precompiled kernel module is convenience. It's much easier to write a C file which hooks a kernel function, then reports that back up to a python script than…
Although I've never seen the Great Barrier Reef, I was recently in Belize and snorkeled around its Barrier Reef. It was painfully obvious that the reefs were extensively bleached(though still quite beautiful). It's…
> Something I would write in Ruby in 10 days takes 2 months in Go. Have you looked into Elixir? It has Ruby like syntax, but uses an actor model for concurrency(it runs off of the Erlang VM). For handling concurrent…
Because get_swayc_for_handle is always called using the root container, when it recurses down it should never end up checking a parent which is NULL.
Neat post, though I'm a bit disappointed it didn't go into infix to postfix conversions.