Petr Hlavenka
Petr Hlavenka
I'd like to ask, the --uuid--.jstore are cached for unique package. How it distinguishes between different versions of the package, if more of them are installed and, e.g, used simultaneously...
The problem is, usually you don't even know you should take care of the overflow arithmetics when dealing with images (recall `FixedPoint
Actually I'd prefer the same behavior as the rational numbers (throw OverflowError, not implicitly widen): ``` >typeof(0xff//0x33) Rational{UInt8} >typeof(0xff//0x33+0xff) LoadError: OverflowError() while loading In[76], in expression starting on line 1...
Is there a way to at least use a macro that would widen all variables in the expression of the N0fx types to F32f32 type? I must admit the learning...
The pattern you suggest is highly type instable becouse of the unknown type of z during compilation. The slight modification of your code to ```julia using BenchmarkTools n = 2000;...
Thank you for the great summary. I really like the basic logging functionality included in the stdlib. Also, I'm fully happy with the `@debug @info ...` implementation and I don't...