Difference between revisions of "HakkuTaikai/Projects"

From HaskellWiki
Jump to navigation Jump to search
(Added Category:Community)
 
(4 intermediate revisions by 2 users not shown)
Line 52: Line 52:
 
=== language-java-revised ===
 
=== language-java-revised ===
   
Challenge to implement Practical Java Parser and Pretty Printer supporting annotation and new Java specifications. I want use this for code generation.
+
Challenge to implement a practical Java parser and pretty printer supporting annotation and new specifications of Java. (consider backend invertible-syntax etc...)
  +
  +
I want use this package for code generation.
   
 
* Kei Hibino
 
* Kei Hibino
  +
  +
=== update websockets ===
  +
  +
Update the "[http://hackage.haskell.org/package/websockets websockets]" package to the latest version of the websockets protocol ([http://tools.ietf.org/html/draft-ietf-hybi-thewebsocketprotocol-10 hybi-10], used by e.g. chrome 14)
  +
  +
* Steffen
   
 
<!-- Copy this template
 
<!-- Copy this template
Line 64: Line 72:
 
* Hacker 2
 
* Hacker 2
 
-->
 
-->
  +
  +
  +
[[Category:Community]]

Latest revision as of 13:31, 17 December 2012

Sharing your code

If you need a place to host a project so that others can help with it, we suggest github, which offers free hosting for public git repositories. If you're using darcs, patch-tag is just dandy as well. You can also apply for an account on the community server.

Projects

If you have a project that you want to work on at the Hackathon, please describe it here.

Since Hackathons are great for teamwork, consider joining one of the projects mentioned below. If you're interested in one of these projects, add your name to the list of hackers under that project.

containers

Johan Tibell has recently been doing some work on unordered-containers, with an eventual goal of unifying the current {Int,Hash,}Map interfaces. Would be nice to have some form of unboxed containers in there too.

  • Liyang

time

The current implementation of time uses lots of Integers internally along with realToFrac, which makes it much slower than necessary. Thinking about moving to an Int64-based representation while still being able to represent any conceivable dates & times.

  • Liyang
  • Kazu
  • Mikhail

unordered-containers

I anticipate to make a new release of the package just before ICFP, with a completely rewritten implementation. I'd like to spend some time after the release to flesh out the API a bit more.

  • Johan Tibell

HiggsSet

I recently released a package called HiggsSet. Although it works for me in a production environment, I would sleep much better if it were properly tested. So, what needs to be done is a test/benchmark suite.

  • Lars Petersen

TKYProf

I released an alpha version of TKYProf, which is a visualizer for GHC profiling. I'd like to take care of the existing issues. The public repository is on GitHub.

  • Mitsutoshi Aoe

carettah

A presentation tool writtten with Haskell. I would like to cleanup code, and upload to the Debian repository. The public repository is on gitorious.

  • Kiwamu Okabe

language-java-revised

Challenge to implement a practical Java parser and pretty printer supporting annotation and new specifications of Java. (consider backend invertible-syntax etc...)

I want use this package for code generation.

  • Kei Hibino

update websockets

Update the "websockets" package to the latest version of the websockets protocol (hybi-10, used by e.g. chrome 14)

  • Steffen