Apocalisp

6,374
Reputation
895 views

Registered User

Name Apocalisp
Member for 1 year
Seen 5 hours ago
Website
Location
Age
Just another programmer trying to get it right for once.
7h
accepted Instantiating a Type Parameter Without Passing an Object
17h
answered Instantiating a Type Parameter Without Passing an Object
1d
answered What’s a ‘fun’ high-level programming language to learn?
1d
revised What is a monad?
added 79 characters in body; deleted 2 characters in body
1d
answered What are the differences and similarities of Scala and Haskell type systems?
1d
comment What are the differences and similarities of Scala and Haskell type systems?
Maybe you meant higher kinds.
1d
comment What are the differences and similarities of Scala and Haskell type systems?
Two reasons. "Object-oriented" is a fuzzy non-concept and explaining Scala's type system in terms of that will just confuse the matter. And Scala does not have higher-rank types.
2d
answered Convert Python to Haskell / Lambda calculus
Nov
28
answered common questions to java 1+ year programmer
Nov
26
comment Fastest way to get value of pi
You're talking about a rational approximation of pi, not the value of pi. The value of pi is just pi, and if you keep it that way, then the precision gets propagated to future calculations. Multiply by 2 and you get the expression 2π, which is precise. Divide it by 3 and you get π/3, which is also precise. Prematurely approximating to a rational number with floating point representation is a mistake.
Nov
26
answered Fastest way to get value of pi
Nov
25
revised Why purely functional languages instead of “impure” functional languages?
added 1 characters in body
Nov
23
comment Inventing a suitable infix operator symbol for liftM
By the way, (liftM2 f) x y is equivalent to f <$> x <*> y. Ditto for liftM3, etc. Just keep adding <*>.
Nov
23
comment Inventing a suitable infix operator symbol for liftM
All monads are applicative. Creating an instance of Applicative for a monad is as simple as declaring a <$> f = a >>= (return . f) and (<*>) = ap.
Nov
21
accepted Koch Snowflake Implementation in Haskell
Nov
21
comment How far should I take referential transparency?
Having Database as the first argument, a function can only be composed with functions that return databases. I suspect there aren't many of those.
Nov
21
answered Koch Snowflake Implementation in Haskell
Nov
21
comment How far should I take referential transparency?
You can get one from the other. a -> b -> c is equivalent to b -> a -> c. All you need is a higher-order function: flip f a b = f b a. The order of arguments a design choice. In this particular case it makes sense for composability to put Database as the last argument, since that allows you to do Kleisli composition.
Nov
21
revised How far should I take referential transparency?
added 38 characters in body
Nov
21
answered How far should I take referential transparency?
Nov
20
awarded  Nice Answer
Nov
19
answered Concurrent map/foreach in scala
Nov
19
revised Concurrent map/foreach in scala
deleted 21 characters in body; added 79 characters in body
Nov
19
revised Concurrent map/foreach in scala
added 142 characters in body; added 119 characters in body
Nov
19
answered Concurrent map/foreach in scala
Nov
19
comment Efficient queue in Haskell.
It's wholly possible that an entirely different structure in a different context has different properties than this one, yes.
Nov
17
revised Extending an existing type in OCaml
added 118 characters in body
Nov
17
answered Extending an existing type in OCaml
Nov
16
accepted Efficient queue in Haskell.
Nov
16
revised Efficient queue in Haskell.
added 299 characters in body; added 18 characters in body
Nov
16
answered Efficient queue in Haskell.
Nov
16
revised Trying to make sierpinski triangle generator in a functional programming style
added 37 characters in body; added 2 characters in body
Nov
16
revised Trying to make sierpinski triangle generator in a functional programming style
deleted 37 characters in body; added 143 characters in body
Nov
16
revised Trying to make sierpinski triangle generator in a functional programming style
added 904 characters in body; added 3 characters in body
Nov
16
comment Trying to make sierpinski triangle generator in a functional programming style
It doesn't need to be a partial function. Just have it return the function that calculates the next step. That function then returns what you need to calculate the next step, and so on. See if you can implement your function as an instance of (B => (A, B)) => B => Stream[A]. You can see how a function like B => (A, B) takes a B and returns a result A plus a value of type B. If you feed that B back to the function it gives you the next iteration, and so on.
Nov
16
accepted Trying to make sierpinski triangle generator in a functional programming style
Nov
15
comment How difficult is it to learn functional programming languages?
I disagree most vehemently. A purely functional language will keep beginners on the straight and narrow. LISP and the ML variants will let you lie, cheat, and think impure thoughts. If you want to learn FP quickly, go with Haskell or Clean.
Nov
15
revised Ways to get the middle of a list in Haskell?
added 38 characters in body
Nov
15
answered Ways to get the middle of a list in Haskell?
Nov
15
revised Ways to get the middle of a list in Haskell?
Code moved to separate answer.
Nov
15
comment Trying to make sierpinski triangle generator in a functional programming style
This is a well-known "pattern", and it even has a name. It's the cofree coalgebra of the Identity Functor. An implementation is provided in the standard libraries as the scala.Stream class.
Nov
15
answered Trying to make sierpinski triangle generator in a functional programming style
Nov
15
revised Ways to get the middle of a list in Haskell?
deleted 18 characters in body; edited body
Nov
15
revised Ways to get the middle of a list in Haskell?
deleted 4 characters in body
Nov
15
comment Ways to get the middle of a list in Haskell?
It's nicer to say: middle . tail . init $ l
Nov
15
revised Ways to get the middle of a list in Haskell?
Added the Haskell code; deleted 23 characters in body
Nov
12
comment Pointer equality in Haskell?
Well, yes, if you introduce an absurdity or infinite recursion, that's your fault.
Nov
12
comment Examples of functional programs ‘writing themselves’ via type analysis
The actual type of let om f xo = None is 'a -> 'b -> 'c option, so it's not only uninteresting, but of the wrong type. Type annotations notwithstanding.
Nov
12
answered Examples of functional programs ‘writing themselves’ via type analysis
Nov
12
revised Pointer equality in Haskell?
deleted 12 characters in body; added 6 characters in body