ritschwumm

Results 65 comments of ritschwumm

@the-real-blackh so i thought. still annoying when you run into it. seems like a 'real' solution would require a different garbage collector ala http://tomasp.net/academic/papers/hollywood/hollywood.pdf .

i don't see how you could compare the two key sets - there's no way to iterate over the keys or entries of a WeakMap.

wait a minute. isn't disconnecting-from-upstream a problem for _all_ stateful combinators?

oh.. i'd have expected a combinator like ((S,T) => (S,U)) => S => Stream[T] => Stream[U] that advances an internal state S for each new T and additionally emits an...

why not just configure git to check out files without CR/LF conversion? imho this sounds like an overly complex workaround for a questionable feature of git which shouldn't have been...

@mutech i agree in principle - i've seen too many pieces of partial tsconfigs being copied around for the reasons you describe. mixins might help solving this issue. one caveat...

while i do see the point of having a reproducable build - please, please, please do _not_ put generated files into `src/`. this folder should be reserved for original files...

true, the proposed "cache" file is an interesting case. neither `src/` nor `target/` really fit here - and in some case you want it checked in, and in others you...

how would you update of your dependencies? right now it's * update the build.sbt * commit with this file in `src/` it would be * update your build.sbt * `sbt...

it might be better to support a natural logarithm, as it is used in many DSP algorithms. then one can build on `pow(a,x) == exp(x * ln(a))`