User:MathematicalOrchid

From HaskellWiki
Revision as of 10:37, 24 April 2007 by MathematicalOrchid (talk | contribs) (New projects, better formatting, etc.)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Status: Enthusiastic Haskell newbie.

Main Interests

  • Using Haskell to write triposcopic mathematical algorithms with only a tiny amount of code.
  • Using Haskell to do seriously compute-bounded work in a multiprocessor setup.

Current Projects

  • (no name) — chaos pendulum simulator (Status: moderately working, needs UI)
  • Haktal — fractal generator. (Status: minimal functionality)
  • HoJ — Haskell to Java compiler. (Status: skeletal)
  • Evlor — Interactive Haskell step-line debugger. (Status: skeletal)
  • Indoculate — Program to convert a single (custom) source to both HTML and LaTeX, and also do cross-linking. (Status: in production use)

Projects On Hold

Failed Projects

  • Haskell ray tracer.
  • Haskell program to cause world peace.

Contributed Code

Current Unsolved Questions

  • Why do Haskell language extensions exist?
  • How do you do graphics in Haskell?
  • How come (e.g.) Smalltalk provides 27 different types of collection, but Haskell only ever involves single-linked lists and binary trees?
  • Why is putStr xs1; putStr xs2 slower than putStr (xs1 ++ xs2)?