ninesigns's comments

ninesigns | 5 years ago | on: I Still Use RSS

I want to point out excellent koreader[1] program for e-readers, that features RSS client. So you connect, fetch your articles and start reading without distractions.

For such use cases RSS is god-send and I am glad that substack and many blogs do support that.

[1] https://github.com/koreader/koreader

ninesigns | 7 years ago | on: Why Julia

I wish Julia would be more strict wrt type coercion of integer to float values.

I've once spent a day debugging the issue caused by the following line of code, where t1, t2 are floats and v is an array:

d = (t2 - t1) * length(v)

It should've been LinearAlgebra.norm():Float instead of length():Int. Had julia been stricter the code would have failed to run, saving me much time.

ninesigns | 8 years ago | on: Lispers

AFAIK Haskell doesn't support metaprogramming. Perhaps you mean "Template Haskell"?
page 1