Skip to content

Commit

Permalink
first draft. a description of my git repos
Browse files Browse the repository at this point in the history
  • Loading branch information
mrocklin committed Feb 11, 2012
1 parent 8512b15 commit 3f65fe0
Showing 1 changed file with 62 additions and 2 deletions.
64 changes: 62 additions & 2 deletions index.html
@@ -1,9 +1,69 @@
<html>
<head>
<title>mrocklin github page</title>
<title>mrocklin.github.com</title>
<meta name="google-site-verification" content="kiHXwB1qYeATO6GmyV9Q6T8E9cA1-VJKmJ2CPY2sIF8" />
<meta keywords="Matthew Rocklin Matt github Computer Science">
<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18218894-1']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>

</head>
<body>
<p> Hello World.</p>
This page describes the open source projects on
<a href=http://people.cs.uchicago.edu/~mrocklin>Matthew Rocklin's</a>
github page
<ul>
<li> Projects started by me:
<ul>
<li>
<a href=http://github.com/mrocklin/ShallowWater/>Shallow Water</a>:
A time dependent solver for the Shallow Water equations. This code
uses numpy or Theano for low level computation. It was designed to
demonstrate how mathematical solvers can be written clearly in a
high-level language and use libraries for efficient low-level
computation.
<li>
<a href=http://github.com/mrocklin/tompkins/>tompkins</a>:
A scheduler for computations on heterogeneous architectures
including dependencies between tasks (represented as a DAG),
and communication times. It solves the problem using an integer
linear programming method described in an article by Tompkins. This
code attempts to translate his math into clear Python code.
Section and equation numbers are included. Uses the pulp library to
describe the ILP.
<li>
<a href=http://github.com/mrocklin/mailFeed>mailFeed</a>:
A simple Python library to automate the collection of e-mail from a
remote server.
<li>
<a href=http://github.com/mrocklin/alettertofaye>alettertofaye</a>:
A letter attempting to explain common sense internet security to a
non computer-scientist.
</ul>
<li> Projects to which I contribute
<ul>
<li> <a href=http://github.com/mrocklin/sympy>SymPy</a>:
A symbolic mathematics library within Python. Similar to
Mathematica or Maple. I contribute to the statistics and linear
algebra modules.
<li> <a href=http://github.com/mrocklin/theano>Theano</a>:
A library that bridges the symbolics-numerics gap. They self-style
themselves as a "Math Compiler." My contributions to this project
so far are trivial. I list it here because it is important in my
current research.
</ul>
</ul>

</body>
</html>

0 comments on commit 3f65fe0

Please sign in to comment.