Difference between revisions of "User:MathematicalOrchid"

From HaskellWiki
Jump to navigation Jump to search
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
  +
=== Status ===
'''Status''': Enthusiastic Haskell newbie.
 
   
 
Enthusiastic Haskell newbie.
'''Main Interests''':
 
   
 
=== Main Interests ===
* Using Haskell to write triposcopic mathematical algorithms in tiny amounts of code.
 
  +
 
* 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.
 
* Using Haskell to do seriously compute-bounded work in a multiprocessor setup.
   
'''Current Projects''':
+
=== Projects ===
   
  +
==== Active ====
* Haskell to Java compiler.
 
* Interactive Haskell step-line debugger.
 
* Program to convert my custom markup to HTML and LaTeX.
 
   
  +
* Toy compression implementations in Haskell.
'''Projects On Hold''':
 
   
  +
==== On Hold ====
  +
  +
* ''Indoculate'' — Program to convert a single (custom) source to both HTML and LaTeX, and also do cross-linking. (Status: in production use)
  +
* ''Chaos'' — 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)
 
* Sorting algorithm benchmarks.
 
* Sorting algorithm benchmarks.
 
* Audio DSP in Haskell.
 
* Audio DSP in Haskell.
 
* [[POV-Ray SDL project|Haskell SDL]] for [http://www.povray.org/ POV-Ray].
* Haskell implementation of compression algorithms.
 
* Haskell DSL for [http://www.povray.org/ POV-Ray].
 
   
'''Failed Projects''':
+
==== Failed ====
   
* Haskell fractal generator.
 
 
* Haskell ray tracer.
 
* Haskell ray tracer.
 
* Haskell type deducer.
 
* Haskell program to cause world peace.
 
* Haskell program to cause world peace.
   
  +
=== Darcs ===
'''Current Unsolved Questions''':
 
  +
  +
==== Indoculate ====
  +
  +
* <code>darcs get http://www.orphi.me.uk/darcs/Indoculate</code>
  +
* <code>ghc --make MakeHTML</code>
  +
* <code>ghc --make MakeSite</code>
  +
* <code>ghc --make MakeLaTeX</code>
  +
* Comes with a minimal manual. (<code>Manual.html</code> in the darcs repo.)
  +
  +
==== Chaos pendulum simulator ====
  +
  +
* <code>darcs get http://www.orphi.me.uk/darcs/Chaos</code> (Chaos pendulum simulator.)
  +
* <code>ghc -O2 --make System1</code>
  +
* <code>System1</code>
  +
* Go have a cup of tea, what some TV, go to bed, come back next day, and it might have finished. Will draw 500 frames at 200x200 pixels each, and save them as PPM image files. Make an animation out of these, and enjoy the light show!
  +
  +
==== Toy Compression ====
  +
  +
* <code>darcs get http://www.orphi.me.uk/darcs/ToyCompression</code>
  +
* <code>ghc -O2 --make Encode</code>
  +
* <code>ghc -O2 --make Decode</code>
  +
* <code>Encode algorithm file</code> (Compress <code>file</code> using specified algorithm, and save as <code>file-algorithm</code>.)
  +
* <code>Decode algorithm file</code> (Decompress <code>file</code> using specified algorithm, and save as <code>file-unalgorithm</code>.)
  +
  +
Currently working algorithms:
  +
* '<code>RLE</code>': ''Run-length encoding''. Works well on files containing lots of 'runs' of the same value - e.g., pixel data. Works horribly on text.
  +
* '<code>BWT</code>': ''Burrows-Wheeler transform''. Doesn't actually do any compression, but tends to make data more compressible.
  +
* '<code>MTF</code>': ''Move-to-front encoding''. Again, doesn't compress, but makes the data more compressible.
  +
* '<code>Fib</code>': ''Fibonacci codes''. Low numbers take up fewer bits than large numbers.
  +
* '<code>LZW</code>':'' Lempel-Ziv-Welch''. Works well on just about everything!
  +
  +
Notes:
  +
* Danger: BWT is ''extremely'' slow. It also uses ''absurd'' amounts of RAM! Run this algorithm only on small files. (Less than about 10 KB.)
  +
* LZW works very well, but BWT+MTF+Fib is currently unbeaten...
  +
  +
=== Contributed Code ===
  +
  +
* [[Library for binary]]
  +
* [[Library for vectors]]
  +
* [[Library for colours]]
  +
* [[Library for PPM images]]
  +
* [[Toy compression implementations]]
  +
 
=== Current Unsolved Questions ===
   
* Why do Haskell extensions exist?
+
* Why do Haskell language extensions exist?
 
* How do you do graphics in Haskell?
 
* How do you do graphics in Haskell?
* Why does Hugs crash so much?
 
 
* How come (e.g.) Smalltalk provides 27 different types of collection, but Haskell only ever involves single-linked lists and binary trees?
 
* How come (e.g.) Smalltalk provides 27 different types of collection, but Haskell only ever involves single-linked lists and binary trees?
* Is <hask>putStr xs1; putStr xs2</hask> faster or slower than <hask>putStr (xs1 ++ xs2)</hask>?
+
* Why is <hask>putStr xs1; putStr xs2</hask> slower than <hask>putStr (xs1 ++ xs2)</hask>?

Latest revision as of 12:36, 9 July 2007

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.

Projects

Active

  • Toy compression implementations in Haskell.

On Hold

  • Indoculate — Program to convert a single (custom) source to both HTML and LaTeX, and also do cross-linking. (Status: in production use)
  • Chaos — 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)
  • Sorting algorithm benchmarks.
  • Audio DSP in Haskell.
  • Haskell SDL for POV-Ray.

Failed

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

Darcs

Indoculate

Chaos pendulum simulator

  • darcs get http://www.orphi.me.uk/darcs/Chaos (Chaos pendulum simulator.)
  • ghc -O2 --make System1
  • System1
  • Go have a cup of tea, what some TV, go to bed, come back next day, and it might have finished. Will draw 500 frames at 200x200 pixels each, and save them as PPM image files. Make an animation out of these, and enjoy the light show!

Toy Compression

  • darcs get http://www.orphi.me.uk/darcs/ToyCompression
  • ghc -O2 --make Encode
  • ghc -O2 --make Decode
  • Encode algorithm file (Compress file using specified algorithm, and save as file-algorithm.)
  • Decode algorithm file (Decompress file using specified algorithm, and save as file-unalgorithm.)

Currently working algorithms:

  • 'RLE': Run-length encoding. Works well on files containing lots of 'runs' of the same value - e.g., pixel data. Works horribly on text.
  • 'BWT': Burrows-Wheeler transform. Doesn't actually do any compression, but tends to make data more compressible.
  • 'MTF': Move-to-front encoding. Again, doesn't compress, but makes the data more compressible.
  • 'Fib': Fibonacci codes. Low numbers take up fewer bits than large numbers.
  • 'LZW': Lempel-Ziv-Welch. Works well on just about everything!

Notes:

  • Danger: BWT is extremely slow. It also uses absurd amounts of RAM! Run this algorithm only on small files. (Less than about 10 KB.)
  • LZW works very well, but BWT+MTF+Fib is currently unbeaten...

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)?