Difference between revisions of "MuniHac2016/Projects"

From HaskellWiki
Jump to navigation Jump to search
Line 33: Line 33:
   
 
== Servant GraphQL ==
 
== Servant GraphQL ==
''Required skill level''': Expert
+
'''Required skill level''': Expert
   
 
https://github.com/haskell-servant/servant/issues/554
 
https://github.com/haskell-servant/servant/issues/554

Revision as of 09:17, 29 August 2016

Please add projects (following the template) that you are planning to work on during MuniHac.

OpenCV 3.1 Haskell binding

Homepage: https://github.com/LumiGuide/haskell-opencv

Contact: Bas van Dijk

Required skill level: Expert

haskell-opencv is an in-development opensource Haskell binding to the popular OpenCV-3.1 C++ Computer Vision library. Note that other Haskell OpenCV bindings already exist but these target the older 2.4 version of OpenCV.

The library comes with haddock documentation. Example programs are embedded in the documentation and are automatically build and run as part of the test-suite. They output images which are referenced from the documentation. Besides documentation the library also comes with a test-suite and the beginning of a benchmark suite. Finally, the library is already being used in production by LumiGuide for detecting available space to park your bicycle or car in big parking facilities.

The library is not finished yet. A lot of functions still need to be bound. However, the basis is there to easily bind missing functionality. All the core pieces are in place: core datatypes like points, sizes, polygons and most importantly matrices are there. It's also easy to bind missing datatypes. We use inline-c to inline C++ code in our Haskell code. We also have a way of dealing with exceptions originating from C++ code.

The goal of this MuniHac project is simply to bind more functionality. Roel and Bas will be available as mentors and can help you get started quickly and provide advice on how to best represent OpenCV functions in Haskell.


Servant

Homepage: https://github.com/haskell-servant

Contact: arianvp


Servant-python

Required skill level: Intermediate

Servant comes with a library `servant-foreign` that allows us to generate http clients in different languages like javascript and ruby. A servant-python library has been requested a few times, and it would be nice to add this to servant.

You could look at the code in `servant-js` and adapt it to generate python code. Preferably using the python `requests` library.

Servant GraphQL

Required skill level: Expert

https://github.com/haskell-servant/servant/issues/554

We can look at how we can verify data based on a graphql description. We could look at the Universe pattern to solve this. (http://2015.ecoop.org/event/curryon-coding-for-types-the-universe-pattern-in-idris)

Servant Custom Type Errors

Required skill level: Intermediate

https://github.com/haskell-servant/servant/issues/576

Servant generates scary error messages when things go wrong. GHC8 introduces custom type error messages. Perhaps you can explore how we can improve the usability of the servant library with this.


arianvp will be available as a mentor for servant-related projects.