User Portlet User Portlet

Discussions
I was dealing with infix functions and have just discovered this Notation package It's really great! For instance in time series, one could make the code more readable by using the following notation:
You can visualize complex numbers on the plane: Graphics[Point[ReIm[{I, 2 - I, I^2, 0}]], Frame -> True] with Mathematica 10.1 syntax, or Graphics[Point[Map[{Re[#], Im[#]} &, {I, 2 - I, I^2, 0}]], Frame -> True] with older...