[Haskell-cafe] Haskell job opportunity

2009-12-08 Thread siki
I've posted this before but did not get a whole lot of responses, so here it is again: Principal investment firm based in Manhattan is looking for an outstanding software developer to develop and maintain the firm's proprietary valuation models as well as accounting and portfolio management

[Haskell-cafe] Exciting job opportunity

2009-11-09 Thread siki
Principal investment firm based in Manhattan is looking for an outstanding software developer to maintain and develop proprietary accounting and portfolio management systems. You should have at least a bachelor’s degree in computer science from a top university and impeccable coding style.

[Haskell-cafe] Exciting job opportunity

2009-09-29 Thread siki
Principal investment firm based in Manhattan is looking for an outstanding software developer to maintain and develop proprietary accounting and portfolio management systems. Job duties will include coding projects as well as management of outsourced system maintenance. Candidates should have

[Haskell-cafe] Can subclass override its super-class' default implementation of a function?

2009-04-27 Thread siki
I'm not sure if this is possible at all. I'd like to do something like this: class A a where foo :: a - Double foo a = 5.0 class (A a) = B a where foo a = 7.0 data Blah = Blah data Bar = Bar instance A Blah instance B Bar let blah = Blah bar = Bar foo blah -- should

Re: [Haskell-cafe] Can subclass override its super-class' default implementation of a function?

2009-04-27 Thread siki
is greatly appreciated! Thanks, -Gabor Martijn van Steenbergen-2 wrote: siki wrote: I'm not sure if this is possible at all. I'd like to do something like this: class A a where foo :: a - Double foo a = 5.0 class (A a) = B a where foo a = 7.0 This is currently