User Portlet User Portlet

Discussions
Hello and thank you for you interest on my code. I have added a minimal demo/tutorial for sending a message to a Telegram user, you may check it [here][1] (right-click and save as...). I think this solves the simple scenario. The ask users for...
I have found something a bit surprising playing with the Filling options of ListPlot in Mathematica 10. Take a simple example like: data = Table[{x, x^2}, {x, 1, 5, 0.5}]; data2 = Table[{x + 0.25, x}, {x, 1, 5, 0.5}]; ListPlot[{data,...
I plan to create either a website or a Github repository soon, I'll post any information here when it's ready. On the other hand, I have just tried the package in M10 and though it works, graphical appearance should be revisited (the package uses...
A straightfoward method to check the matrix product you asked for: define your matrix by blocks using [ArrayFlatten][1]: A = Table[RandomReal[], {i, 3}, {j, 3}]; b = List /@ Table[RandomReal[], {i, 3}]; (*So it is a matrix*) M =...