Singpolyma

Orange Office

Posted on

Guess whose office this window is in?

Linux File Server

Posted on

Use a BSD or Solaris for better ZFS support

in reply to

Aquaris M10 Ubuntu Edition (Tablet) Pre-order

Posted on

Obviously ARM processor… what else would they even use?

in reply to

Return type overloading question

Posted on

You can overload two different types, but not two different values for the same type — how would it even choose which one to return?

Here's what I think you want:

data B = B String
data C = C Int

class BorC a where
    get :: a

instance BorC B where
    get = B "1"

instance BorC C where
    get = C 1
in reply to

commented on issue thoughtbot/factory_girl_rails#134

Posted on

in reply to