WARNING This list outdated, for the up to date version visit https://haskellcosm.com
Types of work:
- RD - research&development
- PR - product
- IP - in-house product
- CO - consulting
#!/usr/bin/python | |
"""Copy published precise PPA packages to quantal raring saucy. | |
Typical usage: | |
- build a gtimelog package for precise | |
- dput ppa:gtimelog-dev gtimelog_0.8.1-0ppa0_source.changes | |
- wait for it to be built | |
- run ppa-gtimelog-copy-packages |
WARNING This list outdated, for the up to date version visit https://haskellcosm.com
Types of work:
#!/usr/bin/env runghc | |
import Data.Char | |
import Data.List | |
import Control.Monad | |
import Control.Applicative | |
import Data.Monoid | |
import Data.Version | |
import Text.ParserCombinators.ReadP (readP_to_S) |
The Hackage trustees are a group of volunteers who are interested in the health of the package collection as a whole. This is different to the role of maintainers of individual packages.
The trustees role is in many ways similar to that of the individuals who maintain the Haskell packages for the various Linux distributions. In Linux distributions the distribution maintainers seek to have their
{-# LANGUAGE DeriveFoldable #-} | |
{-# LANGUAGE FlexibleContexts #-} | |
{-# LANGUAGE FlexibleInstances #-} | |
{-# LANGUAGE FunctionalDependencies #-} | |
{-# LANGUAGE MultiParamTypeClasses #-} | |
{-# LANGUAGE RankNTypes #-} | |
{-# LANGUAGE ScopedTypeVariables #-} | |
{-# LANGUAGE UndecidableInstances #-} | |
-- | This file is my attempt to clarify and formalise my own thoughts about | |
-- dependency resolution problem. |