| CARVIEW |
Select Language
HTTP/2 200
cross-origin-resource-policy: cross-origin
etag: W/"52f551d74b636d4a93b41bbd43d37ddabfc79a166cbca944bf7068b2b02298b9"
date: Fri, 16 Jan 2026 00:11:41 GMT
content-type: application/atom+xml; charset=UTF-8
server: blogger-renderd
expires: Fri, 16 Jan 2026 00:11:42 GMT
cache-control: public, must-revalidate, proxy-revalidate, max-age=1
x-content-type-options: nosniff
x-xss-protection: 0
last-modified: Sun, 08 Sep 2024 02:03:09 GMT
content-encoding: gzip
content-length: 38199
x-frame-options: SAMEORIGIN
alt-svc: h3=":443"; ma=2592000,h3-29=":443"; ma=2592000
tag:blogger.com,1999:blog-21123659 2024-09-08T04:03:09.671+02:00 koweycode Hobby-hacking Eric kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com Blogger 171 1 25 tag:blogger.com,1999:blog-21123659.post-8835492323654998319 2013-03-17T09:33:00.002+01:00 2013-03-17T09:35:36.258+01:00 moved to erickow.com I've migrated my various blogs to <a href="https://erickow.com/blog.html">erickow.com</a>. Readers of this blog may more interested in and want to point their RSS readers to a limited set of posts instead, for example, those tagged <a href="https://erickow.com/tags/haskell.html">haskell</a> or <a href="https://erickow.com/tags/darcs">darcs</a> than the unified whole. (That said, I don't seem to blog very much these days anyway and tend to use G+ for my techie commentary.)<br />
<div>
<br />
<div>
Also if you have a Wordpress and/or Blogger blog you'd like to import to hakyll, you may be interested in my <a href="https://github.com/kowey/hakyll-convert">hakyll-convert</a> utility. </div>
</div>
kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 0 tag:blogger.com,1999:blog-21123659.post-6433791826330702587 2011-05-03T00:44:00.000+02:00 2011-05-03T00:44:13.249+02:00 untangling a cabal install problem <i>I sometimes have trouble translating abstract general explanations to my particular concrete cases. I hope that by sharing a very concrete situation I experienced, other users may recognise themselves and get unstuck on their own problems.</i><br />
<br />
I finally untangled out a cabal install problem that's been bugging me for some time, almost driving me to use cabal-dev on all my packages (which seems like it might be a bit inconvenient)<br />
<br />
So I have a fairly standard setup (at least, it was standard when I wrote this post), GHC 6.12.3 with the latest released Haskell Platform. I'm working on two packages, GenI and nltg-hillwalking simultaneously. Switching from one to the other is painful. When I try to install GenI typing "cabal install" results in this horribly disheartening sequence, where it installs random, haskell98, cpphs, haskell-src-exts, derive and finally GenI. If I then switch back to working on hillwalking, I then get this another discouraging sequence involving random (again!), QuickCheck, test-framework, ntlg-hillwalking. And going back to working on GenI, I go through the same pain again.<br />
<br />
It took me a while to work out that the problem was just the interaction between these two packages. Having had a chance to chat about this with Duncan and Ian, I got a bit of a clue about what the problem might be. Indeed, when I ran "cabal install --dry-run -v2", this little bit of output caught my eye:<br />
<div><div><br />
</div><pre><div style="font-family: 'Times New Roman'; margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px; white-space: normal;"><span class="Apple-style-span" style="font-family: monospace; white-space: pre;">In order, the following would be installed:</span></div></pre><pre>random-1.0.0.3 (reinstall) changes: time-1.1.4 -> 1.1.2.4
haskell98-1.0.1.1 (reinstall)
cpphs-1.11 (new package)
haskell-src-exts-1.10.2 (new package)
derive-2.4.2 (new package)
GenI-0.21 (new package)
</pre><br />
<div>See that little arrow? It says that the reason <i>random</i>, the cause of all my heartache, is being reinstalled because of it wants to depend on an older version of <i>time</i>. Why on earth would it want to do that? ... Oh, because I told it to. Apparently, some past version of myself decided to put this dependency in GenI.cabal: <code>time == 1.1.2.4</code></div><div><br />
</div><div>Oops!</div><div><br />
</div><div>I think the problem looks like this. GenI uses the derive package, which triggers a chain of dependencies all the way down to <i>random</i> and <i>time</i>. Unfortunately, GenI also directly depends on <i>time</i> but now we have an issue. I'm not entirely clear on why this causes a recompile as opposed to the more usual "this will likely cause an error" output (maybe the latter is only appropriate for direct dependencies, ie. if derive depended on time itself?). <br />
<br />
<div class="separator" style="clear: both; text-align: center;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVUT61UvzlMTGJpO3oS4wscqqAEQ7yLDZiXsrwL0cvXRIuCDbDeInyySFtaEqKtFPljU9joOC6rC0lMs6aphc777mkBsMwiazdrmqW-mvDQ2r_vRA-ZesuA6iiLr5p4gElay_Qxg/s1600/dep-pain.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="320" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVUT61UvzlMTGJpO3oS4wscqqAEQ7yLDZiXsrwL0cvXRIuCDbDeInyySFtaEqKtFPljU9joOC6rC0lMs6aphc777mkBsMwiazdrmqW-mvDQ2r_vRA-ZesuA6iiLr5p4gElay_Qxg/s320/dep-pain.png" width="172" /></a></div><br />
By forcing GenI to use this old version of <i>time</i>, I was indirectly forcing it to install a version of the <i>random</i> package that depends on this old version. In doing so, I would clobber the version of the random package that QuickCheck uses. <br />
<br />
Fixing the issue in GenI was relatively straightforward. Did I really need to be using such a constrained version of time? It turns out that <code>time == 1.1.*</code> works perfectly fine (taking advantage of the PVP promise of backwards compatibility in all A.B.* versions of a package). Just one little dependency and everything works a lot more smoothly.<br />
<br />
So what did I learn from this?<br />
<ol><li>take a deep breath - I think when I'm faced with these issues, I'm feeling really impatient to get on with my work. But solving the issue involves recognising just some silly little problem, which can be hard to do when I'm being impatient. So part of the trick is to defocus somehow and shift to poking mode.</li>
<li>use <code>cabal install --dry-run -v2</code> and study the end part : what packages are we trying to install and why? The -v2 is important because it tells you why packages are being installed.</li>
<li>??? hunt for the offending dependency - for me this was a simple case of staring at GenI.cabal. What if GenI depended on some library which in turn depended on time-1.1.2.4? I guess the answer would lie in the list of packages that cabal-install says it would install. The dependency must lie *somewhere* in the chain.</li>
</ol></div><div>If I understand correctly, this may actually an improvement over the pre GHC 6.12 days before the ABI hash was introduced. I don't actually know, but I could imagine there's something that'd make one random not-quite-compatible with the other, even if they're both version 1.0.0.3 and silently swapping one out for the other would cause subtle breakage. At least now, we know if something is wrong and we can fix it relatively easily by just reinstalling the missing package.<br />
<br />
This dependency stuff must be really tricky! It looks like there may be some work that could make life better, for example, a Nix-like approach where both versions of random 1.0.0.3 could co-exist. But we should be glad in the meantime that Duncan et al have not torn their hair out yet. (Just think of the pre-Cabal-install days if it helps, life's much better now, isn't it?)</div></div> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 1 tag:blogger.com,1999:blog-21123659.post-3501167867880608203 2011-04-19T18:42:00.008+02:00 2011-04-20T01:55:55.758+02:00 why darcs users care about consistency In the Darcs community, we've been discussing the recent blog posts saying that <a href="https://r6.ca/blog/20110416T204742Z.html">Git is inconsistent</a>, that it <a href="https://bramcohen.livejournal.com/74462.html">cannot be made to be consistent</a>.<br />
<br />
With Darcs being the foil to Git for the purposes of this discussion, I thought it would be useful if I cleared up a few points, particularly this first one:<br />
<h4>consistency is a usability issue</h4>When people say they like Darcs, they don't generally talk about it having a beautiful or elegant theory. Instead, they talk about how easy and simple it is to use, about how they never really had to grapple with a learning curve or feel stupid for doing something wrong.<br />
<div><br />
What makes Darcs so simple to use? Did it hit the right notes by accident or through David Roundy's good taste? Or is usability merely in the eye of the beholder? Some of these explanations may be true, but I think what lies at the heart of Darcs' usability is that it supports a very simple way of understanding a repository:<br />
<br />
<div style="text-align: center;">a darcs repository is a set of patches</div><div style="text-align: center;"><br />
</div>This mental model may not be suitable for everybody, and in the long run Darcs may need to improve its support for history tracking. But if you want to understand why, for all its current shortcomings, people continue to use and develop Darcs, you must appreciate how refreshingly simple the set-of-patches mental model can be. As a Darcs user you are freed from a lot of the artefacts of worrying about commit order. Collaborating with people is just question of shuffling patches around, with no merge states, no rebases, way fewer spurious dependencies to worry about.<br />
<br />
But simplicity is hard. In order to make this simple world view possible, Darcs has to guarantee a property that any ordering of patches allowed by Darcs commutation rules is equivalent. If Darcs gives you the option of skipping a patch, it has to work hard to make sure that if you include the patch later on, that the repository you get is equivalent. That's what the patch theory fuss is about. While it's useful that Darcs tends to attract purists and <a href="https://math.ucla.edu/~jjacobson/patch-theory">math geeks</a>, we're really not engaged in the pursuit of some sort of ivory tower theoretical elegance for its own sake. Ultimately what we're after is usability. <br />
<br />
A good user interface minimises work for the user, be it cognitive, memory or physical work. The joy of Darcs is being able to focus cognitive work on our real jobs, and not on babysitting version control systems. So when Russell O'Connor says that merges ought to be associative, he's not saying this to tick some sort of mathematical box, what I think he's really saying is as a Darcs user, he doesn't want to worry about the difference between pushing patches one at a time vs all in one go. Consistency is a usability issue.</div><div><h4>darcs is imperfect</h4>Darcs is very much a work in progress. Some users have felt let down by Darcs: whenever performance grew to be unacceptable for their repositories, when they hit one exponential merge too many, or when Darcs just plain did something wrong. Even our much vaunted usability has cracks at the edges, a confirmation prompt too many, an inconsistent flag set, a non-reversible operation or two.<br />
<br />
I particularly want to make sure I'm very clear about this point:<br />
<br />
<div style="text-align: center;">darcs patch theory is incomplete</div><div style="text-align: center;"><br />
</div>We still don't know how to cope with complicated conflicts. Moreover the implementation of our first two theories is somewhat buggy. Darcs copes well enough with most every day conflicts, but if a conflict gets hairy enough, Darcs will crash and emit a nasty message. This is one of the reasons why we don't recommend Darcs for large repositories.<br />
<br />
Our version of "don't do that" is not to maintain long term feature branches without merging back to the trunk on a regular basis. This is not acceptable for bigger projects, but for smaller projects like Darcs itself, the trade-off between a simple user interface in the general case, and the occasional hairy conflict can be worth it. In the long run, we have to fix this. We are revising our patch theory again, this time taking a much more rigorous and systematic approach to the problem.<br />
<br />
In the interim, we will be gaining some powerful new tools to help work around the problem, namely a new "darcs rebase" feature that will allow users to smooth away conflicts rather than letting them get out of hand. This will be a crucial bridging tool while we continue to attack the patch theory problem.</div><h4>patch theory is simple at heart</h4>I am in the awkward position of being a non-expert maintainer, having to defer a lot of thinking about software engineering and patch theory to the rest of the Darcs team. In a way, this is healthy for Darcs, because we have long suffered from an excess concentration of expertise. <a href="https://en.wikipedia.org/wiki/Tarte_Tatin">Inverting the pie</a> so that you basically have the number one Darcs Fan as the maintainer is useful because it forces everybody else to break things down into words an Eric can understand.<br />
<div><br />
The good news is that <a href="https://irclog.perlgeek.de/darcs/2009-08-12#i_1387741">basic patch theory</a> is one of these things an Eric can understand: patches have inverses and may sometimes be commuted. Just learning the core theory teaches you how merging and cherry picking works, why you can trust the set-of-patches abstraction and most importantly, how simple Darcs is. So we're not after some kind of magical AI here, nor are we trying to guess user intention. The things we do with patches are much more mechanical, systematically adjusting patches to context, one at a time, click-clack on the abacus until the merge is complete.<br />
<h4>patch vs snapshot is not so important</h4>We think it's important to continue working on Darcs because we are exploring territory that no other version control system is looking at - patch-based version control. That said, patches and snapshots are duals of each other. We think that things that Darcs can do are possible in snapshot based version control and we would be very interested to see work in that direction.<br />
<br />
The secret to Darcs merging is that it replaces guesswork (fuzz factor) with history. A darcs patch only exists in the context of its predecessors, and if we want to apply a patch to a different context, we mechanically transform the patch to fit. We think this sort of history-aware merging could be implemented in Git. In fact, we would be excited to see somebody taking up the challenge. Git fans! How about stealing history-aware merging from us?</div><div><h4>exponential merges still exist but there are fewer of them</h4>We have developed two versions of patch theory. The second version avoids a lot of the common causes of exponential merge blowups, but it is still possible to trigger them. Recent Darcs repositories are created using version 2 of the theory. For compatibility's sake, repositories created before Darcs 2 came along tend to still be using version 1 of the theory (we only recommend converting if conflicts become a problem).<br />
<br />
The most well-known remaining cause of blowups in theory 2 is the problem of "conflict fights" where one side of the conflict resolves the conflict and gets on with their life without propagating the resolution back to the other side. What tends to happen there is that we not only encounter the conflict again in the future, but we also conflict with the resolution! <br />
<br />
So life is definitely better with Darcs 2. We've given the exponential merge problem a good knock on the head, but it's still staggering around and we're working our way to the finishing blow.</div><h4>performance is improving</h4>I think that when people complain about Darcs being slow, they're not talking about the exponential merge problem. They're mostly referring to day-to-day issues like the time it takes to check out a repository. Our recent focus has been to solve a lot of these pedestrian performance issues. For example, the upcoming Darcs 2.8 is like to use a new "packs" feature which makes it possible to fetch a repository in the form of two larger tarballs rather than thousands of little patch files. This makes a big difference!<br />
<br />
Another improvement we hope to bring to Darcs 2.8 is the performance of the darcs annotate command (cf. git blame). Annotate has neglected for a while, and to make things better, we've basically reimplemented the command from scratch with more readable output to boot. As an example of something fixed along the way, one misfeature of the old annotate is that would work by applying all the patches relevant to a given file, building it up from the very beginning. But if you think about it, annotating a file is really about annotating its current state; we don't care about ancient history! So one of the Darcs hackers had the sort of idea that’s obvious in hindsight: rather than applying patches forwards from the beginning of history, we simply unapply them from the end. Much faster. <br />
<br />
We're not yet trying to compete with Git when working on these performance issues. We admire the performance that Git can deliver and we agree that getting speed right is a usability issue (too slow and your user loses their train of thought). But we've been picking a lot of low hanging fruit lately, solving problems that make Darcs faster with very little cost. We hope you'll like the results! kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 4 tag:blogger.com,1999:blog-21123659.post-2486897122588806407 2011-02-18T12:27:00.003+01:00 2011-02-18T12:35:52.856+01:00 practical QuickCheck revisited - separate testing hierarchy I'll begin this post with a quote from 2009-Eric:<br />
<blockquote><span class="Apple-style-span" style="font-family: Georgia, serif; font-size: 16px;">This may go down as the kind of bad advice that "seemed like a good idea at the the time".</span></blockquote>The <a href="https://koweycode.blogspot.com/2009/07/some-ideas-for-practical-quickcheck.html">advice in question</a> was to "bake unit tests in". The basic idea was that whatever module you write should have its own testSuite function exposing unit tests for that particular module. The advantages were simplicity (no parallel test hierarchy), the ability to ship a binary with self-tests, and the ability to non-exported functions, helper code with a granularity that lends itself more to testing (easier to think of tests for them).<br />
<br />
I was unconvinced by the counterargument that it was <a href="https://xunitpatterns.com/Test%20Logic%20in%20Production.html">not a good idea to mix testing and business logic</a>. To be clear, I did agree with the spirit of the advice -- I'm not about go around questioning the kind of wisdom a community gains by watching rockets blow up -- but I felt that I was not advocating any such mixing. All I wanted was to put my testing code in the same file as the business code, cordoned off in a testing section at the end of the file if you want without any sort of if-testing-mode-do-X logic. So I thought that the counterargument was right, but that it didn't apply to this particular context. (I'd be interested to see when/if I change my mind on this, maybe it leads to temptation to mix logic, which is bad.)<br />
<br />
In any case, I don't need to change my mind on that particular point. Being the kind of person that only learns the hard way, I've found myself forced to divorce my test code from the business code after all. It's mainly a practical problem of dependencies (this was pointed out by Echo Nolan and Ivan Miljenovic). Forcing users to install QuickCheck and test-framework, when they probably don't care about testing, when they just see your module as yet another dependency on the the road to some other more pressing goal, is really a bit anti-social. <br />
<br />
The problem isn't installing the package <i>per se</i> (it all happens automatically with cabal install), but dealing with package <i>version</i> dependencies. So GenI depends on test-framework 2.x and QuickCheck 1.2. What if I go away for a few years, stop hacking on GenI and in the meantime the rest of the world moves on to using QuickCheck 2.x and test-framework 3? What happens when they try to install GenI and cabal install needs to rebuild the random package, which then breaks QuickCheck-2.4 because it depends on random too. Headaches all around.<br />
<br />
I think I can live with a separate hierarchy. Arguing with past-Eric a bit:<br />
<ol><li>All the extra modules and what not are not that big a deal (and I could probably let myself go wrt imports, etc).</li>
<li>Who cares if there's an extra geni-test binary, which only gets enable with -ftest anyway?</li>
<li>Self tests, shmelf tests. Seriously, who is going to run that geni --test function anyway?</li>
<li>If I forget to cabal configure -ftest, I can always cabal configure again and build</li>
<li>If I'm really desperate to test some internal function, I could always export an alias like testingFoo for every foo I want to test, applying a sort of Pythonesque we're-all-grownups-here principle. </li>
<li>Also maybe forcing yourself to test only the exported functions, enforces a kind of general black-box thinking which is healthy if you're writing a library.</li>
</ol>So, with apologies to Ivan for not understanding his rants 2 years ago; and also anyone that may have listened to 2009-Eric for any messes I got you and your users in, I'm retracting that particular bit of advice and separating my test hierarchies like a good boy. Let's see if 2013-Eric decides to post some kind of retraction retraction. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 6 tag:blogger.com,1999:blog-21123659.post-8560769574633037763 2010-12-02T19:54:00.005+01:00 2010-12-04T07:58:49.693+01:00 personal gitit wiki on MacOS X <div>Here's a quick little recipe for using gitit as a personal wiki on MacOS X. I assume here you already have the wiki itself set up, and now you just want it to run automatically in the background whenever you log in. You can do this by using launchd.</div><div><div><ol><li>Download net.johnmacfarlane.gitit.plist from this <a href="https://gist.github.com/725809">Gist</a></li><li>Replace the WorkingDirectory with the path to your personal wiki</li><li>Replace the last part of the PATH to include your cabal directory, and possibly something like /usr/local/bin or /opt/local/bin if you're using Git instead of Darcs</li><li>Save the file in ~/Library/LaunchAgents</li><li>Test it with <code>launchctl load ~/Library/LaunchAgents,</code> maybe using the Console application to search for logs should something go wrong.</li><li>Log out and log back in (or maybe even restart your computer if you want to be sure)</li></ol></div><div>Helpful bits and pieces:</div><div><ul><li>This <a href="https://www.macgeekery.com/tips/all_about_launchd_items_and_how_to_make_one_yourself">MacGeekery article</a></li><li>launchd.plist man page</li><li>Property List Editor in Developer Tools (beats looking at XML)</li></ul><div><div><b>Edit 2010-12-04</b>: Fixed broken link</div></div></div></div> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 4 tag:blogger.com,1999:blog-21123659.post-5531362719243723465 2010-09-22T10:34:00.006+02:00 2010-09-22T11:42:25.200+02:00 Early Career Researcher: the computer game <div><div>Here's an idea for a computer game called Early Career Researcher. The simple version being a fairly mindless turn-based RPG-esque deal. Nothing earth shattering in terms of game mechanics, but perhaps an amusing toy.</div><div><br /></div><div>You have</div><div><div><ul><li>personal attributes (eg. writing, social skills, initiative)</li><li>inputs (eg. ideas, papers to review)</li><li>daily resources (eg. time, energy)</li><li>actions (eg. check email, write paper, write grant proposal, lab work [or some generic term for "actual" research leg work], take nap, go to pub)</li><li>outcomes (eg. paper accepted, grant awarded, contract extension)</li><li>light bulbs (XP)</li></ul><div>The goal of the game is just to maximise light bulbs. The basic model is that every turn consists of a "day" (a day should take about 5-10 minutes to play). In each day, you can do any number of actions, but the kinds of actions are limited by the inputs and daily resources you have. For example, you could do write a paper, but in order to do so, you'd need a paper-topic resource to consume, not to mention time. Likewise, you could check your email and it may only take a few minutes, but it could also use up a lot of your energy. Actions may result in outcomes, but whether or not they do so depends on a combination of personal attributes and luck. For example, writing a paper may result in paper accepted, depending on writing skills, research-fu and the dice roll. Going to the pub (presumably chatting with colleagues) may result in Ideas depending on social skills and creativity and the dice roll. Outcomes generate inputs (eg. ideas) and Lightbulbs (XP). If you get enough XP to level up, you can use your lightbulbs to purchase personal attributes.</div></div></div></div><div><br /></div><div>As the game develops it should become clearer that it's important to choose your actions wisely, and also to pay attention to the notion of balance. Spending all your time doing lab work or writing grant proposals may seem like a good idea, but if you fail to spend enough time in the pub or take sufficient naps, you may not generate sufficient idea resources to make very much progress. Or maybe if you're too lazy and spending all your time just trying to be inspired, you just don't make sufficient practical progress to get anywhere.</div><div><br /></div><div>So if anybody wants to code this up as a little exercise...</div> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 3 tag:blogger.com,1999:blog-21123659.post-5482935820270674395 2010-03-28T17:50:00.015+02:00 2010-03-28T21:08:22.917+02:00 hsgtd and friends 1: mutt inbox and actions I've been practising the methodology of Getting Things Done for over 4 years now, but I'm still not very good at it.<br /><br />I hope to write a small serious of postings showing my current GTD state of the art. I hope it will be useful to somebody out there and that I will get some ideas on fine-tuning my approach.<br /><br />Another hope I have is to reach out to technical people who are resisting "becoming more organised" because of the apparent overhead involved. I hope to demonstrate that you can actually get a lot of mileage out of a handful of shell scripts and simple practices (keeping all your mail in a single folder).<br /><h3>Ingredients</h3><ul><li>mutt - The appeal here is to have a mail client that is malleable and which can talk to 3rd-party software. So it doesn't necessarily have to be as old school as mutt, just scriptable and capable of playing with others.</li><li>hsgtd - a command line GTD tracker written in 351 lines of Haskell. Everything is stored in a simple text file</li></ul>I also use mairix, xmonad and Unison, but these will likely only be relevant in future postings.<br /><h3>Background<br /></h3>In this first instalment, I would like to talk about how I deal with inbox triage. It's useful to know a little bit of GTD terminology for this.<br /><ul><li>Inbox - things which are not yet triaged. Practicing GTD is like using an issue tracker; you decouple triage from actions. One priority in GTD is to empty out the inbox by performing triage on all items. Working this way is efficient because you avoid looking at the same item or having the same thought about it (gee, I oughta...) twice. Things go in stages.<br /></li><li>Next actions - One of the results from the triage process is a set of "next actions", concrete physical actions like, eg. call Bob 398-0811 to see if he wants that spare external disk drive<br /></li></ul>I use two different programs: mutt to view my inbox, and hsgtd to view my list of next actions. In this series of posts, I'll be exploring how mutt and hsgtd might talk to each other.<br /><h3>Inbox triage : from email to next actions</h3>The most common source of next actions for me is my email, so it is very important for me to good integration between my hsgtd list and my email. In particular, one thing I like to be able to do is to read an email, figure out what "next action" to do with it, record that next action, and pin that email to the next action for reference.<br /><br />To this end, I have a simple shell script and muttrc macro that you can copy from the <a href="https://patch-tag.com/r/mlesniak/hsgtd/snapshot/current/content/pretty/contrib">hsgtd contrib directory</a>. The shell script greps an email from stdin for its message id and reads the command line parameters for the next action text. It combines the two by adding an hsgtd action using the message ID as a project name. Here's the script to show you how simple and stupid it is:<pre>#!/bin/bash<br />MSGID=$(grep -i '^message-id' | head -n 1 | sed 's/Message-I[Dd]: /:/')<br />hsgtd add "$@" "$MSGID"<br /></pre>To make this work with mutt, I also have a small macro that lets me call the shell script whenever I'm viewing a message:<br /><pre>macro pager \Ca "|email-add-action"<br />macro index \Ca "|email-add-action"</pre><h3>Triage example</h3>So how does this get used in practice? Let's say my inbox has a patch to Darcs from Guillaume.<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBFIFXG63lSVXg0x29Ge53G-0202Cbam-FhRkyZBMmEWVXSaXCSHuQswea11MTx_x-8ziOoTCfF4Wd3U4QvgzwIu0Qpsbsn0HAoiiBVMiPN1vYTKfqSRa9nxYRHLNy8XsnUyD6cg/s1600/Screen+shot+2010-03-28+at+18.56.59.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 172px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjBFIFXG63lSVXg0x29Ge53G-0202Cbam-FhRkyZBMmEWVXSaXCSHuQswea11MTx_x-8ziOoTCfF4Wd3U4QvgzwIu0Qpsbsn0HAoiiBVMiPN1vYTKfqSRa9nxYRHLNy8XsnUyD6cg/s320/Screen+shot+2010-03-28+at+18.56.59.png" alt="" id="BLOGGER_PHOTO_ID_5453746351440653570" border="0" /></a>If you saw Merlin Mann's Inbox Zero talk, there are 5 "verbs" you can apply to an inbox item. Let's run through these. Clearly this is not a mail I want to [i] delete, and for a variety of reasons, it's not something I want to [ii] delegate, or to [iii] defer. Let's look at the email in mutt:<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggCC4PADzqrkMJ-IvzgBaFyZKnndBvq1sRm3EJtNVloNaAXduzOhYTNL6zewExS_0B-7QkSWzMB4cMXDAup9r2Tc8IIB1METYdwQMWlAvpxbh4eYCWIDKNQJr8-2mwH8P4ON2MRA/s1600/Screen+shot+2010-03-28+at+18.57.11.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 172px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEggCC4PADzqrkMJ-IvzgBaFyZKnndBvq1sRm3EJtNVloNaAXduzOhYTNL6zewExS_0B-7QkSWzMB4cMXDAup9r2Tc8IIB1METYdwQMWlAvpxbh4eYCWIDKNQJr8-2mwH8P4ON2MRA/s320/Screen+shot+2010-03-28+at+18.57.11.png" alt="" id="BLOGGER_PHOTO_ID_5453746429589671746" border="0" /></a>I can't [iv] respond yet because I need take some time out to review the patch so I need [v] track an action for this to do later. I hit Control-a in mutt, and type in "@darcs review this". This creates an action in hsgtd. If I later visit hsgtd and type "list" to see the actions available, I will see the email from Guillaume:<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJqo3tUlrzUdIQ4qwXIrKJurJEYY4QYsy7MyRBz5XNLxDKhNcs6cb-XQZHG5c0Vi-3HudbUnZjRyjh5JbBvwyJRhQ6fgABvNqAVG0GRYELNgPS8XRaPZAL3QskS1APK1Vl7UYB4w/s1600/Screen+shot+2010-03-28+at+19.08.52.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 137px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjJqo3tUlrzUdIQ4qwXIrKJurJEYY4QYsy7MyRBz5XNLxDKhNcs6cb-XQZHG5c0Vi-3HudbUnZjRyjh5JbBvwyJRhQ6fgABvNqAVG0GRYELNgPS8XRaPZAL3QskS1APK1Vl7UYB4w/s320/Screen+shot+2010-03-28+at+19.08.52.png" alt="" id="BLOGGER_PHOTO_ID_5453748554183842642" border="0" /></a>By the way, if you're wondering about the "@darcs", the use of an at-sign before a word is an hsgtd convention for contexts. Contexts are a useful way of dividing up actions because they signify certain constraints on where you can perform the actions (typical contexts might be @home, @work). I use @darcs because working on darcs is sometimes something I'll do in one block at a time. If I type "list @darcs" in hsgtd, it will show me only the actions for that context:<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8uJIejzGdetZnrxppjkS6PpndChXVLJX9W0I1A1G0MA_rJCrKnoMXz4WeowKHAv-EmuCVi6bDaGh1wgAPlBdd-oSbUj9uEci41K4DVQknvFBq8oCEHNFKDi8sLeX-0FGwPecw6g/s1600/Screen+shot+2010-03-28+at+19.14.48.png"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 137px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj8uJIejzGdetZnrxppjkS6PpndChXVLJX9W0I1A1G0MA_rJCrKnoMXz4WeowKHAv-EmuCVi6bDaGh1wgAPlBdd-oSbUj9uEci41K4DVQknvFBq8oCEHNFKDi8sLeX-0FGwPecw6g/s320/Screen+shot+2010-03-28+at+19.14.48.png" alt="" id="BLOGGER_PHOTO_ID_5453749924533897634" border="0" /></a>Back to main story. We've now added Guillaume's message to hsgtd. Let's take a closer look at the entry that was created. You see the original action text that we typed in "<span style="color: rgb(153, 153, 0);">@darcs</span> review this". Notice how the context @darcs was helpfully highlighted in yellow. In green you will also see a strange suffix like ":<span style="color: rgb(0, 102, 0);"><4ba5fc74.0e0db80a.261d.ffff8b51@mx.google.com></span>". This is useful for three reasons:<br /><ol><li> It creates a GTD "project" for that email. Sometimes dealing with an email requires more than one action. In the GTD world, any set of >1 action is considered a project.<br /></li><li>[most important] It gives you a means for retrieving the email that goes with this action when you are actually predisposed to do that action.</li><li>It allows you to be fairly oblique in your next action texts, you can type in any short string which seems to be meaningful without having to be super-precise about it.</li></ol><h3>Next up: waiting and review</h3>In this posting, we saw a way of extracting "next actions" from your mutt inbox and storing them in an hsgtd list. In a future posting, I hope to expand on this by exploring delegation (asking somebody else to act) and review (going over your actions and delegated items). Actually, the review was what initially motivated this blog posting. I'd finally worked out how to create a virtual mailbox of my hsgtd-tracked items and wanted to show it off. But that will have to wait as this post is long enough as it is. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 2 tag:blogger.com,1999:blog-21123659.post-8893200938536930189 2010-03-20T16:15:00.004+01:00 2010-03-20T16:19:45.982+01:00 darcs team at ZuriHac Just a quick photo showing what happens when you give a bunch of Darcs hackers a flipchart and a marker pen...<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgi1k93YDVwtkPpScj0Sp8MzYKgeHJq8Jag82u-b9FhWmSyPKoBbU4BziRsz1ASHdi42OuV4m_NLcs-taM2KCybOPofSBeZfvnqwz6il3m2UPpJSls4IWQyFRACSSM_SJX9oJe3XA/s1600-h/IMG_1360.JPG"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 214px; height: 320px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgi1k93YDVwtkPpScj0Sp8MzYKgeHJq8Jag82u-b9FhWmSyPKoBbU4BziRsz1ASHdi42OuV4m_NLcs-taM2KCybOPofSBeZfvnqwz6il3m2UPpJSls4IWQyFRACSSM_SJX9oJe3XA/s320/IMG_1360.JPG" border="0" alt=""id="BLOGGER_PHOTO_ID_5450735337666826034" /></a><br /><br />(With thanks to David Anderson for gamely taking this photo for our collective memory)<br /><br />This was the result of a lively discussion on the future <a href="https://wiki.darcs.net/Ideas/RebaseDesign">darcs rebase</a> feature, which will make maintaining long-term branches in Darcs a lot easier. Perhaps it'll be ready in early 2011. We'll be sure to take our time to get this right... kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 0 tag:blogger.com,1999:blog-21123659.post-7745364752631328508 2010-01-21T18:15:00.013+01:00 2010-01-21T22:36:53.649+01:00 heapgraph tool <a href="https://gist.github.com/282873">Here</a> is a small program to help draw diagrams of heap graphs.<br /><br />You feed it (via stdin) a text file written a silly little language, for example:<br /><pre>graph g0<br />node n0 (closure "double" (closure "(*)" "5" "4"))<br /> <br />graph g1<br />node n0 (closure "(+)" n1 n1)<br />node n1 (closure "(*)" "5" "4")<br /> <br />graph g2<br />node n0 (closure "(+)" n1 n1)<br />node n1 "20"<br /> <br />graph g3<br />node n0 "40"</pre><br />...pipe the results through Graphviz<pre>./heapgraph < example | dot -T pdf -o example.pdf</pre><br />...and what you get back is a little series of graphs like the following:<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTbN9JdltHUcOZbRDvJoUSeUj_CXmAsZnlT2EDI00-H9nHD9F8pPyPV0m5DNfXl0ObKw7XsaBXsVp7TK4QxTKn8pSSWpHjW1kqlxAFdr5G3osXqxuvQeslN7d2t7JG3UX-4NKKDQ/s1600-h/ex.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 102px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjTbN9JdltHUcOZbRDvJoUSeUj_CXmAsZnlT2EDI00-H9nHD9F8pPyPV0m5DNfXl0ObKw7XsaBXsVp7TK4QxTKn8pSSWpHjW1kqlxAFdr5G3osXqxuvQeslN7d2t7JG3UX-4NKKDQ/s320/ex.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5429244278256026706" /></a><br /><br />I never worked out how to tell graphviz to draw the subgraphs from top to bottom instead of left to right. Help would be appreciated :-)<br /><br />The context is that I'm in the process of reading Rabhi and Lapalme's <i>Algorithms: A Functional Programming Approach</i>. One of its introductory chapters has an explanation of graph reduction. It occured to me that I ought to write lots of little graphs and just walk through them. The general idea is that maybe one of the impediments to my understanding Haskell laziness/strictness was sheer impatience, that I was being far too motivated to make my programs go faster. I'm hoping that a slower and more methodical approach will work, for example, starting by making sure I understand basic ideas like a heap first.<br /><br />Perhaps such a tool will be useful for you if you are in a similar position, or if you happen to be teaching this sort of stuff. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 3 tag:blogger.com,1999:blog-21123659.post-9087798580733835413 2009-10-08T18:44:00.002+02:00 2009-10-08T18:47:59.527+02:00 darcs hashed-storage work merged (woo!) <p><span style="font-style: italic;">The following is a copy of my recent post to the darcs-users mailing list.</span><br /></p><p>Hi everybody,</p><p>So you may have noticed me saying this in a couple of recent threads. Petr Ročkai's hashed-storage work from his 2009 Google Summer of Code project has been merged!</p><p>I thought I would take a few moments to give everybody an overview of how this work benefits us, and where we'll be going in the future.</p><div id="in-a-nutshell"><h4>In a nutshell</h4><p>What does this mean for you? Faster repository-local operations.</p><p>Hashed format repositories (with darcs-1 and darcs-2 patches alike) should now be faster to use on a daily basis. We saw the very beginnings of this work in Darcs 2.3.0 with a faster darcs whatsnew. Now these speed improvements cover <em>all</em> repository-local operations.</p><p>The next Darcs beta is a couple of months away, but before that, I would like to encourage you to try this out for yourself:</p><pre>darcs get --lazy https://darcs.net<br />cd darcs.net<br />cabal install</pre><p>For best results, please run <tt>darcs optimize --upgrade</tt> followed by <tt>darcs optimize --pristine</tt>. Pay attention over the next couple of weeks when you try a record, amend, revert, unrecord. If we've done our work right, there should be nothing to see. Darcs should be less noticeable, with fewer "Synchronizing pristine" messages and a faster return to the command prompt. We think you'll like it. But please get back to us. Is Darcs faster for you?</p><p>If you're particularly interested, I will step through these changes in greater detail at the end of this message. Meanwhile, I would like to step back a little and take stock of how these improvements fit in to the bigger picture.</p></div><div id="the-road-ahead"><h4>The road ahead</h4><p>The hashed storage work is a big step forward and definitely a cause for celebration. I think it is useful to reflect on this progress and consider how it fits in with our progress since darcs 1.0.9:</p><blockquote><ul><li>ssh connection sharing (darcs transfer mode)</li><li>HTTP pipelining</li><li>lazy repositories</li><li>the global cache</li></ul></blockquote><p>and now</p><blockquote><ul><li>index-based diffing</li><li>hashed-storage efficiency</li></ul></blockquote><p>We cannot promise that Darcs will magically become fast overnight. But what we can and will do is continue chipping away at it, solving problems one at a time; release by release, a little bit better, a little bit faster every time until one day we can look back and marvel at all the progress we've made.</p><p>So Petr's work makes Darcs easier to live with on a day-to-day basis. But that's not enough. Now we need to turn our attention to that crucial first impression; what happens when people try Darcs out for the first time is that they darcs get a repository they want and... then... they... wait...</p><p>This is embarrassing, but we can fix it. In fact, we already have started working on the problem. The next version of hashed-storage will likely introduce a notion of "packs" in which the many often very small files that Darcs keeps track of will be concatenated into more substantial "packs" that compress better and reduce the ill effects of latency. My hope is that we will be able to complete the packs work by Darcs 2.5.</p><p>There's a lot more progress to be made: smarter patch representations, tuning for large patches, file-to-patch caching for long histories. And that's just performance! For more details about our performance work, please have a look at</p><blockquote><p><a href="https://tinyurl.com/darcs-performance2">https://tinyurl.com/darcs-performance2</a></p></blockquote><p>If you could do anything to help, benchmark, profile, anything at all, please let us know :-)</p><p>The fight continues.</p></div><div id="thank-you"><h4>Thank-you!</h4><p>Petr and Ganesh deserve a huge round of applause. Petr, thanks for thinking up this work, getting it done and pushing it through. Ganesh, thanks for an extremely thorough and thoughtful review. The two of you, thanks for holding on, for tenacious cooperation in the face of adversity.</p><p>Thanks also to all the wider Darcs community for all your support, comments, patch reviews.</p><p>I'm looking forward to seeing you at the upcoming Darcs hacking sprint. The sprint will take place in Vienna, Austria on the weekend of 14-15 November. Everybody, especially Darcs and Haskell newbies, is welcome to join in. Details on <a href="https://wiki.darcs.net/Sprints/2009-11">https://wiki.darcs.net/Sprints/2009-11</a></p><p>And if I may take a paragraph to mention this, Darcs needs your support. Every little counts, if you can send patches, review patches, tweak documentation, profile, benchmark, submit bug reports. Barring that, you could also make a contribution to our travel fund via the Software Freedom Conservancy. See <a href="https://darcs.net/donations.html">https://darcs.net/donations.html</a> for details.</p><p>Thanks everybody and enjoy!</p><p>Eric</p></div><div id="changes-in-detail"><h4>Changes in detail</h4><ul><li><p>Darcs uses an "index" file to compute working directory and pristine cache diffs. This avoids timestamps going out of synch when you have multiple local branches, which saves a huge and needless slowdown.</p></li><li><p>Hashed storage is more efficient in general. Even if you already have perfect timestamps, the new optimisations should make Darcs faster in general.</p></li><li><p>The new 'darcs optimize --pristine' reduces spurious mismatches on directories.</p></li><li><p>Darcs no longer requires a one second sleep after applying patches.</p></li></ul></div> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 0 tag:blogger.com,1999:blog-21123659.post-8567427712930207666 2009-09-11T17:10:00.006+02:00 2009-09-11T17:40:08.280+02:00 cabal installing graphical apps on MacOS X I have a graphical command line tool written in wxHaskell. For the longest time, my tool was relatively easy to install on Linux but a pain on MacOS X because my users had to jump through extra post-installation hoops like creating application bundles. <br /><br />Thanks to some very patient help from Beelsebob, quicksilver, dcoutts on #haskell I was finally able to cobble together a Setup.hs file that lets me do just this. Now when I write install instructions for my program, I no longer need to add extra bullet points telling people to turn knobs and twiggle blops just to run the GUI. It just works.<br /><br />Note that this was written with wxHaskell in mind. I hope that folks using gtk2hs and qtHaskell either do not have this problem or can make use of a similar solution.<br /><br /><h4>desiderata</h4>What I wanted was for the 'cabal install' command to work as well on MacOS X as it did under Linux. My core desiderata were:<br /><ol><li>Ability to call my application from the command line the same way you would under Linux with command line arguments correctly recognised<br /></li><li>No need for the user to add extra junk to the path (besides <code>$HOME/.cabal/bin</code> which they'll already have added) </li><li>No manual intervention after cabal install (eg calling scripts to create application bundles)<br /></li><li>No need to be super-user.</li></ol><br /><br /><h4>basic ideas</h4>The basic ideas behind this solution are<br /><ul><li>Replace "foo" with a shell script that calls "foo.app/MacOS/Contents/foo"<br />MacOS X Leopard seems to want graphical applications to live in application bundles. At least for wxHaskell if you invoke "foo" you get a GUI that does not respond to input. On the other hand, if you invoke "foo.app/MacOS/Contents/foo" you get something that works.<br /></li><li>Use a Cabal postInst to create the application bundle in the bin dir.</li></ul><br /><h4>basic solution</h4>Here is the solution. (I'll send it as a mail to the wxhaskell-users mailing list too)<pre><font color=Blue>-- --------------- BEGIN Setup.hs EXAMPLE ------------------------------</font><br /><font color=Green><u>import</u></font> Control<font color=Cyan>.</font>Monad <font color=Cyan>(</font>foldM_<font color=Cyan>,</font> forM_<font color=Cyan>)</font><br /><font color=Green><u>import</u></font> Data<font color=Cyan>.</font>Maybe <font color=Cyan>(</font> fromMaybe <font color=Cyan>)</font><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>Cmd<br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>Exit<br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>Info <font color=Cyan>(</font>os<font color=Cyan>)</font><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>FilePath<br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>Directory <font color=Cyan>(</font> doesFileExist<font color=Cyan>,</font> copyFile<font color=Cyan>,</font> removeFile<font color=Cyan>,</font> createDirectoryIfMissing <font color=Cyan>)</font><br /><br /><font color=Green><u>import</u></font> Distribution<font color=Cyan>.</font>PackageDescription<br /><font color=Green><u>import</u></font> Distribution<font color=Cyan>.</font>Simple<font color=Cyan>.</font>Setup<br /><font color=Green><u>import</u></font> Distribution<font color=Cyan>.</font>Simple<br /><font color=Green><u>import</u></font> Distribution<font color=Cyan>.</font>Simple<font color=Cyan>.</font>LocalBuildInfo<br /><br /><font color=Blue>main</font> <font color=Red>::</font> IO ()<br /><font color=Blue>main</font> <font color=Red>=</font> defaultMainWithHooks <font color=Cyan>$</font> addMacHook simpleUserHooks<br /> <font color=Green><u>where</u></font><br /> addMacHook h <font color=Red>=</font><br /> <font color=Green><u>case</u></font> os <font color=Green><u>of</u></font><br /> <font color=Magenta>"darwin"</font> <font color=Red>-></font> h <font color=Cyan>{</font> postInst <font color=Red>=</font> appBundleHook <font color=Cyan>}</font> <font color=Blue>-- is it OK to treat darwin as synonymous with MacOS X?</font><br /> <font color=Green><u>_</u></font> <font color=Red>-></font> h<br /><br /><font color=Blue>appBundleHook</font> <font color=Red>::</font> Args <font color=Red>-></font> InstallFlags <font color=Red>-></font> PackageDescription <font color=Red>-></font> LocalBuildInfo <font color=Red>-></font> IO ()<br /><font color=Blue>appBundleHook</font> <font color=Green><u>_</u></font> <font color=Green><u>_</u></font> pkg localb <font color=Red>=</font><br /> forM_ exes <font color=Cyan>$</font> <font color=Red>\</font>app <font color=Red>-></font><br /> <font color=Green><u>do</u></font> createAppBundle theBindir <font color=Cyan>(</font>buildDir localb <font color=Cyan></></font> app <font color=Cyan></></font> app<font color=Cyan>)</font><br /> customiseAppBundle <font color=Cyan>(</font>appBundlePath theBindir app<font color=Cyan>)</font> app<br /> <font color=Cyan>`catch`</font> <font color=Red>\</font>err <font color=Red>-></font> putStrLn <font color=Cyan>$</font> <font color=Magenta>"Warning: could not customise bundle for "</font> <font color=Cyan>++</font> app <font color=Cyan>++</font> <font color=Magenta>": "</font> <font color=Cyan>++</font> show err<br /> removeFile <font color=Cyan>(</font>theBindir <font color=Cyan></></font> app<font color=Cyan>)</font><br /> createAppBundleWrapper theBindir app<br /> <font color=Green><u>where</u></font><br /> theBindir <font color=Red>=</font> bindir <font color=Cyan>$</font> absoluteInstallDirs pkg localb NoCopyDest<br /> exes <font color=Red>=</font> fromMaybe <font color=Cyan>(</font>map exeName <font color=Cyan>$</font> executables pkg<font color=Cyan>)</font> mRestrictTo<br /><br /><font color=Blue>-- ----------------------------------------------------------------------</font><br /><font color=Blue>-- helper code for application bundles</font><br /><font color=Blue>-- ----------------------------------------------------------------------</font><br /><br /><font color=Blue>-- | 'createAppBundle' @d p@ - creates an application bundle in @d@</font><br /><font color=Blue>-- for program @p@, assuming that @d@ already exists and is a directory.</font><br /><font color=Blue>-- Note that only the filename part of @p@ is used.</font><br /><font color=Blue>createAppBundle</font> <font color=Red>::</font> FilePath <font color=Red>-></font> FilePath <font color=Red>-></font> IO ()<br /><font color=Blue>createAppBundle</font> dir p <font color=Red>=</font><br /> <font color=Green><u>do</u></font> createDirectoryIfMissing False <font color=Cyan>$</font> bundle<br /> createDirectoryIfMissing True <font color=Cyan>$</font> bundleBin<br /> createDirectoryIfMissing True <font color=Cyan>$</font> bundleRsrc<br /> copyFile p <font color=Cyan>(</font>bundleBin <font color=Cyan></></font> takeFileName p<font color=Cyan>)</font><br /> <font color=Green><u>where</u></font><br /> bundle <font color=Red>=</font> appBundlePath dir p<br /> bundleBin <font color=Red>=</font> bundle <font color=Cyan></></font> <font color=Magenta>"Contents/MacOS"</font><br /> bundleRsrc <font color=Red>=</font> bundle <font color=Cyan></></font> <font color=Magenta>"Contents/Resources"</font><br /><br /><font color=Blue>-- | 'createAppBundleWrapper' @d p@ - creates a script in @d@ that calls</font><br /><font color=Blue>-- @p@ from the application bundle @d </> takeFileName p <.> "app"@</font><br /><font color=Blue>createAppBundleWrapper</font> <font color=Red>::</font> FilePath <font color=Red>-></font> FilePath <font color=Red>-></font> IO ()<br /><font color=Blue>createAppBundleWrapper</font> bindir p <font color=Red>=</font><br /> writeFile <font color=Cyan>(</font>bindir <font color=Cyan></></font> takeFileName p<font color=Cyan>)</font> scriptTxt<br /> <font color=Green><u>where</u></font><br /> scriptTxt <font color=Red>=</font> <font color=Magenta>"`dirname $0`"</font> <font color=Cyan></></font> appBundlePath <font color=Magenta>"."</font> p <font color=Cyan></></font> <font color=Magenta>"Contents/MacOS"</font> <font color=Cyan></></font> takeFileName p <font color=Cyan>++</font> <font color=Magenta>" \"$@\""</font><br /><br /><font color=Blue>appBundlePath</font> <font color=Red>::</font> FilePath <font color=Red>-></font> FilePath <font color=Red>-></font> FilePath<br /><font color=Blue>appBundlePath</font> dir p <font color=Red>=</font> dir <font color=Cyan></></font> takeFileName p <font color=Cyan><.></font> <font color=Magenta>"app"</font><br /><br /><font color=Blue>-- optional stupff: to be discussed later</font><br /><font color=Blue>mRestrictTo</font> <font color=Red>=</font> Nothing<br /><font color=Blue>customiseAppBundle</font> <font color=Green><u>_</u></font> <font color=Green><u>_</u></font> <font color=Red>=</font> return ()<br /><font color=Blue>-- --------------- END Setup.hs EXAMPLE ---------------------------------</font><br /></pre><h4>fancier solution</h4><br />I also have some extra wishlist items.<br /><ol><li>Possibility of installing in --global</li><li>Fancy custom app bundles with custom icons and what not</li></ol><br />Global installation might already be working with this basic script, but I haven't tested it yet. Fancy app bundles sort of work (if I double-click it in Finder, I get a customised icon, but running it from the command line does not give me one).<br /><br />Here are extra hooks I created for this:<br /><pre><font color=Blue>-- ------------- BEGIN FANCY Setup.hs ADDENDUM ------------------------</font><br /><font color=Blue>-- | Put here IO actions needed to add any fancy things (eg icons)</font><br /><font color=Blue>-- you want to your application bundle.</font><br /><font color=Blue>customiseAppBundle</font> <font color=Red>::</font> FilePath <font color=Blue>-- ^ app bundle path</font><br /> <font color=Red>-></font> FilePath <font color=Blue>-- ^ full path to original binary</font><br /> <font color=Red>-></font> IO ()<br /><font color=Blue>customiseAppBundle</font> bundleDir p <font color=Red>=</font><br /> <font color=Green><u>case</u></font> takeFileName p <font color=Green><u>of</u></font><br /> <font color=Magenta>"geni"</font> <font color=Red>-></font><br /> <font color=Green><u>do</u></font> hasRez <font color=Red><-</font> doesFileExist <font color=Magenta>"/Developer/Tools/Rez"</font><br /> <font color=Green><u>if</u></font> hasRez<br /> <font color=Green><u>then</u></font> <font color=Green><u>do</u></font> <font color=Blue>-- set the icon</font><br /> copyFile <font color=Magenta>"etc/macstuff/Info.plist"</font> <font color=Cyan>(</font>bundleDir <font color=Cyan></></font> <font color=Magenta>"Contents/Info.plist"</font><font color=Cyan>)</font><br /> copyFile <font color=Magenta>"etc/macstuff/wxmac.icns"</font> <font color=Cyan>(</font>bundleDir <font color=Cyan></></font> <font color=Magenta>"Contents/Resources/wxmac.icns"</font><font color=Cyan>)</font><br /> <font color=Blue>-- no idea what this does</font><br /> system <font color=Cyan>(</font><font color=Magenta>"/Developer/Tools/Rez -t APPL Carbon.r -o "</font> <font color=Cyan>++</font> bundleDir <font color=Cyan></></font> <font color=Magenta>"Contents/MacOS/geni"</font><font color=Cyan>)</font><br /> writeFile <font color=Cyan>(</font>bundleDir <font color=Cyan></></font> <font color=Magenta>"PkgInfo"</font><font color=Cyan>)</font> <font color=Magenta>"APPL????"</font><br /> <font color=Blue>-- tell Finder about the icon</font><br /> system <font color=Cyan>(</font><font color=Magenta>"/Developer/Tools/SetFile -a C "</font> <font color=Cyan>++</font> bundleDir <font color=Cyan></></font> <font color=Magenta>"Contents"</font><font color=Cyan>)</font><br /> return ()<br /> <font color=Green><u>else</u></font> putStrLn <font color=Magenta>"Developer Tools not found. Too bad; no fancy icons for you."</font><br /> <font color=Magenta>""</font> <font color=Red>-></font> return ()<br /><br /><font color=Blue>-- | Put here the list of executables which contain a GUI. If they all</font><br /><font color=Blue>-- contain a GUI (or you don't really care that much), just put Nothing</font><br /><font color=Blue>mRestrictTo</font> <font color=Red>::</font> Maybe <font color=Red>[</font>String<font color=Red>]</font><br /><font color=Blue>mRestrictTo</font> <font color=Red>=</font> Just <font color=Red>[</font><font color=Magenta>"geni"</font><font color=Red>]</font><br /><font color=Blue>-- ------------- END FANCY Setup.hs ADDENDUM ---------------------------</font><br /></pre> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 5 tag:blogger.com,1999:blog-21123659.post-6310609928686156211 2009-07-29T13:56:00.006+02:00 2009-07-29T14:24:04.813+02:00 vim and building with cabal I don't know about you, but I've got <code>map ,m :make<Enter></code> in my .vimrc to bind comma-m to my build program. This could be "ant" for Java files (for example) and "make" otherwise.<br /><br />Now here is a snippet to set it to "cabal build" as needed<pre>"-----------------------8<--------------------------<br />function! SetToCabalBuild()<br /> if glob("*.cabal") != ''<br /> set makeprg=cabal\ build<br /> endif<br />endfunction<br /><br />autocmd BufEnter *.hs,*.lhs :call SetToCabalBuild()<br />"-----------------------8<--------------------------</pre>Apologies for making noise in case this is already redundant with a piece of Claus Reinke's very interesting and modular-looking <a href="https://projects.haskell.org/haskellmode-vim/">Haskell mode for Vim</a> (which I've been promising myself to install some day). Perhaps the above will be useful anyway for those of us still limping along with configuration files cobbled together from bits and bobs on the web. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 3 tag:blogger.com,1999:blog-21123659.post-605944240072195439 2009-07-28T09:18:00.012+02:00 2009-07-28T11:03:52.492+02:00 some ideas for practical QuickCheck I think I've found some answers to my <a href="https://koweycode.blogspot.com/2009/02/practical-quickcheck-wanted.html">practical QuickCheck</a> questions. This post may be fairly long as I'm trying to make it concrete and explicit enough to overcome the kind of inertia I had when I was still resisting testing.<br /><h4>How do I make my tests easy to run?</h4><h5>1. Use <a href="https://batterseapower.github.com/test-framework/">test-framework</a></h5>The key thing to know about test-framework is that it is very easy to get started. Just visit the friendly web page and copy the example.<br /><br />Note: An earlier post suggested the testrunner package developed for Darcs, but at the time we didn't realise that test-framework already had all the features needed.<br /><h5>2. Support cabal test</h5>Here's a Setup.hs recipe I copied. It has the handy property of the code is that it runs your tests straight from your dist/build directory.<pre><font color=Blue>-- EXAMPLE Setup.hs FILE 1 -----------------------------------------------</font><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>FilePath<br /><br /><font color=Blue>main</font> <font color=Red>=</font> defaultMainWithHooks hooks<br /> <font color=Green><u>where</u></font> hooks <font color=Red>=</font> simpleUserHooks <font color=Cyan>{</font> runTests <font color=Red>=</font> runTests' <font color=Cyan>}</font><br /><br /><font color=Blue>runTests'</font> <font color=Red>::</font> Args <font color=Red>-></font> Bool <font color=Red>-></font> PackageDescription <font color=Red>-></font> LocalBuildInfo <font color=Red>-></font> IO ()<br /><font color=Blue>runTests'</font> <font color=Green><u>_</u></font> <font color=Green><u>_</u></font> <font color=Green><u>_</u></font> lbi <font color=Red>=</font> system testprog <font color=Cyan>>></font> return ()<br /> <font color=Green><u>where</u></font> testprog <font color=Red>=</font> <font color=Cyan>(</font>buildDir lbi<font color=Cyan>)</font> <font color=Cyan></></font> <font color=Magenta>"test"</font> <font color=Cyan></></font> <font color=Magenta>"test"</font><br /><font color=Blue>-- -----------------------------------------------------------------------</font><br /></pre>The code snippet for your Setup.hs file comes from Greg Bacon's <a href="https://gbacon.blogspot.com/2009/06/setting-up-simple-test-with-cabal.html">Setting up a Simple Test with Cabal</a> (I tacked on an import). As you can see, the recipe assumes you're building an executable called "test" (see Greg's post on how to do this)<br /><h5>3. Bake your unit tests in</h5>This may go down as the kind of bad advice that "seemed like a good idea at the the time". For now, I can justify this by saying that it may be reassuring to users to be able to just run the same tests that I'm running and see for themselves that their program thinks it's working.<br /><br />I've been working on a program called GenI. To help people test this program, I've added a simple "--tests" switch. Now people can run <code>geni --tests</code> for a self check. If they want, they can also "cabal test", using this slight modification to Greg's setup file (to call geni itself and to pass the --tests flag in).<br /><pre><font color=Blue>-- EXAMPLE Setup.hs FILE 2 -----------------------------------------------</font><br /><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>FilePath<br /><br /><font color=Blue>main</font> <font color=Red>=</font> defaultMainWithHooks hooks<br /> <font color=Green><u>where</u></font> hooks <font color=Red>=</font> simpleUserHooks <font color=Cyan>{</font> runTests <font color=Red>=</font> runTests' <font color=Cyan>}</font><br /><br /><font color=Blue>runTests'</font> <font color=Red>::</font> Args <font color=Red>-></font> Bool <font color=Red>-></font> PackageDescription <font color=Red>-></font> LocalBuildInfo <font color=Red>-></font> IO ()<br /><font color=Blue>runTests'</font> <font color=Green><u>_</u></font> <font color=Green><u>_</u></font> <font color=Green><u>_</u></font> lbi <font color=Red>=</font> system testprog <font color=Cyan>>></font> return ()<br /> <font color=Green><u>where</u></font> testprog <font color=Red>=</font> <font color=Cyan>(</font>buildDir lbi<font color=Cyan>)</font> <font color=Cyan></></font> <font color=Magenta>"geni"</font> <font color=Cyan></></font> <font color=Magenta>"geni --tests"</font><br /><br /><font color=Blue>-- -----------------------------------------------------------------------</font><br /></pre>As for GenI, whenever I see --tests in my arguments (for example <code>"--tests" `elem` args</code>), I just pass control to another module, which in turn strips the switch out and passes the rest of the arguments to test-framework.<pre><font color=Blue>-- EXAMPLE TEST-FRAMEWORK WRAPPER ------------------------------------------</font><br /><font color=Green><u>module</u></font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>Test <font color=Green><u>where</u></font><br /><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>Environment <font color=Cyan>(</font> getArgs <font color=Cyan>)</font><br /><font color=Green><u>import</u></font> Test<font color=Cyan>.</font>Framework<br /><br /><font color=Green><u>import</u></font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>GeniVal <font color=Cyan>(</font> testSuite <font color=Cyan>)</font><br /><font color=Green><u>import</u></font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>Tags <font color=Cyan>(</font> testSuite <font color=Cyan>)</font><br /><font color=Green><u>import</u></font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>Simple<font color=Cyan>.</font>SimpleBuilder <font color=Cyan>(</font> testSuite <font color=Cyan>)</font><br /><br /><font color=Blue>runTests</font> <font color=Red>::</font> IO ()<br /><font color=Blue>runTests</font> <font color=Red>=</font><br /> <font color=Green><u>do</u></font> args <font color=Red><-</font> filter <font color=Cyan>(</font><font color=Cyan>/=</font> <font color=Magenta>"--tests"</font><font color=Cyan>)</font> <font color=Cyan>`fmap`</font> getArgs<br /> flip defaultMainWithArgs args<br /> <font color=Red>[</font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>GeniVal<font color=Cyan>.</font>testSuite<br /> <font color=Cyan>,</font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>Tags<font color=Cyan>.</font>testSuite<br /> <font color=Cyan>,</font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>Simple<font color=Cyan>.</font>SimpleBuilder<font color=Cyan>.</font>testSuite<br /> <font color=Red>]</font><br /><font color=Blue>-- -----------------------------------------------------------------------</font><br /></pre>There's some other things going on in this file, notably the organisation of test suites. More on that later.<br /><h4>Where should I put my properties?</h4><h5>4. Put tests in the same module (where relevant)</h5>If a test is specific to one module, I tend to put them in that same source file. I do this because<br /><ol><li>It lets me test functions that I don't want to export</li><li>The tests serve as documentation</li><li>It forces me to update my tests along with my code</li></ol>This approach is in contrast to (a) having one big tests module and (b) having a separate test hierarchy. It may turn out to be useful to have a single big tests module as well, for example, for tests that cross the boundary from one module to the next. That need has not arisen for me yet. Likewise, I don't particularly believe in a separation between tests and code, although on the other hand some very experienced hackers seem to do so, so I'll just have to let experience teach me why.<br /><h4>How do I avoid repeating myself?</h4><h5>5. Provide a testSuite function for each module</h5>Commenting on my last post, Josef kindly pointed out that the book-keeping I feared isn't so bad in practice. He's right. Nevertheless, I want to avoid it. To do this, I make each of my modules export a <code>testSuite</code> function. Here is what one of my modules looks like, just focusing on the test suite<br /><pre><font color=Blue>-- EXAMPLE MODULE --------------------------------------------------------</font><br /><font color=Green><u>module</u></font> NLP<font color=Cyan>.</font>GenI<font color=Cyan>.</font>GeniVal <font color=Green><u>where</u></font><br /><br /><font color=Blue>-- SKIPPED MAIN IMPORTS ...</font><br /><br /><font color=Green><u>import</u></font> Test<font color=Cyan>.</font>Framework<br /><font color=Green><u>import</u></font> Test<font color=Cyan>.</font>Framework<font color=Cyan>.</font>Providers<font color=Cyan>.</font>HUnit<br /><font color=Green><u>import</u></font> Test<font color=Cyan>.</font>Framework<font color=Cyan>.</font>Providers<font color=Cyan>.</font>QuickCheck<br /><font color=Green><u>import</u></font> Test<font color=Cyan>.</font>QuickCheck<br /><font color=Green><u>import</u></font> Test<font color=Cyan>.</font>HUnit<br /><br /><font color=Blue>-- SKIPPED MAIN CODE</font><br /><br /><font color=Blue>testSuite</font> <font color=Red>=</font> testGroup <font color=Magenta>"unification"</font><br /> <font color=Red>[</font> testProperty <font color=Magenta>"self"</font> prop_unify_sym<br /> <font color=Cyan>,</font> testProperty <font color=Magenta>"anonymous variables"</font> prop_unify_anon<br /> <font color=Cyan>,</font> testProperty <font color=Magenta>"symmetry"</font> prop_unify_sym<br /> <font color=Cyan>,</font> testCase <font color=Magenta>"evil unification"</font> test_evil<br /> <font color=Red>]</font><br /><br /><font color=Blue>-- SKIPPED THE TESTS THEMSELVES</font><br /><font color=Blue>-- -----------------------------------------------------------------------</font><br /></pre>If you'll scroll up to the example that's marked TEST-FRAMEWORK WRAPPER, you'll see how these test suites are used in practice. Note the small trick of using the qualified module name to identify the test suite.<br /><br />Anyway, the general principle of having a per-module test suite comes from Aidan Delaney's <a href="https://blogs.linux.ie/balor/2009/07/05/organising-unit-tests-in-haskell/">Organising Unit Tests in Haskell</a>. The main difference between his approach and my approach are that I mix tests and code rather liberally.<br /><br /><h4>Conclusion</h4>I hope that some of these hints will make testing easier for you, or perhaps even get you started. If you still find yourself putting testing off, let me know. I'll be curious to see what else makes us resist. One thing that would probably be helpful is an extra guide to writing Arbitrary instances for QuickCheck, and also writing good properties that control the space well. Maybe even getting started with SmallCheck.<br /><br />Note that I am still somewhat new to testing and have only recently started these practices. So take these ideas with the usual salt. Thanks to Greg, Reinier, Aidan, and also folks who commented on my previous posts. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 12 tag:blogger.com,1999:blog-21123659.post-5375239473955886313 2009-06-24T09:32:00.003+02:00 2009-06-24T09:38:31.294+02:00 Haskell syntax highlighting on Wikipedia and Wikibooks If you edit the <a href="https://en.wikibooks.org/wiki/Haskell">Haskell Wikibook</a> and Wikipedia entries with Haskell in them, you may be interested to note that <a href="https://bugzilla.wikimedia.org/show_bug.cgi?id=10967">Haskell syntax highlighting</a> is now available on all Wikimedia projects.<br /><br /><a href="https://en.wikibooks.org/wiki/User:Kowey/Haskell">Example</a>:<pre><source lang="haskell"><br />-- foo<br />let x = foo<br /></source></pre> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 0 tag:blogger.com,1999:blog-21123659.post-6961537846812817456 2009-06-08T12:38:00.004+02:00 2009-06-08T18:16:38.108+02:00 testrunner for practical quickcheck I had mentioned in a <a href="https://koweycode.blogspot.com/2009/02/practical-quickcheck-wanted.html">previous post</a> three practical problems I had getting started with QuickCheck. My third question in this post was:<blockquote>How do I make my tests easy to run? Do I have to write my own RunTests module? Should I just use something like quickcheck-script?</blockquote>And one of the replies I got:<blockquote>I'm sure people are writing tests, but we all hack up harnesses in our own idiosyncratic ways.... -- blackdog<br /></blockquote>Maybe we can do better. Instead of everybody hacking up their own harness, how about having one test harness that everybody wants to use? We may even have a candidate for such a harness. Reinier Lamers has recently released a "testrunner" package which supports some rather nice features:<br /><ul><li>It can run unit tests in parallel.</li><li>It can run QuickCheck and HUnit tests as well as simple boolean expressions.</li><li>It comes with a ready-made main function for your unit test executable.</li><li>This main function recognizes command-line arguments to select tests by name and replay QuickCheck tests.<br /></li></ul>That's all really good stuff, but I think the number one best feature for me would be the little <a href="https://projects.haskell.org/testrunner/using-testrunner.html">tutorial</a> on its homepage.<br /><br />Testrunner is work that Reinier started in the context of the darcs project. We were trying to make our own custom test suite faster and more useful. Seeing ahead, Reinier did it not just by tweaking and tuning the harness we have, but by writing a more general purpose harness that did the things we wanted it to do and hopefully which other projects would want to do as well. So do you have a Haskell project that needs testing? Or maybe you already are doing some tests, but you just wish you could squeeze a little more out of your tests? Give testrunner a try!<br /><br /><b>Edit 2009-06-08 17:15</b><br />It turns out there is a second candidate, or rather a first candidate since <a href="https://wiki.github.com/batterseapower/test-framework/readme">test-framework</a> has been around for months. Embarrassingly enough, I had started to use test-framework for my own stuff, but I never realised how feature complete it was. Maybe it'll be time to merge projects? I'll see what Reinier thinks. Apologies to Max... kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 2 tag:blogger.com,1999:blog-21123659.post-3400690550502650541 2009-02-26T11:41:00.011+01:00 2009-02-26T12:13:23.923+01:00 inkscape layers Here's a small program that I wrote to extract a subset of layers from an Inkscape file. It may be handy if you have to give a talk and you want to include some "animated" overlays in your slides.<br /><br />I'm writing this post because I'm pleased to be able to automate this process at last. Also, I want to demonstrate that you don't have to be particularly clever or ambitious to get some good practical use out of Haskell.<br /><br /><h3>usage</h3><br />So I've got my Inkscape file with a "base" layer and several steps of my animation "zero", "one", "two", "three".<br /><br />If I do <code>inkscape-layers myfile.svg base > /tmp/foo.svg && inkscape --export-pdf=/tmp/foo.pdf"</code>, I get just the base layer which isn't very interesting:<br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTfHDq8c7772O5DJH5NJQsLK0qU9TzfB8M7vtEJ5QGcElIjj2t2D9A-8_BoeuWz4TePxd0soxU72x6lb9MdpvTO44be2MxwMXz1MiWJYMgGOSb-zOD_eRn6VN-USbR1KclqWpEwg/s1600-h/foo.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 200px; height: 72px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhTfHDq8c7772O5DJH5NJQsLK0qU9TzfB8M7vtEJ5QGcElIjj2t2D9A-8_BoeuWz4TePxd0soxU72x6lb9MdpvTO44be2MxwMXz1MiWJYMgGOSb-zOD_eRn6VN-USbR1KclqWpEwg/s200/foo.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5307056824471201922" /></a><br /><br />Now if I do <code>inkscape-layers myfile.svg base zero</code> (and convert the resulting SVG into a PDF as above), I get the zeroth layer:<a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzlqbbf_xD1LiXQjBn9hUfaZZRmTMM-HTovbblnOXL1H8cy7pDrNn3e0FUQ7Jo0OQoGbEbZrqtKK71xso06Ai1GsjnP7xLrMeN9CoskSOkZzWU5vHOqGzfD1A3CUk3LpM6ntL9GA/s1600-h/foo.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 200px; height: 72px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgzlqbbf_xD1LiXQjBn9hUfaZZRmTMM-HTovbblnOXL1H8cy7pDrNn3e0FUQ7Jo0OQoGbEbZrqtKK71xso06Ai1GsjnP7xLrMeN9CoskSOkZzWU5vHOqGzfD1A3CUk3LpM6ntL9GA/s200/foo.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5307056514364629138" /></a><br /><br />Likewise, to build the rest of my animation, <code>inkscape-layers myfile.svg base one</code><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFaR4nT0dRPVfeumPvNKfrJ9g1HCUNvYBEKX5yEoND5Qq-dqJ_R8gLu6y5Y0mzxi9hiTvCsw-4dxF0-QNVinWIL2ovIqFtRCiunR1ujHBGn_0q2h7CJ1WCZja1hQEHtiGyUxY4pA/s1600-h/foo.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 200px; height: 72px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhFaR4nT0dRPVfeumPvNKfrJ9g1HCUNvYBEKX5yEoND5Qq-dqJ_R8gLu6y5Y0mzxi9hiTvCsw-4dxF0-QNVinWIL2ovIqFtRCiunR1ujHBGn_0q2h7CJ1WCZja1hQEHtiGyUxY4pA/s200/foo.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5307057308129808898" /></a><br /><br /><code>inkscape-layers myfile.svg base two</code><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWmGwcRujdJ1kqVGMF3KjNqq-quT3AKfGnK0lprqBfH-eY2wqIkFLXzztYAsqHpvq3put7240xEV4_Q5RMGiesigop5GZcTqnYK1KNNArecZZtc5Em3-PZ_y9F4Lcxu7jKtPghIg/s1600-h/foo.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 200px; height: 72px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgWmGwcRujdJ1kqVGMF3KjNqq-quT3AKfGnK0lprqBfH-eY2wqIkFLXzztYAsqHpvq3put7240xEV4_Q5RMGiesigop5GZcTqnYK1KNNArecZZtc5Em3-PZ_y9F4Lcxu7jKtPghIg/s200/foo.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5307057542829557042" /></a><br /><br />Now instead of going clickity-click all over the place, I just dump this in my Makefile. If I every have to change something about my animation (for example, in the base layer), I just run "make" and rebuild it automatically. <br /><br />Yay, Haskell! Well, I'm sure you could just as easily have written this in your favourite programming language; I just like to randomly credit Haskell for making my life easier :-D<br /><br /><h3>the code</h3><br />I may upload this to Hackage if I could maybe get some other useful inkscape tools with it:<br /><pre><font color=Green><u>import</u></font> Data<font color=Cyan>.</font>Maybe <font color=Cyan>(</font>fromMaybe<font color=Cyan>)</font><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>Environment <font color=Cyan>(</font>getArgs<font color=Cyan>,</font> getProgName<font color=Cyan>)</font><br /><font color=Green><u>import</u></font> System<font color=Cyan>.</font>IO <font color=Cyan>(</font>hPutStrLn<font color=Cyan>,</font> stdout<font color=Cyan>,</font> stderr<font color=Cyan>)</font><br /><font color=Green><u>import</u></font> Text<font color=Cyan>.</font>XML<font color=Cyan>.</font>Light<br /><br /><font color=Blue>main</font> <font color=Red>=</font><br /> <font color=Green><u>do</u></font> args <font color=Red><-</font> getArgs<br /> pname <font color=Red><-</font> getProgName<br /> <font color=Green><u>case</u></font> args <font color=Green><u>of</u></font><br /> <font color=Cyan>(</font>f<font color=Red><b>:</b></font>ls<font color=Cyan>)</font> <font color=Red>-></font> go f ls<br /> <font color=Green><u>_</u></font> <font color=Red>-></font> hPutStrLn stderr <font color=Cyan>$</font> unwords <font color=Red>[</font> <font color=Magenta>"Usage:"</font><font color=Cyan>,</font> pname<font color=Cyan>,</font> <font color=Magenta>"filename"</font><font color=Cyan>,</font> <font color=Magenta>"layer1"</font><font color=Cyan>,</font> <font color=Magenta>"[layer2 [.. layer N]]"</font> <font color=Red>]</font><br /><br /><font color=Blue>go</font> f ls <font color=Red>=</font><br /> <font color=Green><u>do</u></font> d <font color=Red><-</font> goodXML <font color=Cyan>=<<</font> parseXMLDoc <font color=Cyan>`fmap`</font> readFile f<br /> <font color=Green><u>let</u></font> o <font color=Red>=</font> stdout <font color=Blue>-- we may want to make this more flexible later</font><br /> hPutStrLn o <font color=Cyan>.</font> showTopElement <font color=Cyan>.</font> wrapTop walk <font color=Cyan>$</font> d<br /> <font color=Green><u>where</u></font><br /> goodXML <font color=Red>=</font> maybe <font color=Cyan>(</font>fail <font color=Magenta>"bad XML"</font><font color=Cyan>)</font> return<br /> <font color=Blue>--</font><br /> walk x<font color=Red>@</font><font color=Cyan>(</font>Elem el<font color=Cyan>)</font> <font color=Red>=</font><br /> <font color=Green><u>let</u></font> lbl <font color=Red>=</font> fromMaybe <font color=Magenta>""</font> <font color=Cyan>(</font>findAttr qLABEL el<font color=Cyan>)</font><br /> x2 <font color=Red>=</font> Elem <font color=Cyan>$</font> el <font color=Cyan>{</font> elContent <font color=Red>=</font> map walk <font color=Cyan>(</font>elContent el<font color=Cyan>)</font> <font color=Cyan>}</font><br /> <font color=Green><u>in</u></font> <font color=Green><u>case</u></font> () <font color=Green><u>of</u></font> <font color=Green><u>_</u></font> <font color=Red>|</font> not <font color=Cyan>(</font>isLayer el<font color=Cyan>)</font> <font color=Red>-></font> x2<br /> <font color=Red>|</font> lbl <font color=Cyan>`elem`</font> ls <font color=Red>-></font> x2<br /> <font color=Red>|</font> otherwise <font color=Red>-></font> Text blank_cdata<br /> walk x <font color=Red>=</font> x<br /><br /><font color=Blue>isLayer</font> el <font color=Red>=</font> elName el <font color=Cyan>==</font> qSVG <font color=Magenta>"g"</font> <font color=Cyan>&&</font> findAttr qGROUP_MODE el <font color=Cyan>==</font> Just <font color=Magenta>"layer"</font><br /><br /><font color=Blue>qLABEL</font> <font color=Red>=</font> qInkscape <font color=Magenta>"label"</font><br /><font color=Blue>qGROUP_MODE</font> <font color=Red>=</font> qInkscape <font color=Magenta>"groupmode"</font><br /><br /><font color=Blue>qSVG</font> l <font color=Red>=</font> QName l <font color=Cyan>(</font>Just nsSVG<font color=Cyan>)</font> Nothing<br /><font color=Blue>nsSVG</font> <font color=Red>=</font> <font color=Magenta>"https://www.w3.org/2000/svg"</font><br /><br /><font color=Blue>qInkscape</font> l <font color=Red>=</font> QName l <font color=Cyan>(</font>Just nsINKSCAPE<font color=Cyan>)</font> Nothing<br /><font color=Blue>nsINKSCAPE</font><font color=Red>=</font><font color=Magenta>"https://www.inkscape.org/namespaces/inkscape"</font><br /><br /><font color=Blue>wrapTop</font> f e <font color=Red>=</font><br /> <font color=Green><u>case</u></font> f <font color=Cyan>(</font>Elem e<font color=Cyan>)</font> <font color=Green><u>of</u></font><br /> <font color=Cyan>(</font>Elem e<font color=Cyan>)</font> <font color=Red>-></font> e<br /> <font color=Green><u>_</u></font> <font color=Red>-></font> error <font color=Magenta>"programmer error: top content is not an element"</font><br /></pre><br />Note: as an exercise: modify the attributes of all exported layers so that they are visible. In Inkscape, I tend to make layers invisible so I don't get confused by them. But then Inkscape does not export them, which is annoying. This seems to be a simple matter of replacing "display:none" with "display:inline" in the style attribute (watch out, there could be more than one!). The 'split' library on Hackage could be handy for that. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 6 tag:blogger.com,1999:blog-21123659.post-4736713935107396434 2009-02-21T19:30:00.007+01:00 2009-02-21T20:27:21.931+01:00 implementing join in terms of (>>=) One of the things I got out of the Typeclassopedia is a somewhat more mature understand of monads (at last!). As a bonus side-effect it has also given me a slightly better understanding of myself. Specifically, I learned I often have trouble learning things because I suffer from a sort of "failure to unify". I thought I might make a note of it for the benefit of anybody else who is interested in how they learn... or not, as the case may be.<br /><br />So,<ul><li>we have <code>(>>=) :: m a -> (a -> m b) -> m b</code><li>we want <code>join :: m (m x) -> m x</code></ul>My mind drew a complete blank. So I went with something "direct" via do notation:<pre>join mmx =<br /> do mx <- mmx<br /> x <- mx<br /> return x</pre>Those last two lines are redundant:<pre>join mmx =<br /> do mx <- mmx<br /> mx</pre><br />Hang on, Eric, surely you don't need the crutch of do notation...<pre>join mmx = mmx >>= (\mx -> mx)</pre>That's just <code>id</code>:<pre>join mmx = mmx >>= id</pre><br /><span style="font-weight:bold;">But wait!</span> Surely that can't be right! Doesn't <code>(>>=)</code> require something of type <code>a -> m b</code>? And isn't <code>id</code> giving me <code>m x -> m x</code>? I stared at that for a while, almost panicking. What did I do wrong? And then it clicked. Of course, the <code>a</code> in <code>a -> m b</code> could stand in for any type, including <code>m x</code>. Just because it doesn't have a little <code>m</code> in it, doesn't mean that it's constrained not to have one. <br /><br />A simpler version of this kind of error, although one that didn't get me this time: just because we have <code>a</code> and <code>b</code> doesn't mean we actually have to have two different types. They <em>can</em>, but don't <em>need</em> to. And that, is my "failure to unify", inventing completely illusory constraints and not seeing through them.<br /><br />And so <code>join</code> is just <code>(>>= id)</code>. It took a little struggle, but it was well worth it!<br /><br />(PS, in my original attempt, I used the more conventional <code>m (m a)</code> when thinking of the types instead of what I reported here, <code>m (m x)</code>. The reason I reported the later is because I didn't want to confuse the discussion with another stumbling block I have, which is a "failure to rename", i.e. forgetting that two things called <code>a</code> in different contexts are actually two separate things. It's like speaking a foreign language. Just because you are aware that you have to do something, doesn't mean you will always do it automatically. Anyway, the "failure to rename" may very likely have conspired with the "failure to unify" in making me confused for a while) kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 2 tag:blogger.com,1999:blog-21123659.post-8702531753974017336 2009-02-16T16:45:00.005+01:00 2009-02-16T16:56:40.206+01:00 announcing: burrito tutorial support group It's really for the best if you leave these sorts of things out in the open.<br /><br /><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigZxMMMn6WLc3I-dL2566bU8ajQI5BikjmpHfebIBiZE5T8WY5OWEB0cjhaAWEKrt2YZXXm2HRTq75O-s1h-tSHp9K7_IqTTCsET_D5WsjHxmeUbW3P7rKrE_4HK3vLIUu9zRx4Q/s1600-h/burrito_support_group.png"><img style="display:block; margin:0px auto 10px; text-align:center;cursor:pointer; cursor:hand;width: 320px; height: 178px;" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigZxMMMn6WLc3I-dL2566bU8ajQI5BikjmpHfebIBiZE5T8WY5OWEB0cjhaAWEKrt2YZXXm2HRTq75O-s1h-tSHp9K7_IqTTCsET_D5WsjHxmeUbW3P7rKrE_4HK3vLIUu9zRx4Q/s320/burrito_support_group.png" border="0" alt=""id="BLOGGER_PHOTO_ID_5303423777136607170" /></a><br /><br />The first step is to ask for forgiveness, right? kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 0 tag:blogger.com,1999:blog-21123659.post-48783029780432694 2009-02-04T11:33:00.004+01:00 2009-02-04T11:43:58.694+01:00 practical quickcheck (wanted) Despite all the glowing reports on how useful QuickCheck is, I find that I still have a lot of resistance to using it. A lot of resistance comes from uncertainty, so in this post, I'm going to write down some of my half-formulated questions about using QuickCheck.<br /><br />Now, there may not be any right answer to these questions, but I'm writing them down anyway so that other people in my shoes know that they are not alone. Later on, as I find the answers that work for me, I'll hopefully put together some notes on 'Practical QuickCheck'.<br /><ol><li>Where should I put my properties? Xmonad and darcs seem to put them in a single properties module, but it would seem more natural to me to stick them in the same module as the functions I'm quickchecking. That said, I imagine that some properties can be thought of as being cross-module, so maybe a properties module would make sense.</li><li>How do I avoid redundancy, and generally repeating myself? Ideally, I would just write a property and be done with it. It would annoy me to have to keep updating some list of properties somewhere else (duplication). That said, maybe it's not really duplication if the list serves a secondary purpose of grouping the properties into some sensible hierarchy. Maybe the real question is "how do I make sure I don't forget to run all my properties?"</li><li>How do I make my tests easy to run? Do I have to write my own RunTests module? Should I just use something like <a href="https://hackage.haskell.org/cgi-bin/hackage-scripts/package/quickcheck-script">quickcheck-script</a>?</li></ol>I might update this list later as I think of more "best practices" questions. Hopefully I can follow this up with a short article teaching myself and others that really getting started with QuickCheck is easy easy easy (or maybe a link to a pre-existing article of the sort). The Real World Haskell chapter on it seems helpful. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 8 tag:blogger.com,1999:blog-21123659.post-3442265424802352158 2009-01-30T11:16:00.011+01:00 2009-01-30T11:48:44.595+01:00 haskell-ji As a programmer, I find myself struggling with a lot of really mundane and stupid-looking issues like "how should I name my variables", or "should acronyms be kept upper case (XML), or smooshed down for easier CamelCasing (Xml)?" and finally "what order should my code go in?"<br /><br />These questions do not so much keep me up and night, but cause me an inordinate amount of flip-flopping in my code. Not <em>remembering</em> my preference du jour, I'll sometimes do things four different ways in code and later on suffer because I forgot that in one bit of code, I had named something <code>parseXML</code> and in the other bit, I had named it <code>xmlParse</code>.<br /><br />The good news is that things are settling down on at least one front. It seems that all the versions of Eric past and present are settling on a consensus on How To Lay Code Out. The result is a set of directional tips, akin to the kind of thing you learn when you are writing Chinese Hanzi (Japanese Kanji):<br /><ol><li>Types before code</li><li>High-level before low-level -- For example, generally using <code>where</code> instead of <code>let...in</code>, but also "higher-level" functions first, "detail" functions later</li><li>Input before output -- It's not that this was ever up for debate, it's just that sometimes, I'll write it the other way without realising that I'm doing it.</li><li>Odds and ends last -- At the very end of my code: an odds-and-ends section for all those little snippets of code you copy around but are that too small to justify making a library, e.g. <pre>buckets :: Ord b => (a -> b) -> [a] -> [ (b,[a]) ]<br />buckets f = map (\xs -> (f (head xs), xs))<br /> . groupBy ((==) `on` f)<br /> . sortBy (compare `on` f)</pre>Do you have an odds-and-ends.hs file on your computer?<br /></li></ol>Notice that the tips are not always compatible with each other, but they do sort of point in the same general direction.<br /><br />Phew, I'm glad I'm starting to get at least this bit sorted. I really hope it reduces the amount of pointless erician flip-flopping. It's no big deal -- civilisation does not collapse because of inconsistent case conventions -- but it is a nuisance. This kind of thing is on the order of silly American-style dates vs. European-style dates causing confusion, where we could all just be using International yyyy-mm-dd dates, and while we're at it, 24 hour time, the metric system and A4 paper... kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 7 tag:blogger.com,1999:blog-21123659.post-1832816107388192201 2009-01-08T10:11:00.002+01:00 2009-01-08T10:20:29.320+01:00 fold diagram revisited? <pre>z<br />|<br />f----1----f<br />| : |<br />f----2----f<br />| : |<br />f----3----f<br />| : |<br />f----4----f<br />| : |<br />f----5----f<br /> : |<br /> [] z<br /></pre> kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 1 tag:blogger.com,1999:blog-21123659.post-5916046075952279381 2008-12-30T11:17:00.004+01:00 2008-12-30T11:20:48.318+01:00 riot is almost a Haskell mail client In case anybody wanted to write a mail client in Haskell, I should point out that Tuomov's <a href="https://modeemi.fi/%7Etuomov/riot/">riot</a> (Riot is an Information Organisation Tool) outliner<br /><ul><li>provides a sort of mutt-like user interface and<br /></li><li>stores its outlines as mailboxes (using in-reply-to to treat outline ancestry as thread ancestry).</ul><br />So that's some of the work done for you :-) kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 1 tag:blogger.com,1999:blog-21123659.post-5655956962978386431 2008-11-19T21:16:00.010+01:00 2008-11-20T00:05:33.503+01:00 iterative committing A few weeks ago, I saw this <a href="https://www.reddit.com/r/programming/comments/79h2k/subversion_sucks_get_over_it/c061aj6">interesting complaint</a> about distributed revision control advocacy:<br /><blockquote>But really, to read some of these articles, you'd think 99.9% of OSS contributions come from people who live on planes, only get 10% uptime on their broadband at home, and are incapable of spending the five minutes required to install something like Subversion locally for use with side projects.</blockquote> This particular complaint resonated with me because I've always had a slight feeling that all this talk of airplanes and intermittent online access is missing the point.<br /><br />I think what would help these discussions is to introduce the idea that there are really two ways to be disconnected: the involuntary way that most people talk about, and the voluntary way which is the really interesting one.<br /><br />To be involuntarily disconnected is to be literally or technically offline. The universe prevents you from phoning home because it broke your wifi card or plunked you deep in an Amazonian rain forest. True, a distributed revision control system lets you continue hacking in the face of such adversity; but this fact isn't very convincing to some folks who are used to centralised revision control. How often in today's world are you really involuntarily offline? The trick is that sometimes your disconnectedness is entirely<em> voluntarily</em>. I don't really mean that in the sense of unplugging your cable modem and calling a moratorium on network access for the day. The minute you want to commit to a server and can't because of missing network access, you are offline involuntarily, even if this came as the result of a voluntary decision.<br /><br />What I mean is that distributed revision control allows you to have pockets of<em> deliberate</em> disconnectedness from your peers. You want to work on something in little bits and pieces, you want to version control your work in progress, but you don't want to inflict your uncompleted work on your friends. A distributed VCS gives you a chance to step back for a moment and continue working with the benefit of version control. There are two alternatives to stepping back, neither of which are really acceptable. The first is to go ahead and commit your stuff with wild abandon, the consequences of which being that you pollute the change history with unfinished work and make life potentially difficult for your friends. The second alternative is NOT to commit your stuff at all, the consequences of which being that you lose the ability to track and log your your work as you go along.<br /><br />A distributed revision control system gives you the choice of <i>iterative committing</i>. It doesn't really matter if you are online or offline actually. Sometimes you just want to commit something for your own sake and only later decide if the commits should be shared with the main repository or not. In the meantime you can choose to go back, undo a commit, redo a commit, undo all your intermediary commits and lump them all into one big commit, update from the main repository and then rework your commit in the new context. These are the choices that a distributed revision control system offers.<br /><br />It's heartening to see that the idea of using a distributed VCS is catching on, that people are starting to adopt the likes of darcs, git, mercurial and bzr for their work. It means that the joy of iterative committing is spreading. Of course, I am partial to one of these systems in particular. Perhaps in a future article, I can describe what I think is the essential difference between darcs and our estimable competitors. I think I will call it<i> iterative merging</i>.<br /><br />Happy committing in the meantime! kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 14 tag:blogger.com,1999:blog-21123659.post-3027599009219162284 2008-11-07T19:01:00.005+01:00 2008-11-07T19:24:51.778+01:00 timesheet helper I wish there was a simple, no-fuss command line timesheet helper in the spirit of cabal-install and <a href="https://software.complete.org/software/wiki/twidge/">twidge</a>. The kind of interactions I imagine are:<pre><br />09:00 # timesheet start work draft 3 of the paper<br />10:00 # timesheet start darcs dwn<br />10:45 # timesheet start work regression test for ppack<br />12:00 # timesheet stop<br />12:30 # timesheet start darcs roadmap<br />13:15 # timesheet start work regression test for ppack<br />16:30 # timesheet start darcs patch review<br />17:00 # timesheet start work meeting<br />18:30 # timesheet stop<br /><br />18:30 # timesheet summary<br />Today 2008-11-07<br />-------------------<br />darcs: 2h<br />work: 6h 30m<br /><br />18:30 # timesheet details<br />Today 2008-11-07<br />-------------------<br />darcs: 2h<br />* dwn: 30 m<br />* roadmap: 45m<br />* patch review: 45m<br />work: 6h 30m<br />* draft 3 of the paper: 1h<br />* regression test for ppack: 4h<br />* meeting: 1h 30m<br /></pre><br />(Note the assumption here that you are never working on two tasks at the same time; clocking in to a new task automatically clocks you out of an old one). The key to this application is simplicity. In its present state, <a href="https://gpe.linuxtogo.org/projects/gpe-timesheet.shtml">gpe-timesheet</a> (0.32) uses too many confirmation dialogues to be really useful. <a href="https://loggr.co.uk/">Loggr</a> is nice and simple, but if I close my browser window, I lose track of things. Another property I would like to have is for the application to be forgiving to mistakes. If it stored timesheets in a simple text format, for example, I could just edit out my mistakes in a text-editor.<br /><br />For Haskellers, I also wish that we had a common library for writing command line applications with subcommands and switches. This would be useful for darcs, cabal-install, twidge, this timesheet application, and more. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 7 tag:blogger.com,1999:blog-21123659.post-6388905947384833861 2008-10-30T15:35:00.003+01:00 2008-10-30T15:37:05.977+01:00 official darcs blog! Darcs weekly news has moved! It will now be hosted on the official darcs blog at <a href="https://blog.darcs.net">https://blog.darcs.net</a>.<br /><br />The latest entry, <a href="https://blog.darcs.net/2008/10/darcs-weekly-news-10.html">darcs weekly news #10</a> has been posted on the new blog. kowey https://www.blogger.com/profile/11175806459477851520 noreply@blogger.com 0