Tom Lokhorst

3,100
reputation
342 views

Registered User

name Tom Lokhorst
member for 1 year
seen 9 hours ago
website
location The Netherlands
age 24
Student at Utrecht University in the Netherlands.
Dec
6
revised Avoiding boilerplate when dealing with many unrelated types
edited tags; edited tags
Dec
1
comment Haskell typeclass
It's not just syntax — Haskell doesn't support type level lambda expressions at all. Apparently because it makes unification during type inference impossible. See: mail-archive.com/haskell-cafe@haskell.org/… (btw, the UHC/EHC referred to on that page, also doesn't support type level lambdas in Haskell syntax)
Nov
30
awarded  Nice Answer
Nov
30
comment XML alternative of Text.JSON.Generic for Haskell
@finnsson almost everything can still be derived automatically. Instead of one line "deriving (Data, Typeable)" for SYB, you'll have to write 4 lines for multirec (See the last code block in the typLAB article). Slightly more verbose, but still manageable I'd say.
Nov
25
accepted Can somebody walk me through this Haskell function (State monad related)?
Nov
25
comment Can somebody walk me through this Haskell function (State monad related)?
Indeed, the state is being updated, but the return value, n stays the same. See my other answer stackoverflow.com/questions/1795785/…
Nov
25
answered Can somebody walk me through this Haskell function (State monad related)?
Nov
25
answered Can somebody walk me through this Haskell function (State monad related)?
Nov
19
awarded  Popular Question
Nov
18
revised How foldr works
Cleanup
Nov
11
answered Is it possible to use unary function instead of binary in `flip`?
Nov
10
accepted Cabal not installing dependencies when needing profiling libraries?
Nov
10
comment Cabal not installing dependencies when needing profiling libraries?
Well, it's impolite to say no to free upvotes :-) However, I do hope someone will come along with a better answer, one that would not require me to reinstall the complete Haskell Platform manually next time.
Nov
10
answered Cabal not installing dependencies when needing profiling libraries?
Nov
10
revised Replacing characters with numbers in Haskell
Elaborated
Nov
10
accepted Replacing characters with numbers in Haskell
Nov
10
answered Replacing characters with numbers in Haskell
Nov
9
comment Cabal not installing dependencies when needing profiling libraries?
I've enabled library-profiling: True in my ~/.cabal/config file. From then on, any new installations will automatically enable profiling. Unfortunately that still means I had to manually reinstall for the old packages already installed. Although, after a while of doing this manually, I now have most packages reinstalled with profiling enabled...
Nov
9
comment Homework: Doing a binary search on some elements in Haskell
@Reza, please indent your code blocks with 4 spaces to have it be formatted as code. I just did that for you with this post.
Nov
9
revised Homework: Doing a binary search on some elements in Haskell
formatting
Nov
9
comment Map function for custom n-ary tree
Just for completeness: You need the derive package (hackage.haskell.org/package/derive) for this to work. Also, as of GHC 6.12 you can simply use deriving Functor in your code (by using the -XDerivingFunctor extension).
Oct
24
revised Laziness and tail recursion in Haskell, why is this crashing?
Elaborated of use of parenthesis
Oct
24
revised Laziness and tail recursion in Haskell, why is this crashing?
added 17 characters in body
Oct
24
answered Laziness and tail recursion in Haskell, why is this crashing?
Oct
5
answered How to programmatically retrieve GHC package information?
Sep
26
awarded  Nice Answer
Sep
25
accepted Haskell function composition
Sep
25
answered Haskell function composition
Sep
11
comment How to stop GHC from generating intermediate files?
That's what I do as well. For every piece of Haskell code that's bigger than a single file, I setup a .cabal file. That is, I just copy an existing .cabal file from somewhere and modify it. I think someone is working on a cabal --init command to setup a default working space, which would be quite useful.
Aug
28
comment What is the best functional language for scientific programming
@leon: From what I've heard, F# works fine on Mono as well.
Aug
26
revised How do I remove every occurance of a value from a list in haskell using Prelude?
formatting
Aug
24
accepted What is the ecosystem for Haskell web development?
Aug
24
awarded  Yearling
Aug
20
comment GHC parse error which I do not understand
Incidentally, fromInteger is also used by GHCi to do the "overloading" of numeric literals.
Aug
12
comment What is the ecosystem for Haskell web development?
Well, Tupil also does a lot of iPhone app development (in Objective C). They don't just do Haskell web apps.
Aug
12
revised parity Games in Haskell
Cleaned up the layout (somewhat)
Aug
11
comment ExtJS DateField using different display format
I assume that'll display just fine. The thing is, I'd like to have yyyy-mm-dd as the format of the string that is returned to the server. So, I can get the parsing to work with altFormats, but the visual format and "send-to-server" format seem to have been merged into the single format property.
Aug
11
comment ExtJS DateField using different display format
It looks like formatDate isn't as useful as I initially thought, this function is used for both the string that shown to the user, and the string that's send back to the server. I really want two different strings...
Aug
11
comment ExtJS DateField using different display format
Those formatDate and parseDate on the control look very promising! I didn't know those existed, they're not in the documentation (at least not on the page I'm looking at). I'll see if I can get my desired behavior by overriding those two functions.
Aug
11
comment ExtJS DateField using different display format
Oh, I wasn't paying much attention to the generated HTML, apparently the date is in a CSS-hidden <div>, not a hidden <input> as I thought. In that case the whole form won't work with JavaScript disabled, but I don't really care about that, this is a commercial application, not a public facing website.
Aug
11
comment ExtJS DateField using different display format
Well, if JavaScript is disabled, the user will just have to enter a date in yyyy-mm-dd format, that's fine with me (if the date is in the wrong format, the server will simply return to the page with an error message). If the user has JavaScript enabled, they get a nicer experience with a datepicker control localized to their own language. Now if there was only a way to also show the date itself in the control, in their language... :-)
Aug
11
comment ExtJS DateField using different display format
The DateField is inside a Form. If it were inside a Grid, I think I could override the ColumnModel renderer to do custom rendering of the Date object.
Aug
11
comment ExtJS DateField using different display format
Sure, I guess that will work. I'm just hoping there's a solution that allows me to do all the culture specific formatting on the client side and send simple, non-culture specific, formats to and from the server.
Aug
11
comment ExtJS DateField using different display format
Hi Joshua, I can get the date to format fine, using the ExtJs localization features. It's just that I want to use a different display format from the parsing format.
Aug
11
asked ExtJS DateField using different display format
Aug
10
revised What is the ecosystem for Haskell web development?
added 5 characters in body
Aug
10
answered What is the ecosystem for Haskell web development?
Aug
10
comment What is the ecosystem for Haskell web development?
@deceze I've reworked your question a bit. Specifically, I've made the title more distinct from the other question.
Aug
10
revised What is the ecosystem for Haskell web development?
Reworked question a bit.
Aug
10
comment What is the ecosystem for Haskell web development?
I don't think this is a duplicate. The other question is asking about learning Haskell as a first language, for doing web development. This question is specifically asking what frameworks, template engines and web servers exist. Maybe this question can be reworked?