There is no such list. Make a list of questions and we would love to answer all of them!
E.g., the first answer is:
%time computation
to time it once, and
%timeit computation
to run many timings and provide an average.
You can also do
---
%time
a bunch
of code in a cell
---
and
---
%timeit
a bunch
of code in a cell
---
in a Sage worksheet.
---
Regarding 2d and 3d graphics, things are much like mathematica, except use lowercase and underscores and parenthesis, so
ContourPlot[y^2 + 1 - x^3 - x, {y, -pi, pi}, {x, -pi, pi}]
becomes
%var x, y
contour_plot(y^2 + 1 - x^3 - x, (y,-pi,pi), (x,-pi,pi))
Note that you have explicitly declare x and y to be symbolic variables.
Type contour_plot? to learn a lot about contour_plot, and see tons of examples. Also, a good way to find sage docs is to google for "sage" and "something else"...
-- William