User Martijn - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T04:44:18Zhttp://stackoverflow.com/feeds/user/17439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1696743/map-function-for-custom-n-ary-tree/1700353#17003530Answer by Martijn for Map function for custom n-ary treeMartijn2009-11-09T10:59:08Z2009-11-09T10:59:08Z<p>While I think Rüdiger's answer is the best one I just wanted to add that in GHC 6.12 you can automatically derive a Functor instance for your datatype:</p>
<pre><code>{-# LANGUAGE -DeriveFunctor #-}
data NTree a = Leaf a | Node a [NTree a]
deriving Functor
</code></pre>
http://stackoverflow.com/questions/1677621/inheritence-to-extend-a-data-structure-in-haskell/1679248#16792483Answer by Martijn for Inheritence to extend a data structure in HaskellMartijn2009-11-05T09:03:52Z2009-11-05T09:03:52Z<p>Like Nathan said, modelling datatypes is completely different in Haskell from C++. You could consider the following approach:</p>
<pre><code>data Shape = Shape { name :: String, position :: Vector3d }
data Sphere = Sphere { sphereShape :: Shape, radius :: Float }
data Prism = Prism { prismShape :: Shape, width :: Float, height :: Float, depth :: Float }
</code></pre>
<p>In other words, model references to super classes as extra fields in your datatype. It easily extends to longer inheritance chains.</p>
<p>Don't use type classes, like ephemient suggests. These are used for overloading functions and that is not the issue here at all: your question concerns the modelling of <em>data</em>, not <em>behaviour</em>.</p>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/1678104/anyone-ever-flip/1679176#16791762Answer by Martijn for Anyone ever flip (<$>)Martijn2009-11-05T08:46:29Z2009-11-05T08:46:29Z<p>Personally I wouldn't use such an operators because then I have to learn two orders in which to read programs.</p>
http://stackoverflow.com/questions/1634911/can-liftm-differ-from-lifta/1635755#16357552Answer by Martijn for Can liftM differ from liftA?Martijn2009-10-28T08:01:16Z2009-10-28T08:01:16Z<p>They <em>can</em> differ, but they <em>shouldn't</em>.</p>
<p>They can differ because they can have different implementations: one is defined in an <code>instance Applicative</code> while the other is defined in an <code>instance Monad</code>. But if they indeed differ, then I'd say the programmer who wrote those instances wrote misleading code.</p>
<p>You are right: the functions exist as they do for historical reasons. People have strong ideas about things should have been.</p>
http://stackoverflow.com/questions/1587635/haddock-for-cabal-installed-modules/1587710#15877102Answer by Martijn for Haddock for Cabal-installed modules?Martijn2009-10-19T09:24:12Z2009-10-19T09:24:12Z<p>This is a <a href="http://hackage.haskell.org/trac/hackage/ticket/206" rel="nofollow">known issue</a>. As a workaround you can configure your Apache installation (if you have one) to serve your doc directory using <a href="http://thread.gmane.org/gmane.comp.lang.haskell.cafe/53531/focus=53572" rel="nofollow">this small PHP script</a>.</p>
http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1536510#15365102Answer by Martijn for Hidden features of HaskellMartijn2009-10-08T08:51:26Z2009-10-08T08:51:26Z<p><code>let 5 = 6 in ...</code> is valid Haskell.</p>
http://stackoverflow.com/questions/1534224/return-specific-type-within-haskell/1536498#15364983Answer by Martijn for Return specific type within HaskellMartijn2009-10-08T08:48:41Z2009-10-08T08:48:41Z<p>To add to sth's answer: Haskell is not object-oriented. It's not true that <code>Double</code> is a subclass of <code>Num</code>, so you cannot return a <code>Double</code> if you promise to return a polymorphic <code>Num</code> value, like you can in, say, Java.</p>
<p>When you write <code>getN :: Num a => a</code> you promise to return a value that is fully polymorphic within the <code>Num</code> constraint. Effectively this means that you can only use functions from the <code>Num</code> type class, such as <code>+</code>, <code>*</code>, <code>-</code> and <code>fromInteger</code>.</p>
http://stackoverflow.com/questions/1534557/haskell-recursive-problem-tiny-parser-check-variables/1536463#15364635Answer by Martijn for Haskell recursive problem, tiny parser. Check variablesMartijn2009-10-08T08:40:17Z2009-10-08T08:40:17Z<p>Here's something to think about:</p>
<p>The first field of your Let constructor is an <code>Expr</code>. But can it actually hold anything else than <code>Var</code>s? If not, you should reflect this by making that field's type, say, <code>String</code> and adapting the parser correspondingly. This will make your task a lot easier.</p>
<p>The standard trick to evaluating an expression with let-bindings (which you are doing) is to write a function</p>
<pre><code>type Env = [(String, Int)]
eval :: Expr -> Env -> Int
</code></pre>
<p>Note the extra argument for the environment. The environment keeps track of what variables are bound at any given moment to what values. Its position in the type means that you get to decide its value every time you call <code>eval</code> on child expressions. This is crucial! It also means you can have locally declared variables: binding a variable has no effect on its context, only on subexpressions.</p>
<p>Here are the special cases:</p>
<ul>
<li>In a <code>Var</code>, you want to <code>lookup</code> the variable name in the environment and return the value that is bound to it. (Use the standard Prelude function <code>lookup</code>.)</li>
<li>In a <code>Let</code>, you want to add an extra <code>(varname, value)</code> to the front of the environment list before passing it on to the child expression.</li>
</ul>
<p>I've left out some details, but this should be enough to get you going a long way. If you get stuck, ask another question. :-)</p>
<p>Oh, and I see you want to return a <code>Maybe</code> value to indicate failure. I suggest you first try without and use <code>error</code> to indicate unbound variables. When you have that version of <code>eval</code> working, adapt it to return <code>Maybe</code> values. The reason for this is that working with <code>Maybe</code> values makes the evaluation quite a bit more complicated.</p>
http://stackoverflow.com/questions/1524499/concatenating-a-list-of-numbers-into-one-integer-in-haskell/1524519#15245195Answer by Martijn for Concatenating a list of numbers into one integer in haskellMartijn2009-10-06T09:25:16Z2009-10-06T09:25:16Z<p>You can use this function to concatenate a list of numbers:</p>
<pre><code>concatNumbers :: [Int] -> String
concatNumbers = concat . map show
</code></pre>
<p>If you want the function to return the concatenation as a number, you can use <code>read</code>.</p>
http://stackoverflow.com/questions/1506840/haskell-compilation-problem/1508058#15080584Answer by Martijn for Haskell compilation problemMartijn2009-10-02T06:50:58Z2009-10-02T06:50:58Z<p>Do exactly what you did but pass <code>--make</code> to <code>ghc</code> as well.</p>
http://stackoverflow.com/questions/1398642/haskell-sample-projects/1398911#13989111Answer by Martijn for Haskell Sample ProjectsMartijn2009-09-09T10:48:13Z2009-09-09T10:48:13Z<p>Take a look at <a href="http://neilmitchell.blogspot.com/2009/01/small-scripts-with-haskell.html" rel="nofollow">this blog post by Neil Mitchell</a>. It shows an example of scripting in Haskell (your first example).</p>
<p>Is a web server a concrete enough application for you? There are several Haskell web servers out there.</p>
<p>Nowadays everyone posts their applications and libraries at <a href="http://hackage.haskell.org/packages/archive/pkg-list.html" rel="nofollow">Hackage</a>; you might want to take a look there, too.</p>
http://stackoverflow.com/questions/1339152/summation-notation-in-haskell/1339233#13392330Answer by Martijn for Summation notation in HaskellMartijn2009-08-27T06:38:53Z2009-08-27T06:38:53Z<p>There is no difference. That page is simply saying that <code>sum</code> is implemented using <code>foldl</code>. Just use <code>sum</code> whenever you need to calculate the sum of a list of numbers.</p>
http://stackoverflow.com/questions/1268307/producer-and-consumer-problem-in-haskell/1274760#12747601Answer by Martijn for producer and consumer problem in haskell?Martijn2009-08-13T21:39:36Z2009-08-13T21:39:36Z<p>Besides the stateful approaches mentioned by Norman and Don, you can also think of normal function application and laziness as producer and consumer.</p>
<p>Here is a producer for the natural numbers:</p>
<pre><code>nats = [1..]
</code></pre>
<p>And here is a consumer that computes the squares of those numbers:</p>
<pre><code>squares = map (\x -> x * x) nats
</code></pre>
<p>Producers such as <code>yield return</code> in C# or generators in Python can often be expressed like this: as simple lazy lists in Haskell.</p>
http://stackoverflow.com/questions/1237566/finding-the-leaves-of-an-inductively-defined-tree/1237688#12376880Answer by Martijn for Finding the leaves of an inductively-defined treeMartijn2009-08-06T08:46:01Z2009-08-06T08:46:01Z<pre><code>flatten node = node : concatMap flatten (genTree node)
</code></pre>
http://stackoverflow.com/questions/1217119/common-programming-mistakes-for-haskell-developers-to-avoid/1217716#12177162Answer by Martijn for Common programming mistakes for Haskell developers to avoid?Martijn2009-08-01T23:05:25Z2009-08-01T23:05:25Z<p>The difference between <code>[]</code> and <code>[[]]</code>: the empty list and the list with 1 element, namely the empty list. This one especially pops up in base cases of recursive functions.</p>
http://stackoverflow.com/questions/306284/haskell-typeclass-shorthand/1078236#10782361Answer by Martijn for Haskell Typeclass shorthandMartijn2009-07-03T07:41:38Z2009-07-03T07:41:38Z<p>No.</p>
<p>Your solution of a superclass implying the other classes is the closest to what you want that is possible in Haskell. Even though that requires manual instances of that new class it is sometimes used, for example in the <a href="http://hackage.haskell.org/package/rewriting" rel="nofollow">rewriting</a> library.</p>
<p>As CesarB mentioned class aliases do what you want (and more), but they're just a proposal that's been around for years now and have never been implemented, probably because there are numerous problems with it. Instead, various other proposals have popped up, but none of those were implemented either. (For a list of those proposals, see this <a href="http://haskell.org/haskellwiki/Comparing%5Fclass%5Falias%5Fproposals" rel="nofollow">Haskellwiki page</a>.) One of the projects at <a href="http://haskell.org/haskellwiki/Hac5" rel="nofollow">Hac5</a> was to modify the GHC to include a small subset of class aliases called <em>context synonyms</em> (which do exactly what you are asking for here and nothing more), but sadly it was never finished.</p>
http://stackoverflow.com/questions/395995/when-should-i-use-and-can-it-always-be-replaced-with-parentheses/1047587#10475871Answer by Martijn for When should I use $ (and can it always be replaced with parentheses)?Martijn2009-06-26T06:10:28Z2009-06-26T06:10:28Z<p>If I look at your question and the answers here, Apocalisp and you are both right:</p>
<ul>
<li><code>$</code> is preferred to parentheses <em>under certain circumstances</em> (see his answer)</li>
<li><code>foo (bar quux)</code> is certainly not bad style!</li>
</ul>
<p>Also, please check out <a href="http://stackoverflow.com/questions/940382/haskell-difference-between-dot-and-dollar-sign/940523#940523">difference between . (dot) and $ (dollar sign)</a>, another SO question very much related to yours.</p>
http://stackoverflow.com/questions/1016546/how-to-store-datetime-in-database-if-time-portion-is-optional/1016556#10165562Answer by Martijn for How to store datetime in database if time portion is optional?Martijn2009-06-19T06:13:31Z2009-06-19T06:13:31Z<p>The obvious answer is to use two separate fields; then you can use NULL values.</p>
<p>If you choose to use one field you will need to choose a magic time part that signifies "didn't enter a real time", which has the danger of coinciding with a real time (however unlikely).</p>
<p>Also, if you intend to use the date and time part separately often, then it might also be convenient to use separate fields; otherwise you will often need to use selection functions for extracting the relevant part of a field.</p>
http://stackoverflow.com/questions/720517/contrasting-c-generics-with-haskell-parameterized-types/1000868#10008684Answer by Martijn for Contrasting C# generics with Haskell parameterized typesMartijn2009-06-16T11:23:00Z2009-06-16T11:23:00Z<p>Another big difference is that C# generics don't allow abstraction over type constructors (i.e. kinds other than *) while Haskell does. Try translating the following datatype into a C# class:</p>
<pre><code>newtype Fix f = In { out :: f (Fix f) }
</code></pre>
http://stackoverflow.com/questions/996052/is-there-a-haskell-compiler-or-preprocessor-that-uses-strict-evaluation/996299#9962995Answer by Martijn for Is there a Haskell compiler or preprocessor that uses strict evaluation?Martijn2009-06-15T14:03:07Z2009-06-15T14:03:07Z<p>See also <a href="http://code.haskell.org/strict-ghc-plugin/" rel="nofollow">ghc-strict-plugin</a>, an example for <a href="http://hackage.haskell.org/trac/ghc/wiki/Plugins" rel="nofollow">GHC's plugin framework</a>, described in the <a href="http://www.haskell.org/sitewiki/images/f/f0/TMR-Issue12.pdf" rel="nofollow">Monad Reader 12</a>.</p>
http://stackoverflow.com/questions/963973/is-there-a-way-to-see-what-the-values-of-the-arguments-that-are-sent-into-a-metho/964001#9640011Answer by Martijn for Is there a way to see what the values of the arguments that are sent into a method in Java?Martijn2009-06-08T09:11:03Z2009-06-08T09:11:03Z<p>You will need to elaborate a bit more. Are you building your own compiler from Java source to bytecode? Are you building your own bytecode interpreter? Do you want to hook into an existing bytecode interpreter? The answer entirely depends on what phase you are focusing.</p>
<p>If you have access to the Java source, then aspect-oriented programming might work for you. You can use it to automatically weave your printArguments call into every normal method call.</p>
http://stackoverflow.com/questions/954894/hidden-features-of-http/954911#9549118Answer by Martijn for Hidden features of HTTPMartijn2009-06-05T08:57:26Z2009-06-05T08:57:26Z<p><strong>Obvious answer: PUT, DELETE, TRACE, OPTIONS, CONNECT methods</strong></p>
<p>Most people know about the GET and POST methods because that's what they use when building forms. Browsers also use HEAD a lot. The other methods are much less well-known; they are mostly used by more specific applications.</p>
http://stackoverflow.com/questions/211216/hidden-features-of-haskell/954901#9549015Answer by Martijn for Hidden features of HaskellMartijn2009-06-05T08:54:07Z2009-06-05T08:54:07Z<p><strong>Patterns in top-level bindings</strong></p>
<pre><code>five :: Int
Just five = Just 5
a, b, c :: Char
[a,b,c] = "abc"
</code></pre>
<p>How cool is that! Saves you that call to <code>fromJust</code> and <code>head</code> every now and then.</p>
http://stackoverflow.com/questions/952841/exemplary-haskell-game-code/954371#9543711Answer by Martijn for Exemplary Haskell Game CodeMartijn2009-06-05T05:20:47Z2009-06-05T05:20:47Z<p>Being something I wrote myself I can't comment on whether it was well-written, but a while ago I wrote the beginnings of a MUD driver called <a href="http://code.google.com/p/custard/source/browse/#svn/trunk" rel="nofollow">Custard</a>; I'd say that counts as an RPG. It's written in Haskell and uses mostly monadic style since that works really well for constructing MUDs. Since it uses one big state monad I've made heavy use of <a href="http://hackage.haskell.org/cgi-bin/hackage-scripts/package/data-accessor" rel="nofollow">data-accessor</a>; being familiar with that package will help in understanding the code.</p>
http://stackoverflow.com/questions/948111/sparse-arrays-in-haskell/950137#9501372Answer by Martijn for Sparse arrays in Haskell?Martijn2009-06-04T12:12:14Z2009-06-04T12:12:14Z<p><code>Data.Map (Int,Int) MyClass</code> is an excellent suggestion; try that first.</p>
<p>If you run into space problems with that, try <code>IntMap (IntMap MyClass)</code>. <code>IntMap</code>s (in module <code>Data.IntMap</code>) are <code>Map</code>s with <code>Int</code>s as keys; being specialised they are more efficient than generic maps. It might or might not make a significant difference.</p>
<p>There is also the <a href="http://cpoucet.wordpress.com/2009/04/18/flattening-datamap/" rel="nofollow">Scalable, adaptive persistent container types</a> project which might be of use to you. Those containers (including maps) use significantly less space than normal maps but they are slightly more complicated (although still reasonably easy in use).</p>
http://stackoverflow.com/questions/676663/what-do-i-return-if-the-return-type-of-a-method-is-void-not-void/881358#8813582Answer by Martijn for What do I return if the return type of a method is Void? (Not void!)Martijn2009-05-19T07:10:02Z2009-06-03T10:38:18Z<p>To make clear why the other suggestions you gave don't work:</p>
<p><code>Void.class</code> and <code>Void.TYPE</code> point to the same object and are of type <code>Class<Void></code>, not of <code>Void</code>. </p>
<p>That is why you can't return those values. <code>new Void()</code> would be of type <code>Void</code> but that constructor doesn't exist. In fact, <code>Void</code> has no public constructors and so cannot be instantiated: You can never have any object of type <code>Void</code> except for the polymorphic <code>null</code>.</p>
<p>Hope this helps! :-)</p>
http://stackoverflow.com/questions/940382/haskell-difference-between-dot-and-dollar-sign/940523#94052314Answer by Martijn for Haskell: difference between . (dot) and $ (dollar sign)Martijn2009-06-02T16:32:36Z2009-06-02T16:32:36Z<p>Also note that <code>($)</code> is the identity function specialised to function types. The identity function looks like this:</p>
<pre><code>id :: a -> a
id x = x
</code></pre>
<p>While <code>($)</code> looks like this:</p>
<pre><code>($) :: (a -> b) -> (a -> b)
($) = id
</code></pre>
<p>Note that I've intentionally added extra parentheses in the type signature.</p>
<p>Uses of <code>($)</code> can usually be eliminated by adding parenthesis (unless the operator is used in a section). E.g.: <code>f $ g x</code> becomes <code>f (g x)</code>. Uses of <code>(.)</code> are often slightly harder to replace; they usually need a lambda or the introduction of an explicit function parameter. For example:</p>
<pre><code>f = g . h
</code></pre>
<p>becomes</p>
<pre><code>f x = (g . h) x
</code></pre>
<p>becomes</p>
<pre><code>f x = g (h x)
</code></pre>
<p>Hope this helps!</p>
http://stackoverflow.com/questions/921972/what-are-zygo-meta-histo-para-futu-dyna-whatever-morphisms/922149#9221498Answer by Martijn for What are zygo/meta/histo/para/futu/dyna/whatever-morphisms?Martijn2009-05-28T17:25:30Z2009-05-28T17:25:30Z<p>Start with learning about catamorphisms; those are the easiest to grasp. You already know one: <code>foldr</code>!</p>
<p>Then go for anamorphisms (<code>unfoldr</code>) and paramorphisms. Only then go for the other Wikipedia articles/papers; by then they will be easier to understand.</p>
http://stackoverflow.com/questions/719939/how-do-you-pronounce-enum/906086#9060860Answer by Martijn for How do you pronounce "Enum"?Martijn2009-05-25T09:45:34Z2009-05-25T09:45:34Z<p>In Dutch we say "ay-nuhm".</p>
http://stackoverflow.com/questions/876948/higher-kinded-generics-in-java10Higher-kinded generics in JavaMartijn2009-05-18T09:50:50Z2009-05-25T03:29:53Z
<p>Suppose I have the following class:</p>
<pre><code>public class FixExpr {
Expr<FixExpr> in;
}
</code></pre>
<p>Now I want to introduce a generic argument, abstracting over the use of Expr:</p>
<pre><code>public class Fix<F> {
F<Fix<F>> in;
}
</code></pre>
<p>But Eclipse doesn't like this:</p>
<blockquote>
<p>The type F is not generic; it cannot be parametrized with arguments <Fix<F>></p>
</blockquote>
<p>Is this possible at all or have I overlooked something that causes this specific instance to break?</p>
<p>Some background information: in Haskell this is a common way to write generic functions; I'm trying to port this to Java. The type argument F in the example above has kind * -> * instead of the usual kind *. In Haskell it looks like this:</p>
<pre><code>newtype Fix f = In { out :: f (Fix f) }
</code></pre>
http://stackoverflow.com/questions/1587635/haddock-for-cabal-installed-modules/1587710#1587710Comment by Martijn on Haddock for Cabal-installed modules?Martijn2009-10-21T11:53:48Z2009-10-21T11:53:48ZHackage should be back up now. :-) Yes, it was down for a while. People were asking about it in the Haskell café as well.http://stackoverflow.com/questions/1568145/evaluating-parsed-expression-in-haskellComment by Martijn on Evaluating parsed expression in HaskellMartijn2009-10-15T13:13:55Z2009-10-15T13:13:55ZThis question is almost exactly the same, with the same datatypes, too. Perhaps reading the answers there is useful, too. <a href="http://stackoverflow.com/questions/1534557/haskell-recursive-problem-tiny-parser-check-variables/" rel="nofollow" title="haskell recursive problem tiny parser check variables">stackoverflow.com/questions/1534557/…</a>http://stackoverflow.com/questions/211216/hidden-features-of-haskell/1088522#1088522Comment by Martijn on Hidden features of HaskellMartijn2009-10-08T21:03:44Z2009-10-08T21:03:44ZThis gives a compiler error: Occurs check: cannot construct the infinite type: t = Maybe thttp://stackoverflow.com/questions/1398642/haskell-sample-projectsComment by Martijn on Haskell Sample ProjectsMartijn2009-09-09T10:42:39Z2009-09-09T10:42:39ZI felt sort of insulted but I also laughed out loud at your "oogiboogi teta panta sigma functor higher order amusements", so I'm having mixed feelings. :-)http://stackoverflow.com/questions/395995/when-should-i-use-and-can-it-always-be-replaced-with-parentheses/399433#399433Comment by Martijn on When should I use $ (and can it always be replaced with parentheses)?Martijn2009-06-26T06:02:06Z2009-06-26T06:02:06Z($ x) is easily replaced by (\f -> f x)http://stackoverflow.com/questions/1034204/equivalent-of-cs-as-in-java/1034213#1034213Comment by Martijn on Equivalent of c#'s 'as' in Java?Martijn2009-06-23T18:16:35Z2009-06-23T18:16:35ZThen perhaps the value you are trying to cast is not null? Try printing its type by asking for obj.getType().http://stackoverflow.com/questions/662041/theory-examples-of-reversible-parsers/664647#664647Comment by Martijn on Theory, examples of reversible parsers?Martijn2009-06-17T11:05:48Z2009-06-17T11:05:48ZAnother buzz word is "pretty printing" and "pretty printing combinators".http://stackoverflow.com/questions/662041/theory-examples-of-reversible-parsers/668098#668098Comment by Martijn on Theory, examples of reversible parsers?Martijn2009-06-17T11:05:09Z2009-06-17T11:05:09ZWhile Peter makes a valid point, refactoring programs discarding layout (whitespace) is annoying and discarding comments is just plain unacceptable for users.http://stackoverflow.com/questions/1006197/whats-wrong-with-this-htaccess-redirectComment by Martijn on What's wrong with this htaccess redirect?Martijn2009-06-17T10:25:02Z2009-06-17T10:25:02ZWhat does it do instead?http://stackoverflow.com/questions/968198/haskell-show-screwed-upComment by Martijn on Haskell: Show screwed up?Martijn2009-06-09T09:58:38Z2009-06-09T09:58:38ZCan you give us a specific use case of this? It would make understanding your intention easier.http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212767#212767Comment by Martijn on Hidden features of HaskellMartijn2009-06-05T08:48:15Z2009-06-05T08:48:15ZYour first example actually demonstrates an even more hidden feature of Haskell: you can use full patterns when defining values/functions!
http://stackoverflow.com/questions/211216/hidden-features-of-haskell/213229#213229Comment by Martijn on Hidden features of HaskellMartijn2009-06-05T08:43:53Z2009-06-05T08:43:53ZThat should be (>>=) = flip concatMap.http://stackoverflow.com/questions/944446/what-is-point-free-style-in-functional-programming/944496#944496Comment by Martijn on What is point free style in Functional Programming?Martijn2009-06-03T13:46:15Z2009-06-03T13:46:15ZI really dislike having to come up with new names for variables/arguments when I'm programming. That's one big reason I love point-free style!http://stackoverflow.com/questions/941699/merge-sorted-inputs-in-haskell/941828#941828Comment by Martijn on Merge sorted inputs in Haskell?Martijn2009-06-02T22:32:41Z2009-06-02T22:32:41Zephemient: both work fine. you could also use guards.http://stackoverflow.com/questions/887166/time-with-start-and-stop-button/887179#887179Comment by Martijn on Time with start and stop buttonMartijn2009-05-20T10:34:49Z2009-05-20T10:34:49ZLook for the Source tab on that page, then click Browse.