-
Hi there! I've got the following code
```js
// play.js
const Rx = require('rx'),
Observable = Rx.Observable,
Observer = Rx.Observer
var evenSource = Observable.create((observer) => {…
-
### What version of Racket are you using?
6.7.0.4
### What program did you run?
```
#lang typed/racket
(define s (string #\a #\b #\c))
(if ((make-predicate "abc") s)
(begin
(st…
-
# More than Persistent Collections ❤️
Contain **_`persistent(immutable) collections/Functional Data Structures`_** 📌
- **`vavr`** ❤️ ![](https://img.shields.io/github/stars/vavr-io/vavr.svg?styl…
-
The quick sort implemented in the folder Scala-Way is using a mutable array. Can/Should this be done in an immutable way?
-
Dwight, since you have already started to improve the performance of the Java rewrite engine. Here is one more thing I left out in my initial implementation of K abstract rewrite machine that could po…
-
Currently the Cats Effect memory model is implicitly defined via implementation details and the Java Memory Model (JMM). In some cases this works okay but in other cases this means that our memory mod…
-
Here are some notes for implementing a more-scalable version of Orbit-DB using persistent balanced trees. This came out of a discussion with @haadcode . Before implementing it, I'd love to get the com…
-
If you try to load a package in a thread other than thread 0, it raises an error.
-
Thank you for this great library that makes good stuff from Clojure available to Java developers.
In the context of my book [Data-Oriented programming](https://www.manning.com/books/data-oriented-…
-
Rusts central idea is to disallow mutability and aliasing at the same time (a little bit simplified). I'd like to discuss if it'd be useful to infuse a similar concept into a dynamic language.
Why…