User Alasdair - Stack Overflow most recent 30 from stackoverflow.com 2009-11-27T03:36:37Z http://stackoverflow.com/feeds/user/2654 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1779431/creating-monads-in-haskell/1782807#1782807 0 Answer by Alasdair for Creating monads in haskell Alasdair 2009-11-23T12:16:46Z 2009-11-23T12:16:46Z <p>Judging from your description of what you want your monad to do, I think you want something a bit like this:</p> <pre><code>data LeafConType a = LeafCon { runLeafCon' :: Int -&gt; Int -&gt; (Maybe a, Int, Int) } runLeafCon :: Int -&gt; Int -&gt; LeafConType a -&gt; Maybe a runLeafCon i n lc = let (t, _, _) = runLeafCon' lc i n in t getI :: LeafConType Int getI = LeafCon $ \i n -&gt; (Just i, i, n) getN :: LeafConType Int getN = LeafCon $ \i n -&gt; (Just n, i, n) setI :: Int -&gt; LeafConType () setI i = LeafCon $ \_ n -&gt; (Just (), i, n) setN :: Int -&gt; LeafConType () setN n = LeafCon $ \i _ -&gt; (Just (), i, n) instance Monad LeafConType where return t = LeafCon $ \i n -&gt; if (i &lt; n) then (Just t, i, n) else (Nothing, i, n) (LeafCon k) &gt;&gt;= f = LeafCon $ \i n -&gt; let (t, i', n') = k i n in case t of Nothing -&gt; (Nothing, i', n') (Just t') -&gt; if (i' &lt; n') then runLeafCon' (f t') i' n' else (Nothing, i, n) example :: Int -&gt; LeafConType ((), Int) example x = do i &lt;- getI m &lt;- setI (i + x) return (m, i + x) </code></pre> <p>Some examples:</p> <pre><code>*Main&gt; runLeafCon 2 10 $ example 4 Just ((),6) *Main&gt; runLeafCon 2 10 $ example 8 Nothing *Main&gt; runLeafCon 2 10 $ example 7 Just ((),9) </code></pre> <p>I threw this together pretty quickly, it's rather ugly, and I haven't checked to see whether it obeys any of the Monad laws, so use at your peril! :)</p> http://stackoverflow.com/questions/1317399/getting-the-local-appdata-folder-in-haskell 1 Getting the Local AppData folder in Haskell Alasdair 2009-08-23T00:18:03Z 2009-08-23T23:16:08Z <p>Hi, I'm trying to get the location of Window's Local AppData folder in a version-agnostic manner using Haskell, and I'm having a bit of trouble doing so. I've tried using the System.Win32.Registry library, and I was able to get the code below (after some trial and error), but I wasn't able to figure out how to use the <code>regQueryValueEx</code> or any other function to get the value I need.</p> <pre><code>import System.Win32.Types import System.Win32.Registry userShellFolders :: IO HKEY userShellFolders = regOpenKeyEx hKEY_CURRENT_USER "Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders\\" kEY_QUERY_VALUE </code></pre> <p>I also tried looking at the source code for the <code>getAppUserDataDirectory</code> function in the System.Directory module, but that didn't help me either.</p> <p>Maybe there's an easier way to do this that I'm just missing.</p> http://stackoverflow.com/questions/293345/haskell-string-list-through-lines/293397#293397 0 Answer by Alasdair for Haskell string list through lines Alasdair 2008-11-16T02:58:52Z 2008-11-16T03:11:05Z <p>Remember that lists are monads in haskell, with the definition:</p> <pre><code>instance Monad [] where m &gt;&gt;= f = concatMap f m return x = [x] fail s = [] </code></pre> <p>So if you take your code, which goes something like:</p> <pre><code>do {ln &lt;- lines "hello, world"; ln!!0} </code></pre> <p>That is equivalent to the following using bind notation:</p> <pre><code>lines "hello world" &gt;&gt;= (\ln -&gt; ln!!0) </code></pre> <p>or more concisely:</p> <pre><code>lines "hello world" &gt;&gt;= (!!0) </code></pre> <p>We can now use the definition of the list monad to re-write that as the following:</p> <pre><code>concatMap (!!0) (lines "hello, world") </code></pre> <p>Which is equivalent to:</p> <pre><code>concat $ map (!!0) (lines "hello, world") </code></pre> <p>lines "hello, world" will return ["hello, world"], so mapping (!!0) over it will produce the string "h". That has type [Char], but concat requires a type [[t]]. Char does not match [t], hence the error.</p> <p>Try using a let or something rather than do notation.</p> <p>Edit:</p> <p>So I think this is what you want, using let rather than do.</p> <pre><code>run :: String -&gt; String run s = let ln = lines s seq = ln!!0 states = ln!!1 l1 = listDouble (ln!!2) l2 = listDouble (ln!!3) tr1 = readDouble (ln!!4) tr2 = readDouble (ln!!5) in show $ maximumInd (scoreFunction seq (length seq) l1 l2 tr1 tr2) </code></pre> http://stackoverflow.com/questions/77934/how-do-i-display-an-image-with-ltk/104227#104227 2 Answer by Alasdair for How do I display an image with ltk? Alasdair 2008-09-19T18:17:33Z 2008-09-19T22:18:11Z <p>It has been a while since I used LTK for anything, but the simplest way to display an image with LTK is as follows:</p> <pre><code>(defpackage #:ltk-image-example (:use #:cl #:ltk)) (in-package #:ltk-image-example) (defun image-example () (with-ltk () (let ((image (make-image))) (image-load image "testimage.gif") (let ((canvas (make-instance 'canvas))) (create-image canvas 0 0 :image image) (configure canvas :width 800) (configure canvas :height 640) (pack canvas))))) </code></pre> <p>Unfortunately what you can do with the image by default is fairly limited, and you can only use gif or ppm images - but the <a href="http://en.wikipedia.org/wiki/Portable_pixmap" rel="nofollow">ppm file format</a> is very simple, you could easily create a ppm image from your bitmap. However you say you want to manipulate the displayed image, and looking at the code that defines the image object:</p> <pre><code>(defclass photo-image(tkobject) ((data :accessor data :initform nil :initarg :data) ) ) (defmethod widget-path ((photo photo-image)) (name photo)) (defmethod initialize-instance :after ((p photo-image) &amp;key width height format grayscale data) (check-type data (or null string)) (setf (name p) (create-name)) (format-wish "image create photo ~A~@[ -width ~a~]~@[ -height ~a~]~@[ -format \"~a\"~]~@[ -grayscale~*~]~@[ -data ~s~]" (name p) width height format grayscale data)) (defun make-image () (let* ((name (create-name)) (i (make-instance 'photo-image :name name))) ;(create i) i)) (defgeneric image-load (p filename)) (defmethod image-load((p photo-image) filename) ;(format t "loading file ~a~&amp;" filename) (send-wish (format nil "~A read {~A} -shrink" (name p) filename)) p) </code></pre> <p>It looks like the the actual data for the image is stored by the Tcl/Tk interpreter and not accessible from within lisp. If you wanted to access it you would probably need to write your own functions using <strong>format-wish</strong> and <strong>send-wish</strong>.</p> <p>Of course you could simply render each pixel individually on a canvas object, but I don't think you would get very good performance doing that, the canvas widget gets a bit slow once you are trying to display more than a few thousand different things on it. So to summarize - if you don't care about doing anything in real time, you could save your bitmap as a .ppm image every time you wanted to display it and then simply load it using the code above - that would be the easiest. Otherwise you could try to access the data from tk itself (after loading it once as a ppm image), finally if none of that works you could switch to another toolkit. Most of the decent lisp GUI toolkits are for linux, so you may be out of luck if you are using windows.</p> http://stackoverflow.com/questions/54223/how-do-i-get-started-in-game-development/54238#54238 0 Answer by Alasdair for How do I get started in game development? Alasdair 2008-09-10T14:41:52Z 2008-09-10T14:41:52Z <p>You can use the <a href="http://www.libsdl.org" rel="nofollow">SDL</a> library for cross-platform game development using many different languages. For example if you are using Python, the <a href="http://www.pygame.org" rel="nofollow">pygame</a> library uses SDL.</p> http://stackoverflow.com/questions/52492/what-is-the-best-way-to-avoid-getting-emacs-pinky/52504#52504 17 Answer by Alasdair for What is the best way to avoid getting "Emacs Pinky"? Alasdair 2008-09-09T18:12:08Z 2008-09-09T18:12:08Z <p>Making caps lock another control key is a good place to start. Invest in an ergonomic keyboard. Some emacs users even go as far as to get foot pedal things for control and meta...</p> http://stackoverflow.com/questions/51028/is-there-a-simple-way-in-haskell-to-call-a-shell-command-in-windows-without-the-c/52342#52342 1 Answer by Alasdair for Is there a simple way in Haskell to call a shell command in Windows without the command window popping up? Alasdair 2008-09-09T17:00:11Z 2008-09-09T17:00:11Z <p>You should really tell us how you are trying to do this currently, but on my system (using linux) the following snippet will run a command without opening a new terminal window. It should work the same way on windows.</p> <pre><code>module Main where import System import System.Process import Control.Monad main :: IO () main = do putStrLn "Running command..." pid &lt;- runCommand "mplayer song.mp3" -- or whatever you want replicateM_ 10 $ putStrLn "Doing other stuff" waitForProcess pid &gt;&gt;= exitWith </code></pre> http://stackoverflow.com/questions/51093/ubuntu-32-bit-maximum-address-space/51101#51101 0 Answer by Alasdair for Ubuntu 32 bit maximum address space Alasdair 2008-09-09T01:58:01Z 2008-09-09T02:07:15Z <p>Linux supports a technology called PAE that lets you use more than 4GB of memory, however I don't know whether Ubuntu has it on by default. You may need to compile a new kernel.</p> <p>Edit: Some threads on the Ubuntu forums suggest that the server kernel has PAE on by default, you could try installing that.</p> http://stackoverflow.com/questions/33630/whats-the-maximum-amount-of-ram-i-can-use-in-a-windows-box/33636#33636 0 Answer by Alasdair for What's the maximum amount of RAM I can use in a Windows box? Alasdair 2008-08-28T23:29:45Z 2008-08-28T23:29:45Z <p><a href="http://en.wikipedia.org/wiki/Windows_XP_editions#Advantages" rel="nofollow">According to wikipedia</a> you can have 128 GB of physical RAM in a 64-bit Windows XP computer.</p> http://stackoverflow.com/questions/32964/should-a-wireless-network-be-open/32981#32981 -2 Answer by Alasdair for Should a wireless network be open? Alasdair 2008-08-28T18:15:33Z 2008-08-28T18:20:50Z <p>Why would you not want to use WEP or WPA?</p> http://stackoverflow.com/questions/31561/keeping-cl-and-scheme-straight-in-your-head/31603#31603 5 Answer by Alasdair for Keeping CL and Scheme straight in your head Alasdair 2008-08-28T03:24:20Z 2008-08-28T03:24:20Z <p><a href="http://www.lispworks.com/documentation/HyperSpec/Body/f_map.htm" rel="nofollow">Map</a> is more general than mapcar, for example you could do the following rather than using mapcar:</p> <pre><code>(map 'list #'function listvar) </code></pre> <p>How do I keep scheme and CL separate in my head? I guess when you know both languages well enough you just know what works in one and not the other. Despite the syntactic similarities they are quite different languages in terms of style.</p> http://stackoverflow.com/questions/31412/proprietary-plug-ins-for-gpl-programs-what-about-interpreted-languages/31423#31423 1 Answer by Alasdair for Proprietary plug-ins for GPL programs: what about interpreted languages? Alasdair 2008-08-28T00:33:40Z 2008-08-28T00:33:40Z <p>How much info are you sharing between the Plugins and the main program? If you are doing anything more than just executing them and waiting for the results (sharing no data between the program and the plugin in the process) then you could most likely get away with them being proprietary, otherwise they would probably need to be GPL'd.</p> http://stackoverflow.com/questions/25433/simple-lisp-program-causing-computer-to-hang/31393#31393 0 Answer by Alasdair for Simple Lisp Program Causing Computer To Hang Alasdair 2008-08-28T00:17:19Z 2008-08-28T00:17:19Z <p>Peter Norvig wrote a guide on how to correctly format lisp code, you may want to take a look.</p> <p><a href="http://www.cs.umd.edu/~nau/cmsc421/norvig-lisp-style.pdf" rel="nofollow">Tutorial on Good Lisp Programming Style (PDF link)</a></p> http://stackoverflow.com/questions/1317399/getting-the-local-appdata-folder-in-haskell/1318038#1318038 Comment by Alasdair on Getting the Local AppData folder in Haskell Alasdair 2009-08-24T20:15:35Z 2009-08-24T20:15:35Z The reason I tried getting the path from the registry was because the documentation for the app I'm interoperating with says that the registry is how you do should this, luckily it's in wiki format so I was able to correct it. http://stackoverflow.com/questions/1317399/getting-the-local-appdata-folder-in-haskell/1318038#1318038 Comment by Alasdair on Getting the Local AppData folder in Haskell Alasdair 2009-08-23T13:24:44Z 2009-08-23T13:24:44Z Thank you very much, this does exactly what I need. http://stackoverflow.com/questions/1317399/getting-the-local-appdata-folder-in-haskell/1317648#1317648 Comment by Alasdair on Getting the Local AppData folder in Haskell Alasdair 2009-08-23T03:23:36Z 2009-08-23T03:23:36Z Local AppData is distinct from AppData. For an English Language XP install, Local AppData is &quot;%USERPROFILE%\Local Settings\Application Data&quot;, while AppData is &quot;%USERPROFILE%\Application Data&quot;. Vista and Windows 7 have the %LOCALAPPDATA% environment variable, but XP doesn't. Currently I've hacked together a solution which involves calling a tiny VB.net app from my Haskell program, but that's pretty darn ugly. http://stackoverflow.com/questions/1092783/how-to-make-this-code-more-compact-and-readable/1094657#1094657 Comment by Alasdair on How to make this code more compact and readable? Alasdair 2009-07-09T13:38:30Z 2009-07-09T13:38:30Z It's more a nasty wart in Haskell than a nasty habit. Monad really should imply both Applicative and Functor. http://stackoverflow.com/questions/542934/can-any-algorithmic-problem-be-solved-in-a-purely-functional-way/543753#543753 Comment by Alasdair on Can any algorithmic problem be solved in a purely functional way? Alasdair 2009-02-13T02:07:19Z 2009-02-13T02:07:19Z Rather than using the state transformer monad you can use the Data.Array.Diff module for functional arrays with an O(1) update operation. Under the hood it's implemented using a mutable array, but it provides a purely functional interface allowing it to be used in pure code. http://stackoverflow.com/questions/542934/can-any-algorithmic-problem-be-solved-in-a-purely-functional-way/542951#542951 Comment by Alasdair on Can any algorithmic problem be solved in a purely functional way? Alasdair 2009-02-12T20:23:00Z 2009-02-12T20:23:00Z dsimcha, unless I'm horribly misunderstanding what you mean by 'summing the elements of an array', I would be inclined to believe that you have absolutely no idea what you are talking about. In Haskell: sumArray = Fold.foldl' (+) 0 http://stackoverflow.com/questions/433595/function-application-why-is-used-here/433893#433893 Comment by Alasdair on Function application: Why is $ used here? Alasdair 2009-01-12T01:54:13Z 2009-01-12T01:54:13Z 'concat . map f $ xs&quot; is not pointfree, bind for the list monad written in a pointfree style would be '(&gt;&gt;=) = flip concatMap' or similar. This is one example where the pointfree style is actually very clear. See <a href="http://www.haskell.org/haskellwiki/Pointfree" rel="nofollow">haskell.org/haskellwiki/Pointfree</a> http://stackoverflow.com/questions/293345/haskell-string-list-through-lines/293397#293397 Comment by Alasdair on Haskell string list through lines Alasdair 2008-11-16T03:15:39Z 2008-11-16T03:15:39Z I don't think let expressions actually translate down to any more primitive forms (I may be wrong), It's just a basic language construct. I updated my post to show what I think the OP wanted. http://stackoverflow.com/questions/60367/the-single-most-useful-emacs-feature/60576#60576 Comment by Alasdair on The single most useful Emacs feature Alasdair 2008-09-16T02:49:00Z 2008-09-16T02:49:00Z Traditional UNIX keyboards typically had the control key where the caps lock key is now, hence the remapping tradition. You use your pinky for hitting shift and tab, and caps is even easier - give the finger some credit! It's a LOT better than the default layout, so I wouldn't call it bad advice. http://stackoverflow.com/questions/63241/what-is-the-strangest-programming-language-you-have-used/63604#63604 Comment by Alasdair on What is the strangest programming language you have used? Alasdair 2008-09-15T23:50:53Z 2008-09-15T23:50:53Z Lots of people are using Haskell - you can check out Hackage to see what they are doing. There is also a very active Haskell IRC channel on freenode. <a href="http://hackage.haskell.org/packages/archive/recent.html" rel="nofollow">hackage.haskell.org/packages/archive/&hellip;</a>