Alexandru Nedelcu

Results 173 comments of Alexandru Nedelcu

Not sure what you're trying to do, but in my setup I'm triggering an Nginx restart by doing this from inside my Docker's listener: ``` touch /var/run/vm-reload/vm-reload-nginx-config ``` Then I...

Something wrong with that command: ``` sbt:scala-futures> benches/jmh:runMain scala.future.BenchRunner -p threads=1 -p recursion=8192 -i 30 -wi 15 -f1 -t1 Benchmarks [info] Packaging /Users/alex/Projects/personale/scala-futures/target/scala-2.12/scala-futures_2.12-0.1-SNAPSHOT.jar ... [info] Packaging /Users/alex/Projects/personale/scala-futures/benches/target/scala-2.12/benches_2.12-0.1-SNAPSHOT.jar ... [info] Packaging...

@viktorklang here's [the output](https://gist.github.com/alexandru/da6876ec087cb2ff5ae73e20e97ddeaf). Test system is a MacBook Pro 2015, 2,2 GHz Intel Core i7, 16 GB 1600 MHz DDR3. I disabled all apps I could and the network...

I'm really happy you're optimizing `Future` btw 👍 🖖

I have the same issue, it happens frequently, and I haven't noticed any usage pattern that triggers it: ![image](https://user-images.githubusercontent.com/11753/172042037-b4690d84-eb8a-4a52-90f9-63f95bfe9243.png)

@gabejohnson just some bike shedding ... why not name this function `fold` instead of `cata`? `fold` is IMO more standard than `cata`, having been used in many libraries and `cata`...

@safareli you're referring to [maybe](https://hackage.haskell.org/package/base-4.10.1.0/docs/Data-Maybe.html#v:maybe) and [either](https://hackage.haskell.org/package/base-4.10.1.0/docs/Prelude.html#v:either). Note that Haskell and PureScript do not do OOP-like namespacing of functions and they don't do function overloading either, so they need `maybe`...

@gabejohnson you’re mentioning above that we could have `either` defined for Future/Task types, but I cannot see it. The signature in #280 that I’m seeing cannot be applied to a...

@xaviervia > variadic, polymorphic .cata Same argument as above, I would argue that for any data type there’s a single fold definition that reflects the shape of the data constructors...

@xaviervia > The interesting underlying topic is that there are many possible implementations of a certain algebra for a certain type, which is sometimes taken into account by calling a...