-
Perl 6 was initially conceived to be the next version of Perl. It took way too long to mature to an initial release. Meanwhile, people interested in taking Perl 5 along, took back the reigns and c…
-
I think one of the first things we’ll want to do is to figure out what the actual use cases for (Web)Workers in Node are, so that we have a better idea of the requirements the API and implementation h…
-
After talking to @loriking, @amaliacardenas (who are working on Exercism this summer) and @ashleygwilliams (who is on the Rust team at Mozilla and teaches Rust to people on a regular basis) I've reali…
-
```python
r = fluid.data.mnist.train()
W = fluid.Tensor()
b = fluid.Tensor()
with fluid.While(iters=100):
mb = r.next()
x = fluid.layer.data(mb.image)
l = fluid.layer.data(mb.…
-
I'm also having difficulty just after doing a make upgrade-to-tutor and make update as advised above. It seemed to be working until I restarted the server after doing some regular updates. Now I get…
-
The most nearly stuff I've found is http://cisco.github.io/ChezScheme/csug9.5/foreign.html#./foreign:h9
However, for what reason chez itself does not support procedure on network programming?
-
[Current source of `bracketP`](https://github.com/advancedtelematic/quickcheck-state-machine/blob/716ea757eadac65ccab24f892a20b765a8c79bed/src/Test/StateMachine/Internal/Utils.hs#L60)
`return . pro…
-
Proposal: when creating a channel, if the capacity passed to the make builtin function is negative, the channel will have unlimited capacity. Such channels will never block when sending and will alway…
-
For discussion of [RFD 106: Engineering Guide: Golang Best Practices](https://github.com/joyent/rfd/blob/master/rfd/0106/README.adoc)
-
I've managed to block in a nursery scope several times (eg "while True:" loops) while learning trio, not realizing I had not hit ```__aexit__```. For long-running processes, this will appear to succe…