User:PythonNut

Revision as of 14:30, 12 June 2013 by PythonNut (talk | contribs) (About Me)

PythonNut

About Me

I Program too much.

Python

Python is a programming language. It is known to be quick concise and easy to learn. Is is also very human readable. It is interpreted and falls under the VHLL language category. It is rather slow for number crunching so that's why I want to learn C++.

I was currently learning Python when I signed up for AoPS. Hence my username. My avatar is a glossy python logo.

Auto-Graph

[asy] import contour; import graph; real f(real x) { return x^2-1.333; } draw(graph(f,-1.5,1.5),blue+linewidth(0.5),Arrows); size(75); real f(real x, real y) {return abs(x^3) + abs(y^3);} draw(contour(f,(-6,-6),(6,6), new real[] {5}),red+linewidth(1)); label("$Auto\;Graph$",(0,0.3),red); label("$V-4\beta$",(0,-0.3),red); dot((1.5,0),red); dot((0,1.5),red); dot((0,-1.5),red); dot((-1.5,0),red);[/asy] I am currently developing an open source (duh) Asymptote script named Auto-graph[1] That creates asymptote graphs easily and quickly. and (most importantly) the user only needs to know what he/she wants to graph.

I will release it under GPL one day.