User Tom Lokhorst - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T02:03:26Zhttp://stackoverflow.com/feeds/user/2597http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related/1796544#17965447Answer by Tom Lokhorst for Can somebody walk me through this Haskell function (State monad related)?Tom Lokhorst2009-11-25T12:14:56Z2009-11-25T12:14:56Z<blockquote>
<p>...How is puts updating the state in the first place? It seems to just be sitting there doing nothing...</p>
</blockquote>
<p>Ah, now I understand your question. You're wondering how <code>put</code> (and <code>get</code>) work, right?</p>
<p>Maybe an example in JavaScript will help (a language with actual mutable state):</p>
<pre><code>var s; // mutable state
function get() { return s; }
function put(x) { s = x; }
function tick() {
var n = get();
put(n + 1);
return n;
}
</code></pre>
<p>I hope this illustrates that, while <code>n</code> doesn't change, the internal state still will get updated. If you execute <code>tick()</code> twice, the state will be incremented twice.</p>
<p>To get back to Haskell, here's the full definition of (the relevant parts) of the <code>State</code> monad:</p>
<pre><code>newtype State s a = State { runState :: s -> (a, s) }
instance Monad (State s) where
return a = State $ \s -> (a, s)
m >>= k = State $ \s -> let
(a, r) = runState m s
in runState (k a) r
get = State $ \s -> (s, s)
put s = State $ \_ -> ((), s)
</code></pre>
<p>Now try to expand your <code>tick</code> example even further by manually inlining <code>>>=</code>, <code>return</code>, <code>get</code> and <code>put</code>. Hopefully it will get more clear how State works.</p>
http://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related/1796003#17960036Answer by Tom Lokhorst for Can somebody walk me through this Haskell function (State monad related)?Tom Lokhorst2009-11-25T10:25:06Z2009-11-25T10:25:06Z<p>You're completely right. The "result" of <code>tick</code> "function" is the initial value of the state.</p>
<p>Now of course, <code>tick</code> isn't the real "function", but a computation that can read and write <em>state</em> before producing a result.<br>
In this case, the <em>state</em> is updated, but you're still returning the original value of the state:</p>
<pre><code>-- 4 is the inital state
ghci> runState tick 4
(4, 5)
-- 4 is the result of the tick computation, 5 is the updated state
</code></pre>
<p>In this case, since you're never inspecting the state again inside <code>tick</code>, you're not seeing the changed state. However, if some other computation happens after <code>tick</code>, it can see the updated state.</p>
<p>For example, doing <code>tick</code> twice (the second one will read the updated state):</p>
<pre><code>-- 4 is the inital state
ghci> runState (tick >> tick) 4
(5, 6)
-- 5 is the result of the tick computation executed twice,
-- 6 is the updated state
</code></pre>
http://stackoverflow.com/questions/1715386/is-it-possible-to-use-unary-function-instead-of-binary-in-flip/1715542#17155422Answer by Tom Lokhorst for Is it possible to use unary function instead of binary in `flip`?Tom Lokhorst2009-11-11T14:35:19Z2009-11-11T14:35:19Z<p><a href="#1715466" rel="nofollow">Nefrubyr</a> explains it very well.<br>
Another way to (hopefully) make this a bit more intuitive is to think of the function application operator <code>($)</code>.</p>
<p><code>($)</code> is a specialized form of <code>id</code>:</p>
<pre><code>($) :: (a -> b) -> (a -> b)
($) = id
</code></pre>
<p>I've seen the definition <code>(#) = flip ($)</code>, such that you can write the argument before the function its applied to: <code>obj # show</code>.</p>
<p>Obviously, since <code>($)</code> is just a specialized form of <code>id</code>, you could also write: <code>(#) = flip id</code></p>
http://stackoverflow.com/questions/1704421/cabal-not-installing-dependencies-when-needing-profiling-libraries/1709805#17098054Answer by Tom Lokhorst for Cabal not installing dependencies when needing profiling libraries?Tom Lokhorst2009-11-10T17:41:02Z2009-11-10T17:41:02Z<p>I've enabled <code>library-profiling: True</code> in my <code>~/.cabal/config</code> file. From then on, any new installations will automatically enable profiling.</p>
<p>Unfortunately that still means I had to manually reinstall for the old packages already installed. Although, after a while of doing this manually, I <em>now</em> have most packages reinstalled with profiling enabled...</p>
http://stackoverflow.com/questions/1706154/replacing-characters-with-numbers-in-haskell/1706458#17064588Answer by Tom Lokhorst for Replacing characters with numbers in HaskellTom Lokhorst2009-11-10T08:47:32Z2009-11-10T08:53:08Z<p>The <code>ord</code> function in the <code>Data.Char</code> module gives an integer code for each character. Given that, this would be the function you're looking for:</p>
<pre><code>import Data.Char
replace :: Char -> Int
replace c = ord c - ord 'A' + 1
</code></pre>
<p>I'm not sure if <code>ord c</code> will return the ASCII code for a character, or the unicode codepoint, or if the result is machine dependent. To abstract from that, we simply subtract the code for <code>'A'</code> from the result, and add <code>1</code> because we want the alphabet to start at <code>1</code> instead of <code>0</code>.</p>
<p>An easy way to find to find such a function is <a href="http://haskell.org/hoogle/" rel="nofollow">Hoogle</a>.<br>
There you can search for functions in the standard Haskell packages by entering its type. In this case <code>ord</code> is the second result when searching for <a href="http://haskell.org/hoogle/?q=Char%20-%3E%20Int" rel="nofollow"><code>Char -> Int</code></a>.</p>
http://stackoverflow.com/questions/1618838/laziness-and-tail-recursion-in-haskell-why-is-this-crashing/1618865#16188653Answer by Tom Lokhorst for Laziness and tail recursion in Haskell, why is this crashing?Tom Lokhorst2009-10-24T19:40:19Z2009-10-24T19:55:13Z<p>You are right in your understanding that <code>seq s (s+x)</code> forces the evaluation of <code>s</code>. But it doesn't force <code>s+x</code>, therefore you're still building up thunks.</p>
<p>By using <code>$!</code> you can force the evaluation of the addition (two times, for both arguments). This achieves the same effect as using the bang patterns:</p>
<pre><code>mean = go 0 0
where
go s l [] = s / fromIntegral l
go s l (x:xs) = ((go $! s+x) $! l+1) xs
</code></pre>
<p><hr /></p>
<p>The use of the <code>$!</code> function will translate the <code>go $! (s+x)</code> to the equivalent of:</p>
<pre><code>let y = s+x
in seq y (go y)
</code></pre>
<p>Thus <code>y</code> is first forced into <em>weak head normal form</em>, which means that the outermost function is applied. In the case of <code>y</code>, the outermost function is <code>+</code>, thus <code>y</code> is fully evaluated to a number before being passed to <code>go</code>.</p>
<p><hr /></p>
<p>Oh, and you probably got the infinite type error message because you didn't have the parenthesis in the right place. I got the same error when I first wrote your program down :-)</p>
<p>Because the <code>$!</code> operator is right associative, without parenthesis <code>go $! (s+x) $! (l+1)</code> means the same as: <code>go $! ((s+x) $! (l+1))</code>, which is obviously wrong.</p>
http://stackoverflow.com/questions/27731/whats-wrong-with-c/27794#277947Answer by Tom Lokhorst for What's wrong with C#?Tom Lokhorst2008-08-26T11:41:03Z2009-10-06T00:00:43Z<p>A bit off topic, but anyway...</p>
<blockquote>
<p>...you can't do this for instance:</p>
<pre><code>List<object> myList = new List<string>();
</code></pre>
</blockquote>
<p>No, because that doesn't make sense. That way you could add objects that aren't strings into the <code>List<string></code>, like so:</p>
<pre><code>List<string> strList = new List<string>();
List<object> objList = strList; // Both variables point to the same list
objList.Add(new object()); // Now you add a object into the strList
</code></pre>
<p><strong>Update:</strong></p>
<p>I just saw a talk by <a href="http://en.wikipedia.org/wiki/Anders%5FHejlsberg" rel="nofollow">Anders Hejlsberg</a> on <a href="http://channel9.msdn.com/pdc2008/TL16/" rel="nofollow">the future of C#</a>, where he says C# 4.0 will add <em>safe</em> co- and contra-variance. That is, in C# 4.0 you will be able to do this:</p>
<pre><code>List<string> strList = new List<string>();
IEnumerable<object> objList = strList;
foreach (var o in objList) Console.WriteLine(o.ToString());
</code></pre>
<p>For more information on C# 4.0, see the <a href="http://channel9.msdn.com/pdc2008/TL16/" rel="nofollow">talk</a> or <a href="http://code.msdn.microsoft.com/csharpfuture" rel="nofollow">MSDN</a>.</p>
http://stackoverflow.com/questions/1522104/how-to-programmatically-retrieve-ghc-package-information/1522181#15221810Answer by Tom Lokhorst for How to programmatically retrieve GHC package information?Tom Lokhorst2009-10-05T20:23:10Z2009-10-05T20:23:10Z<p>If you're using cabal to configure and build your program/library you can used the autogenerated Paths_* module.</p>
<p>For example, if you have a <code>foo.cabal</code> file, cabal will generate a <code>Paths_foo</code> module (see its source under <code>dist/build/autogen</code>) which you can import. This module exports a function <code>getLibDir :: IO FilePath</code> which has the value you're looking for.</p>
http://stackoverflow.com/questions/1475896/haskell-function-composition/1475927#147592717Answer by Tom Lokhorst for Haskell function compositionTom Lokhorst2009-09-25T07:39:35Z2009-09-25T07:39:35Z<p>Function composition is a way to "compose" two functions together into a single function. Here's an example:</p>
<p>Say you have these functions:</p>
<pre><code>even :: Int -> Bool
not :: Bool -> Bool
</code></pre>
<p>and you want to define your own <code>myOdd :: Int -> Bool</code> function using the two above.</p>
<p>The obvious way to do this is the following:</p>
<pre><code>myOdd :: Int -> Bool
myOdd x = not (even x)
</code></pre>
<p>But this can be done more succinctly using function composition:</p>
<pre><code>myOdd :: Int -> Bool
myOdd = not . even
</code></pre>
<p>The <code>myOdd</code> functions behave exactly the same, but the second one is created by "glue-ing" two functions together.</p>
<p>A scenario where this is especially useful is to remove the need for an explicit lambda. E.g:</p>
<pre><code>map (\x -> not (even x)) [1..9]
</code></pre>
<p>can be rewritten to:</p>
<pre><code>map (not . even) [1..9]
</code></pre>
<p>A bit shorter, less room for errors.</p>
http://stackoverflow.com/questions/1259013/extjs-datefield-using-different-display-format0ExtJS DateField using different display formatTom Lokhorst2009-08-11T08:13:25Z2009-08-11T20:39:41Z
<p>I'm using a <a href="http://extjs.com" rel="nofollow">ExtJS</a> <a href="http://extjs.com/deploy/ext/docs/output/Ext.form.DateField.html" rel="nofollow">DateField</a> control in an ASP.NET MVC web application.</p>
<p>I've set <code>format</code> property to "Y-m-d", so that it'll correctly parse the "2009-08-11" format from the server, and will also send it back in that format.</p>
<p>However, I'd like to display the data in a different, more user-friendly, format, particularly "d mmm yyyy" in Spanish.</p>
<p>I can't seem figure out how to do this. I don't think the <code>altFormats</code> property is of help, since that just adds more parse formats.</p>
<p>Is it possible to use a different parse format from display format? Or am I going about this the wrong way?</p>
http://stackoverflow.com/questions/1253340/what-is-the-ecosystem-for-haskell-web-development/1255103#12551038Answer by Tom Lokhorst for What is the ecosystem for Haskell web development?Tom Lokhorst2009-08-10T14:10:17Z2009-08-10T14:18:23Z<p>First of all, a disclaimer: I've never done any Haskell web development, so I don't speak from experience.</p>
<p>If you look at the <a href="http://hackage.haskell.org/packages/archive/pkg-list.html#cat:web" rel="nofollow">Web category</a> on Hackage, there are lots of web-related packages.</p>
<p>I think most Haskell web application run on a custom server (possibly using Apache's <code>mod_proxy</code> or IIS's Advanced Request Routing as a front end). However, there are also some FastCGI bindings.</p>
<p>The most prominent Haskell webserver/framework/datastorage infrastruction is <a href="http://happstack.com/" rel="nofollow">Happstack</a>, which is interesting for several reasons, the most obvious being that it stores all its state in-memory and doesn't use a relational database.</p>
<p>Another more recent webserver interface is <a href="http://github.com/nfjinjing/hack/tree/master" rel="nofollow">hack</a>, which I don't know much about except that the 1 minute tutorial looks interesting.</p>
<p>There are many more webservers/frameworks in Haskell, but these two are just the ones I know of the top of my head.</p>
http://stackoverflow.com/questions/1220638/haskell-hello-world-eclipse-ide/1220697#12206973Answer by Tom Lokhorst for Haskell Hello world, eclipse IDETom Lokhorst2009-08-03T04:48:35Z2009-08-03T04:48:35Z<p>I haven't used EclpiseFP in years, so bear that in mind.</p>
<p>What appears to be happening is that EclipseFP is loading GHCi in the console.
GHCi is an interactive Haskell shell, in which you can evaluate simple expressions. It also apparently loaded your module <code>Main</code>, so you can use GHCi to call functions in your module.</p>
<p>If you type in <code>:main</code> in the console, it will run you program and print "Hello world!", you could also call other functions you define in your program or standard Haskell functions.</p>
<p>However, what you may want to do is set EclipseFP to execute your program when you run, and I can't remember how to do that, probably somewhere in the "Run" menu.</p>
http://stackoverflow.com/questions/1184296/why-can-haskell-handle-very-large-numbers-easily/1184524#11845246Answer by Tom Lokhorst for Why can Haskell handle very large numbers easily?Tom Lokhorst2009-07-26T13:00:04Z2009-07-26T13:00:04Z<p>Numeric literals in Haskell are overloaded so that they can represent multiple concrete types (like <code>Int</code>, <code>Integer</code>, <code>Float</code> or even <code>MyOwnNumber</code>).</p>
<p>You can manually chose a specific type by providing type information, like so:</p>
<pre><code>x = 4 :: Int
y = 4 :: Integer
z = 4 :: Float
</code></pre>
<p>These three values have different types and operations performed on these will behave differently.</p>
<p>The exact size of an <code>Int</code> is implementation dependent but can be something like 28 bits, this type behaves like a Java primitive <code>int</code>, e.g. it will overflow.</p>
<p>An <code>Integer</code> is a type that can contain arbitrary-precision integers, like the Java <a href="http://java.sun.com/javase/6/docs/api/java/math/BigInteger.html" rel="nofollow">BigInteger</a>.</p>
<p>And a <code>Float</code> is like a Java <code>float</code>, using floating point arithmetic.</p>
<p>Just like numeric literals, many operators are also overloaded (using <a href="http://www.haskell.org/tutorial/classes.html" rel="nofollow">type classes</a>), and can therefor be used with the different types. So the <code>+</code> operator can work with both <code>Int</code>s and <code>Float</code>s.</p>
<p>In your case, since you didn't provide any type information, the interpreter will default to the <code>Integer</code> type. This means that for the <code>^</code> operator, it will also choose the <code>Integer</code> instance. Allowing for arbitrary-precision integer calculations.</p>
http://stackoverflow.com/questions/1183772/is-there-a-repository-of-test-input-with-answers-for-algorithms-especially-gra/1183964#11839644Answer by Tom Lokhorst for Is there a repository of test input, with answers, for algorithms (especially graph algorithms)?Tom Lokhorst2009-07-26T07:22:39Z2009-07-26T07:22:39Z<p>I don't know much about graph algorithms or graph test sets, so this isn't really an answer to your question. But since your implementing this is Haskell: Have you looked at <strong><a href="http://www.cs.chalmers.se/~rjmh/QuickCheck/manual.html" rel="nofollow">QuickCheck</a></strong>?</p>
<p>In case you already know QuickCheck, this isn't relevant, but in case you don't, here's a little teaser:</p>
<p>QuickCheck is a testing framework for automated tests in Haskell that works by specifying <em>properties that should hold</em> instead of manual test cases. QuickCheck will generate a large number of random test data to see if these properties hold. If the property fails to hold, it will try to find the smallest input for which the property fails and report that error.</p>
<p>For example, if you've written a list-sort function and want to test if the length of the list doesn't change during sorting:</p>
<pre><code>prop_lengthDoesntChange :: [Int] -> Bool
prop_lengthDoesntChange xs = length xs == length (sort xs)
</code></pre>
<p>And you can call run QuickCheck like so:</p>
<pre><code>Test.QuickCheck> quickCheck prop_lengthDoesntChange
OK, passed 100 tests.
</code></pre>
<p>The 100 tests that were run are all based on the type of the property. Since <code>prop_lengthDoesntChange</code> takes a list of <code>Int</code>s, QuickCheck will generate things like empty lists, lists will negative numbers, singleton lists and larger lists.</p>
<p>In case of the <code>sort</code> function, testing whether the length doesn't change isn't sufficient enough, you'd probably also want other properties. In fact, in general you write a lot of simple properties to test a single function, but these properties are mostly small and simple.</p>
<p>I think QuickCheck is a good testing and debugging tool, if you're not familiar with it, you should definitely check it out.</p>
http://stackoverflow.com/questions/1160702/values-inside-monads-nested-in-data-structures/1160766#11607665Answer by Tom Lokhorst for Values inside monads, nested in data structures?Tom Lokhorst2009-07-21T18:07:04Z2009-07-21T19:10:20Z<p>You could use the <code>liftM*</code> function from the <a href="http://haskell.org/ghc/docs/latest/html/libraries/base/Control-Monad.html" rel="nofollow">Control.Monad</a> module, or the <code>liftA*</code> functions for <a href="http://haskell.org/ghc/docs/latest/html/libraries/base/Control-Applicative.html" rel="nofollow">applicatives</a>.</p>
<p><code>liftM</code> allows you to lift a pure function to work inside a Monad, e.g.:</p>
<pre><code>ghci> let s = return "Hello" :: IO String
ghci> liftM reverse s
"olleH"
</code></pre>
<p>This way you don't have to manually write things like "<code>s >>= \x -> return (reverse x)</code>" everywhere.</p>
<p>Although, this won't help you with your <code>[(String, Int, IO Int)]</code> example, if the pure function you have deals with a <code>[(String, Int, Int)]</code>. Since the third element in the tuple really isn't an <code>Int</code>.</p>
<p>In that case I'd suggest to first write a function <code>[(String, Int, IO Int)] -> IO [(String, Int, Int)]</code> and that apply the lifted pure function.</p>
<p><hr /></p>
<p>This is the most general function I could come up with to do this:</p>
<pre><code>conv :: Monad m => (f (m a) -> m (f a)) -> [f (m a)] -> m [f a]
conv f = sequence . map f
</code></pre>
<p>You can call it like so:</p>
<pre><code>liftTrd :: Monad m => (a, b, m c) -> m (a, b, c)
liftTrd (x, y, mz) = mz >>= \z -> return (x, y, z)
conv liftTrd [("hi", 4, return 2)] :: IO [(String, Int, Int)]
</code></pre>
<p>This function will only work if you have a single monad that's somewhere deep in a type. If you have multiple, I think you should really be thinking about the type your working in with and see if you can't make it simpler.</p>
http://stackoverflow.com/questions/1156954/haskell-can-i-use-a-where-clause-after-a-block-with-bind-operators/1157500#11575006Answer by Tom Lokhorst for Haskell: Can I use a where clause after a block with bind operators (>>=)?Tom Lokhorst2009-07-21T06:02:46Z2009-07-21T09:45:59Z<p>As ephemient <a href="#1157283" rel="nofollow">explains</a>, you can't use <code>where</code> clauses the way you do.</p>
<p>The error happens because in this code:</p>
<pre><code>main =
return [1..10] >>= \list ->
print list'
where
list' = reverse list
</code></pre>
<p>The <code>where</code>-clause is attached to the main function.</p>
<p>Here's that same function with more parentheses:</p>
<pre><code>main = return [1..10] >>= (\list -> print list')
where
list' = reverse list
</code></pre>
<p>I think its fairly obvious why you get the "<code>out of scope</code>" error: The binding for <code>list</code> is deep inside the <code>main</code> expression, not something the <code>where</code> clause can reach.</p>
<p>What I usually do in this situation (and I've been bitten by the same thing a bunch of times). I simply introduce a function and pass the <code>list</code> as an argument.</p>
<pre><code>main = do
list <- return [1..10]
let list' = f list
print list'
where
f list = reverse list -- Consider renaming list,
-- or writing in point-free style
</code></pre>
<p>Of course, I imagine your actual code in the <code>f</code> function is a lot more that just <code>reverse</code> and that's why you want it inside a <code>where</code> clause, instead of an inline <code>let</code> binding. If the code inside the <code>f</code> function is very small, I'd just write it inside the <code>let</code> binding, and wouldn't go through the overhead of introducing a new function.</p>
http://stackoverflow.com/questions/1133800/haskell-monadic-takewhile/1134116#11341169Answer by Tom Lokhorst for Haskell: monadic takeWhile?Tom Lokhorst2009-07-15T21:11:25Z2009-07-16T17:11:57Z<p><strong>Edit:</strong> Now I see what you're looking for.</p>
<p>gbacon <a href="#1138153" rel="nofollow">posted</a> a nice <code>sequenceWhile</code> function, which is almost the "primitive" you need.</p>
<p>Actually, since you're only interested in the side effects, <code>sequenceWhile_</code> should be enough. Here's a definition (again, inspired by <a href="#1138153" rel="nofollow">gbacon</a>, vote him up!):</p>
<pre><code>sequenceWhile_ :: (Monad m) => (a -> Bool) -> [m a] -> m ()
sequenceWhile_ p xs = foldr (\mx my -> mx >>= \x -> when (p x) my)
(return ()) xs
</code></pre>
<p>You call this like so:</p>
<pre><code>Prelude Control.Monad> sequenceWhile (<4) $ map f [1..]
</code></pre>
<p><hr /></p>
<p><strong>Original answer:</strong></p>
<p>You can't just "unlift" the values from the <code>IO</code> Monad for use with <code>takeWile</code>, but you can "lift" <code>takeWhile</code> for use within a Monad!</p>
<p>The <a href="http://haskell.org/ghc/docs/latest/html/libraries/base/Control-Monad.html#v:liftM" rel="nofollow">liftM</a> function will take a function <code>(a -> b)</code> to a function <code>(m a -> m b)</code>, where <code>m</code> is a Monad.</p>
<p>(As a side note, you can find a function like this by searching for its type on <a href="http://haskell.org/hoogle/" rel="nofollow">Hoogle</a>, in this case by searching for: <a href="http://haskell.org/hoogle/?q=Monad%20m%20=%3E%20%28a%20-%3E%20b%29%20-%3E%20%28m%20a%20-%3E%20m%20b%29" rel="nofollow"><code>Monad m => (a -> b) -> (m a -> m b)</code></a>)</p>
<p>With <code>liftM</code> you can do this:</p>
<pre><code>Prelude> :m + Control.Monad
Prelude Control.Monad> let f x = print x >> return x
Prelude Control.Monad> liftM (takeWhile (<4)) $ mapM f [0..5]
0
1
2
3
4
5
[0,1,2,3]
</code></pre>
<p>Now, this might not be what you wanted. The <code>mapM</code> will apply the <code>f</code> function to the entire list in sequence, before returning a list. That resulting list is then passed to the lifted <code>takeWhile</code> function.</p>
<p>If you want to stop printing after the third element, you'll have to stop calling print. That means, don't apply <code>f</code> to such an element. So, you'll end up with something simple like:</p>
<pre><code>Prelude> mapM_ f (takeWhile (<4) [0..5])
</code></pre>
<p><hr /></p>
<p>By the way, should you wonder <em>why</em> <code>mapM</code> will first print everything, before returning the list. You can see this by replacing the functions with their definitions:</p>
<pre><code>mapM f [0..1]
=
sequence (map f [0..1])
=
sequence (f 0 : map f [1..1])
=
sequence (f 0 : f 1 : [])
=
sequence ((print 0 >> return 0) : f 1 : [])
=
sequence ((print 0 >> return 0) : (print 1 >> return 1) : [])
=
do x <- (print 0 >> return 0)
xs <- (sequence ((print 1 >> return 1) : []))
return (x:xs)
=
do x <- (print 0 >> return 0)
xs <- (do y <- (print 1 >> return 1)
ys <- sequence ([])
return (y:ys))
return (x:xs)
=
do x <- (print 0 >> return 0)
xs <- (do y <- (print 1 >> return 1)
ys <- return []
return (y:ys))
return (x:xs)
=
do x <- (print 0 >> return 0)
xs <- (do y <- (print 1 >> return 1)
return (y:[]))
return (x:xs)
=
do x <- (print 0 >> return 0)
xs <- (print 1 >> return (1:[]))
return (x:xs)
=
do x <- (print 0 >> return 0)
print 1
return (x:1:[])
=
do print 0
print 1
return (0:1:[])
</code></pre>
<p>This process of replacing functions with their definitions is called <em>equational reasoning</em>.</p>
<p>If I didn't make any mistakes, you can now (hopefully) see that <code>mapM</code> (using <code>sequence</code>) first prints everything, and <em>then</em> returns a list.</p>
http://stackoverflow.com/questions/1124753/for-vs-foreach-loop-in-c/1124943#11249435Answer by Tom Lokhorst for For vs Foreach loop in C#Tom Lokhorst2009-07-14T12:03:23Z2009-07-14T14:03:49Z<p><em>Note: this answer applies more to Java than it does to C#, since C# doesn't have an indexer on <code>LinkedLists</code>, but I think the general point still holds.</em></p>
<p>If the <code>list</code> you're working with happens to be a <code>LinkedList</code>, the performance of the indexer-code (<em>array-style</em> accessing) is a lot worse than using the <code>IEnumerator</code> from the <code>foreach</code>, for large lists.</p>
<p>When you access element 10.000 in a <code>LinkedList</code> using the indexer syntax: <code>list[10000]</code>, the linked list will start at the head node, and traverse the <code>Next</code>-pointer ten thousand times, until it reaches the correct object. Obviously, if you do this in a loop, you will get:</p>
<pre><code>list[0]; // head
list[1]; // head.Next
list[2]; // head.Next.Next
// etc.
</code></pre>
<p>When you call <code>GetEnumerator</code> (implicitly using the <code>forach</code>-syntax), you'll get an <code>IEnumerator</code> object that has a pointer to the head node. Each time you call <code>MoveNext</code>, that pointer is moved to the next node, like so:</p>
<pre><code>IEnumerator em = list.GetEnumerator(); // Current points at head
em.MoveNext(); // Update Current to .Next
em.MoveNext(); // Update Current to .Next
em.MoveNext(); // Update Current to .Next
// etc.
</code></pre>
<p>As you can see, in the case of <code>LinkedList</code>s, the array indexer method becomes slower and slower, the longer you loop (it has to go through the same head pointer over and over again). Whereas the <code>IEnumerable</code> just operates in constant time.</p>
<p>Of course, as <a href="#1124763" rel="nofollow">Jon said</a> this really depends on the type of <code>list</code>, if the <code>list</code> is not a <code>LinkedList</code>, but an array, the behavior is completely different.</p>
http://stackoverflow.com/questions/1119335/javascript-local-variable-declare/1119395#11193950Answer by Tom Lokhorst for Javascript local variable declareTom Lokhorst2009-07-13T13:19:43Z2009-07-13T13:25:19Z<p>Interesting question, never thought of something like this. But what is the usecase?</p>
<p>The reason you'd want to do something like this, is if you don't know the name of the variable. But then in that case, the only way to access the variable again would be using the same reference object. I.e. you could just use any old object to store data in.</p>
<p>Reading from such a reference object would be interesting for debugging purposes, but I don't see why you'd want to write to it.</p>
<p><strong>Edit:</strong></p>
<p>The example you posted doesn't convince me of the need for access to the local scope, since you still have the name <code>sex</code> hard coded in the alert. This could be implemented as:</p>
<pre><code>function x(arg)
{
container = {};
container[arg.name] = arg.value;
alert(container.sex);
}
</code></pre>
<p>Could you elaborate more on the example?</p>
http://stackoverflow.com/questions/1117629/mail-reader-using-haskell/1118213#11182131Answer by Tom Lokhorst for mail reader using haskellTom Lokhorst2009-07-13T08:05:50Z2009-07-13T08:12:59Z<p>I don't know where you got HaskellNet from, but if you look at the Hackage page for <a href="http://hackage.haskell.org/package/HaskellNet" rel="nofollow">HaskellNet</a>, there's Haddock documentation.</p>
<p>I've never used this library, so I can't speak from experience, but for example the functions defined in <a href="http://hackage.haskell.org/packages/archive/HaskellNet/0.2.1/doc/html/HaskellNet-POP3.html" rel="nofollow">POP3</a> and <a href="http://hackage.haskell.org/packages/archive/HaskellNet/0.2.1/doc/html/HaskellNet-SMTP.html" rel="nofollow">SMTP</a> seem pretty straightforward if you happen to know those protocols.</p>
<p>I don't think that library is meant as an end-user library with functions like <code>mail :: Address -> Message -> IO ()</code>, although <a href="http://hackage.haskell.org/packages/archive/HaskellNet/0.2.1/doc/html/HaskellNet-SMTP.html#v%3AsendMail" rel="nofollow">sendMail</a> comes pretty close.</p>
<p>Although, from looking at the <a href="http://darcs.haskell.org/SoC/haskellnet/" rel="nofollow">darcs source code repo</a>, it looks like the package hasn't been developed since december 2006.</p>
http://stackoverflow.com/questions/1024643/applescript-equivalent-of-continue/1035260#10352602Answer by Tom Lokhorst for Applescript equivalent of "continue"?Tom Lokhorst2009-06-23T21:10:25Z2009-06-23T21:10:25Z<p>After searching for this exact problem, I found this <a href="http://books.google.com/books?id=BYy0OKcwUxsC&pg=PA284&lpg=PA284&dq=applescript%2Bcontinue%2Bnext%2Biteration%2Brepeat" rel="nofollow">book extract</a> online. It exactly answers the question of how to skip the current iteration and jump straight to the next iteration of a <code>repeat</code> loop.</p>
<p>Applescript has <code>exit repeat</code>, which will completely end a loop, skipping all remaining iterations. This can be useful in an infinite loop, but isn't what we want in this case.</p>
<p>Apparently a <code>continue</code>-like feature does not exist in AppleScript, but here is a trick to simulate it:</p>
<pre><code>set aList to {"1", "2", "3", "4", "5"}
repeat with anItem in aList # actual loop
repeat 1 times # fake loop
set value to item 1 of anItem
if value = "3" then exit repeat # simulated `continue`
display dialog value
end repeat
end repeat
</code></pre>
<p>This will display the dialogs for 1, 2, 4 and 5.</p>
<p>Here, you've created two loops: the outer loop is your actual loop, the inner loop is a loop that repeats only once. The <code>exit repeat</code> will exit the inner loop, continuing with the outer loop: exactly what we want!</p>
<p>Obviously, if you use this, you will lose the ability to do a normal <code>exit repeat</code>.</p>
http://stackoverflow.com/questions/485174/programming-fonts/485309#48530934Answer by Tom Lokhorst for Programming FontsTom Lokhorst2009-01-27T21:21:22Z2009-06-19T13:30:30Z<p><a href="http://www.gringod.com/2006/11/01/new-version-of-monaco-font/" rel="nofollow"><strong>Monaco</strong></a></p>
<p>OS X<br />
<a href="http://en.wikipedia.org/wiki/Monaco%5F%28typeface%29" rel="nofollow">Wikipedia article</a></p>
<p><img src="http://upload.wikimedia.org/wikipedia/commons/1/14/Monaco1Sp.png" alt="Picture" /></p>
http://stackoverflow.com/questions/995781/haskell-polymorphism-and-lists/995887#9958873Answer by Tom Lokhorst for haskell polymorphism and listsTom Lokhorst2009-06-15T12:40:31Z2009-06-15T15:10:50Z<p>As Ganesh <a href="#995833" rel="nofollow">said</a>, you could indeed use GADTs to have more type safety. But if you don't want (or need) to, here's my take on this:</p>
<p>As you already know, all elements of a list need to be of the same type. It isn't very useful to have a list of elements of different types, because then your throwing away your type information.</p>
<p>In this case however, since you want throw away type information (you're just interested in the drawable part of the value), you would suggest to change the type of your values to something that is just drawable.</p>
<pre><code>type Drawable = IO ()
shapes :: [Drawable]
shapes = [draw (Circle 5 10), draw (Circle 20 30), draw (Rectangle 10 15)]
</code></pre>
<p>Presumably, your actual <code>Drawable</code> will be something more interesting than just <code>IO ()</code> (maybe something like: <code>MaxWidth -> IO ()</code>).</p>
<p>And also, due to lazy evaluation, the actual value won't be drawn until you force the list with something like <code>sequence_</code>. So you don't have to worry about side effects (but you probably already saw that from the type of <code>shapes</code>).</p>
<p><hr /></p>
<p>Just to be complete (and incorporate my comment into this answer): This is a more general implementation, useful if <code>Shape</code> has more functions:</p>
<pre><code>type MaxWith = Int
class Shape a where
draw :: a -> MaxWidth -> IO ()
size :: a -> Int
type ShapeResult = (MaxWidth -> IO (), Int)
shape :: (Shape a) => a -> ShapeResult
shape x = (draw x, size x)
shapes :: [ShapeResult]
shapes = [shape (Circle 5 10), shape (Circle 20 30), shape (Rectangle 10 15)]
</code></pre>
<p>Here, the <code>shape</code> function transforms a <code>Shape a</code> value into a <code>ShapeResult</code> value, by simply calling all the functions in the <code>Shape</code> class. Due to laziness, none of the values are actually computed until you need them.</p>
<p>To be honest, I don't think I would actually use a construct like this. I would either use the <code>Drawable</code>-method from above, or if a more general solution is needed, use GADTs. That being said, this is a fun exercise.</p>
http://stackoverflow.com/questions/876855/first-column-of-a-matrix-given-as-a-list-of-rows-in-haskell/876893#8768930Answer by Tom Lokhorst for First column of a matrix given as a list of rows in HaskellTom Lokhorst2009-05-18T09:35:00Z2009-05-18T09:35:00Z<blockquote>
<p>The following code will do the job:</p>
<pre><code>map head [[1,2,3],[4,5,6]]
</code></pre>
</blockquote>
<p>To expand on <a href="#876864" rel="nofollow">Jonas' answer</a>; <code>map</code> applies a function to each element of a list. The result of "mapping" a function over a list is a new list of a different type.</p>
<p>The input list you have here is of type <code>[[Int]]</code>, that means, each element in the list is a list of <code>Int</code>s. So you want a function that takes each of the sublists and returns its first element; That is <code>head</code>.</p>
<p>To sum up, <code>map</code> will take the function <code>head</code>, apply it to each of the sublists so that you will get a new list of type <code>[Int]</code> containing just the head (first element) of each list.</p>
http://stackoverflow.com/questions/874168/nested-if-in-haskell/874187#8741872Answer by Tom Lokhorst for nested if in haskellTom Lokhorst2009-05-17T08:56:56Z2009-05-17T08:56:56Z<p>An <code>if</code> construct in Haskell is a expression.
That means it must always evaluate to a value, so the <code>else</code> part is mandatory.</p>
<p>Also, the first part of <code>if</code> must be a boolean, so you can't call <code>index'</code> there, since that returns a <code>[Int]</code>, not a <code>Bool</code>.</p>
<p>I would say, start with something like this:</p>
<pre><code>if isEmpty a
then putStrLn "a is empty"
else if isEmpty b
then putStrLn "b is empty"
else putStrLn "neither are empty"
</code></pre>
http://stackoverflow.com/questions/870919/why-are-haskell-algebraic-data-types-closed/871002#87100217Answer by Tom Lokhorst for Why are Haskell algebraic data types "closed"?Tom Lokhorst2009-05-15T21:48:31Z2009-05-15T22:11:59Z<p>The fact that ADT are closed makes it a lot easier to write total functions. That are functions that always produce a result, for all possible values of its type, eg.</p>
<pre><code>maybeToList :: Maybe a -> [a]
maybeToList Nothing = []
maybeToList (Just x) = [x]
</code></pre>
<p>If <code>Maybe</code> were open, someone could add a extra constructor and the <code>maybeToList</code> function would suddenly break.</p>
<p>In OO this isn't an issue, when you're using inheritance to extend a type, because when you call a function for which there is no specific overload, it can just use the implementation for a superclass. I.e., you can call <code>printPerson(Person p)</code> just fine with a <code>Student</code> object if <code>Student</code> is a subclass of <code>Person</code>.</p>
<p>In Haskell, you would usually use encapsulation and type classes when you need to extent your types. For example:</p>
<pre><code>class Eq a where
(==) :: a -> a -> Bool
instance Eq Bool where
False == False = True
False == True = False
True == False = False
True == True = True
instance Eq a => Eq [a] where
[] == [] = True
(x:xs) == (y:ys) = x == y && xs == ys
_ == _ = False
</code></pre>
<p>Now, the <code>==</code> function is completely open, you can add your own types by making it an instance of the <code>Eq</code> class.</p>
<p><hr /></p>
<p>Note that there has been work on the idea of <a href="http://www.haskell.org/haskellwiki/Extensible%5Fdatatypes" rel="nofollow">extensible datatypes</a>, but that is definitely not part of Haskell yet.</p>
http://stackoverflow.com/questions/832828/haskell-do-nothing-io-or-if-without-else/833128#8331283Answer by Tom Lokhorst for Haskell "do nothing" IO, or if without elseTom Lokhorst2009-05-07T06:19:00Z2009-05-07T06:19:00Z<p>Also, as I suggested in <a href="http://stackoverflow.com/questions/819434/multiply-two-lists-element-by-element-in-haskell/819447#819447">another question</a>, you can use <a href="http://haskell.org/hoogle/" rel="nofollow">Hoogle</a> to find functions like <code>when</code>.</p>
<p>In Hoogle, you can enter the type signature, and it will try to find matching functions in the standard libraries by unifying the types and reordering arguments.</p>
<p>In your case, you can simply enter the type of your <code>doIf</code> function: <a href="http://haskell.org/hoogle/?hoogle=Bool%20-%3E%20IO%20%28%29%20-%3E%20IO%20%28%29" rel="nofollow">Bool -> IO () -> IO ()
</a>. <code>when</code> is the third answer here, its reverse <code>unless</code> is there also.</p>
http://stackoverflow.com/questions/830021/haskell-writing-text-files-and-parsing-them-back-to-original-format/832090#8320903Answer by Tom Lokhorst for Haskell: Writing text files and parsing them back to original formatTom Lokhorst2009-05-06T22:22:23Z2009-05-06T22:43:32Z<p>The <code>show</code>/<code>read</code> approach will work fine, I use it as well, but only for small values. On larger, more complex values <code>read</code> will be very slow.</p>
<p>This contrived example demonstrates the bad performance of <code>read</code>:</p>
<pre><code>data RevList a = (RevList a) :< a | Nil
deriving (Show, Read)
ghci> read "(((((((((((((((Nil)))))))))))))))" :: RevList Int
</code></pre>
<p>Also, <code>read</code> won't be able to read some valid Haskell expressions, especially ones that use infix constructors (like the <code>:<</code> in my example). The reason for this is that <code>read</code> is unaware of the fixity of operators. This is also why <code>show $ Nil :< 1 :< 2 :< 3</code> will generate a lot of seemingly redundant parentheses. </p>
<p>If you want to have serialization for bigger values, I'd suggest to use some other library like <a href="http://code.haskell.org/binary/" rel="nofollow">Data.Binary</a>. This will be somewhat more complex than a simple <code>show</code>, mainly because of the lack of <code>deriving Binary</code>. However, there are various generic programming solutions to give you <code>deriving</code>-like surrogates.</p>
<p><strong>Conclusion:</strong> I'd say, use the <code>show</code>/<code>read</code> solution until you reach its limits (probably once you start building actual applications), then start looking at something more scalable (but also more complex) like Data.Binary.</p>
<p><hr /></p>
<p>Side note: To those interested in parsers and more advanced Haskell stuff; The examples I gave came from the paper: <a href="http://www.cs.uu.nl/wiki/pub/Center/TTTAS/paper-read.pdf" rel="nofollow">Haskel Do You Read Me?</a>, on an alternative, <em>fast</em> <code>read</code>-like function.</p>
http://stackoverflow.com/questions/822979/haskell-printing-out-the-contents-of-a-list-of-tuples/823836#8238364Answer by Tom Lokhorst for Haskell: Printing out the contents of a list of tuplesTom Lokhorst2009-05-05T08:08:59Z2009-05-05T08:08:59Z<p>I would agree with <a href="#823415" rel="nofollow">ja</a> that you should split up your code in to two functions:</p>
<ul>
<li>A <em>pure</em> part: a function that takes your data structure and turns it into a string</li>
<li>An <em>impure</em> part, that renders that string to the console</li>
</ul>
<p>Here's a simple implementation:</p>
<pre><code>showTable :: Table -> String
showTable xs = concatMap format xs
where
format (a, b) = a ++ " : " ++ b ++ "\n"
display :: Table -> IO ()
display table = putStr (showTable table)
</code></pre>
<p>This design has two advantages:</p>
<p>For one, most of your `logic' is in the pure part of the code, which is nice, in a functional programming kind of way.</p>
<p>Secondly, and this is just simple software engineering principle; you now have a reusable function that you can use, should you ever want to format your data structure in another part of your code (seems likely).</p>
http://stackoverflow.com/questions/819620/compare-strings-in-haskell/819640#8196402Answer by Tom Lokhorst for Compare strings in haskellTom Lokhorst2009-05-04T10:50:03Z2009-05-04T12:14:26Z<p>The normal string compare only works on lexicographical ordering, not the length of strings.</p>
<p>So you'd have to write your own function to also check for the length:</p>
<pre><code>smaller :: String -> String -> Bool
smaller s1 s2 | length s1 < length s2 = True
| length s1 > length s2 = False
| otherwise = s1 < s2
</code></pre>
<p>Or a bit more general:</p>
<pre><code>compareStrings :: String -> String -> Ordering
compareStrings s1 s2 | length s1 < length s2 = LT
| length s1 > length s2 = GT
| otherwise = compare s1 s2
</code></pre>
<p>Example:</p>
<pre><code>ghci> compare "ab" "z"
LT
ghci> compareStrings "ab" "z"
GT
</code></pre>
<p><hr /></p>
<p>We were toying around with Monoids at university last week, and we came up with this lovely alternative <code>Ord</code> instance:</p>
<pre><code>instance Ord a => Ord [a] where
compare = comparing length
`mappend` comparing head `mappend` comparing tail
</code></pre>
<p>But if you don't quite understand this, I suggest you stick with the first definition ;-)</p>
http://stackoverflow.com/questions/1827645/haskell-typeclass/1827748#1827748Comment by Tom Lokhorst on Haskell typeclassTom Lokhorst2009-12-01T20:22:12Z2009-12-01T20:22:12ZIt's not just syntax — Haskell doesn't support type level lambda expressions at all. Apparently because it makes unification during type inference impossible. See: <a href="http://www.mail-archive.com/haskell-cafe@haskell.org/msg20984.html" rel="nofollow">mail-archive.com/haskell-cafe@haskell.org/…</a> (btw, the UHC/EHC referred to on that page, also <b>doesn't</b> support type level lambdas in Haskell syntax)http://stackoverflow.com/questions/1818487/xml-alternative-of-text-json-generic-for-haskell/1818617#1818617Comment by Tom Lokhorst on XML alternative of Text.JSON.Generic for HaskellTom Lokhorst2009-11-30T11:31:09Z2009-11-30T11:31:09Z@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.http://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related/1796003#1796003Comment by Tom Lokhorst on Can somebody walk me through this Haskell function (State monad related)?Tom Lokhorst2009-11-25T12:16:39Z2009-11-25T12:16:39ZIndeed, the state is being updated, but the return value, <code>n</code> stays the same. See my other answer <a href="http://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related/1796544#1796544" rel="nofollow" title="can somebody walk me through this haskell function state monad related">stackoverflow.com/questions/1795785/…</a>http://stackoverflow.com/questions/1704421/cabal-not-installing-dependencies-when-needing-profiling-librariesComment by Tom Lokhorst on Cabal not installing dependencies when needing profiling libraries?Tom Lokhorst2009-11-10T17:43:39Z2009-11-10T17:43:39ZWell, 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.http://stackoverflow.com/questions/1704421/cabal-not-installing-dependencies-when-needing-profiling-librariesComment by Tom Lokhorst on Cabal not installing dependencies when needing profiling libraries?Tom Lokhorst2009-11-09T23:48:43Z2009-11-09T23:48:43ZI've enabled <code>library-profiling: True</code> in my <code>~/.cabal/config</code> 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 <i>now</i> have most packages reinstalled with profiling enabled...http://stackoverflow.com/questions/293239/homework-doing-a-binary-search-on-some-elements-in-haskell/1703281#1703281Comment by Tom Lokhorst on Homework: Doing a binary search on some elements in HaskellTom Lokhorst2009-11-09T21:36:22Z2009-11-09T21:36:22Z@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.http://stackoverflow.com/questions/1696743/map-function-for-custom-n-ary-tree/1699540#1699540Comment by Tom Lokhorst on Map function for custom n-ary treeTom Lokhorst2009-11-09T10:56:20Z2009-11-09T10:56:20ZJust for completeness: You need the <code>derive</code> package (<a href="http://hackage.haskell.org/package/derive" rel="nofollow">hackage.haskell.org/package/derive</a>) for this to work. Also, as of GHC 6.12 you can simply use <code>deriving Functor</code> in your code (by using the <code>-XDerivingFunctor</code> extension).http://stackoverflow.com/questions/1411089/how-to-stop-ghc-from-generating-intermediate-files/1412191#1412191Comment by Tom Lokhorst on How to stop GHC from generating intermediate files?Tom Lokhorst2009-09-11T21:22:35Z2009-09-11T21:22:35ZThat'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 <code>cabal --init</code> command to setup a default working space, which would be quite useful.http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1348920#1348920Comment by Tom Lokhorst on What is the best functional language for scientific programmingTom Lokhorst2009-08-28T21:05:31Z2009-08-28T21:05:31Z@leon: From what I've heard, F# works fine on Mono as well.http://stackoverflow.com/questions/1304495/ghc-parse-error-which-i-do-not-understand/1304521#1304521Comment by Tom Lokhorst on GHC parse error which I do not understandTom Lokhorst2009-08-20T08:07:09Z2009-08-20T08:07:09ZIncidentally, <code>fromInteger</code> is also used by GHCi to do the "overloading" of numeric literals.http://stackoverflow.com/questions/1253340/what-is-the-ecosystem-for-haskell-web-development/1267831#1267831Comment by Tom Lokhorst on What is the ecosystem for Haskell web development?Tom Lokhorst2009-08-12T19:55:48Z2009-08-12T19:55:48ZWell, Tupil also does a lot of iPhone app development (in Objective C). They don't <i>just</i> do Haskell web apps.http://stackoverflow.com/questions/1259013/extjs-datefield-using-different-display-format/1260641#1260641Comment by Tom Lokhorst on ExtJS DateField using different display formatTom Lokhorst2009-08-11T14:58:45Z2009-08-11T14:58:45ZI assume that'll display just fine. The thing is, I'd like to have <code>yyyy-mm-dd</code> as the format of the string that is returned to the server. So, I can get the parsing to work with <code>altFormats</code>, but the visual format and "send-to-server" format seem to have been merged into the single <code>format</code> property.http://stackoverflow.com/questions/1259013/extjs-datefield-using-different-display-format/1259081#1259081Comment by Tom Lokhorst on ExtJS DateField using different display formatTom Lokhorst2009-08-11T10:21:44Z2009-08-11T10:21:44ZIt looks like <code>formatDate</code> 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...http://stackoverflow.com/questions/1259013/extjs-datefield-using-different-display-format/1259081#1259081Comment by Tom Lokhorst on ExtJS DateField using different display formatTom Lokhorst2009-08-11T10:16:56Z2009-08-11T10:16:56ZThose <code>formatDate</code> and <code>parseDate</code> 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.http://stackoverflow.com/questions/1259013/extjs-datefield-using-different-display-format/1259082#1259082Comment by Tom Lokhorst on ExtJS DateField using different display formatTom Lokhorst2009-08-11T10:10:37Z2009-08-11T10:10:37ZOh, I wasn't paying much attention to the generated HTML, apparently the date is in a CSS-hidden <code><div></code>, not a hidden <code><input></code> 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.