Difference between revisions of "User:PythonNut"

(Auto-Graph)
(About Me)
Line 5: Line 5:
  
 
I like <math>\LaTeX</math> [http://www.artofproblemsolving.com/Wiki/index.php/LaTeX:About] and Asymptote[http://www.artofproblemsolving.com/Wiki/index.php/Asymptote_%28Vector_Graphics_Language%29] very much.
 
I like <math>\LaTeX</math> [http://www.artofproblemsolving.com/Wiki/index.php/LaTeX:About] and Asymptote[http://www.artofproblemsolving.com/Wiki/index.php/Asymptote_%28Vector_Graphics_Language%29] very much.
I am also interested in graphical design. And can make avatars in my spare time.
+
I am also interested in graphical design. By graphical design I mean composting. And can make avatars in my spare time.
 
I am 14 years old and I am home-schooled.
 
I am 14 years old and I am home-schooled.
 +
 +
 +
I currently am quite good at:
 +
<ul>
 +
<li>Python3</li>
 +
<li>Asymptote</li>
 +
<li>LaTeX</li>
 +
<li>HTML5</li>
 +
<li>CSS5</li>
 +
</ul>
 +
I'm learning:
 +
<ul>
 +
<li>Javascript</li>
 +
<li>MySQL</li>
 +
<li>Java</li>
 +
</ul>
  
 
==  Python ==
 
==  Python ==

Revision as of 15:09, 3 February 2012

PythonNut

About Me

I like $\LaTeX$ [1] and Asymptote[2] very much. I am also interested in graphical design. By graphical design I mean composting. And can make avatars in my spare time. I am 14 years old and I am home-schooled.


I currently am quite good at:

  • Python3
  • Asymptote
  • LaTeX
  • HTML5
  • CSS5

I'm learning:

  • Javascript
  • MySQL
  • Java

Python

Python is a programming language. It is known to be quick concise and easy to learn. Is is also very human readable.

And I am obsessed with it!

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 program named Auto-graph[3] 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.