User Rayne - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T23:47:21Z http://stackoverflow.com/feeds/user/21734 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1925581/dealing-with-large-files-in-haskell/1925739#1925739 2 Answer by Rayne for Dealing with large files in Haskell Rayne 2009-12-18T01:27:19Z 2009-12-18T01:27:19Z <p><a href="http://book.realworldhaskell.org/read/io.html#io.lazy" rel="nofollow">This</a> should be quite helpful to you. You can use <code>readFile</code> and <code>writeFile</code> for what you need to do, and everything is done lazily. It only keeps things in memory while they are still being used, so you can read, process, and write the file out without blowing up your computer.</p> http://stackoverflow.com/questions/1908333/getting-cabal-to-work-with-ghc-6-12-1/1909231#1909231 1 Answer by Rayne for Getting Cabal to work with GHC 6.12.1 Rayne 2009-12-15T18:01:24Z 2009-12-15T18:01:24Z <p>I heard someone on the #Haskell IRC channel on Freenode say that they had Cabal-install working fine from the repositories. If you don't want to wait for the next release, you should be able to get it from the darcs repo.</p> http://stackoverflow.com/questions/1257028/why-should-i-use-apply-in-clojure/1820048#1820048 0 Answer by Rayne for Why should I use 'apply' in Clojure? Rayne 2009-11-30T14:07:53Z 2009-11-30T14:07:53Z <p><code>apply</code> basically unwraps a sequence and applies the function to them as individual arguments.</p> <p>Here is an example:</p> <pre><code>(apply + [1 2 3 4 5]) </code></pre> <p>That returns 15. It basically expands to <code>(+ 1 2 3 4 5)</code>, instead of <code>(+ [1 2 3 4 5])</code>.</p> http://stackoverflow.com/questions/1815530/import-list-in-haskell/1819375#1819375 1 Answer by Rayne for import List in haskell Rayne 2009-11-30T11:56:12Z 2009-11-30T11:56:12Z <p>First of all, I will point out that Visual Haskell Studio is an (outdated) IDE plugin, and not an implementation of Haskell itself. I suspect the underlying implementation is GHC.</p> <p>Second, List is in Data.List, not System.List. If you don't know where a library is, but you know of a function that exists in that library, you can use <a href="http://www.haskell.org/hoogle/" rel="nofollow">Hoogle</a>, which appears to be down right now. An alternative you can use while Hoogle is down, is <a href="http://holumbus.fh-wedel.de/hayoo/hayoo.html" rel="nofollow">Hayoo</a>.</p> http://stackoverflow.com/questions/1816092/using-the-github-gist-api-from-haskell 1 Using the Github Gist API from Haskell Rayne 2009-11-29T17:16:02Z 2009-11-29T21:59:20Z <p>First of all, I've never really used APIs before, and I've never used the HTTP library in Haskell. I'm not sure what I'm doing wrong here, so maybe somebody who knows can help.</p> <p>I'm using what I can read of this: <a href="http://github.com/defunkt/gist/blob/master/gist.rb" rel="nofollow">http://github.com/defunkt/gist/blob/master/gist.rb</a>, namely the write method, to write this:</p> <pre><code>req = postRequest "http://gist.github.com/gists/new" testPost = simpleHTTP $ req {rqBody = urlEncodeVars [("login", "Raynes"), ("token","&lt;removed&gt;"), ("file_ext[gistfile1]",".hs"), ("file_name[gistfile1]","testfile"), ("file_contents[gistfile1]","main = putStrLn \"Hello, world!\"")]} </code></pre> <p>When ran, testPost gives this output:</p> <pre><code>Right HTTP/1.1 302 Found Server: nginx/0.7.61 Date: Sun, 29 Nov 2009 17:13:51 GMT Content-Type: text/html; charset=utf-8 Connection: close Status: 302 Found Location: http://gist.github.com/gists/new X-Runtime: 1ms Content-Length: 98 Set-Cookie: _github_ses=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--884981fc5aa85daf318eeff084d98e2cff92578f; path=/; expires=Wed, 01 Jan 2020 08:00:00 GMT; HttpOnly Cache-Control: no-cache </code></pre> <p>As far as I know, the Location should be a link to the new Gist. However, no new Gist is made. I'm not sure what I'm doing wrong. There is basically no documentation for the Gist API, and the only thing I can assume is that I'm not translating the Ruby correctly. Like I said, I've never really used the HTTP library before.</p> <p>Any help is appreciated.</p> http://stackoverflow.com/questions/1816092/using-the-github-gist-api-from-haskell/1816927#1816927 0 Answer by Rayne for Using the Github Gist API from Haskell Rayne 2009-11-29T21:59:20Z 2009-11-29T21:59:20Z <p>I figured it out myself after reading an example of using Network.Browser.browse.</p> <pre><code>req = "http://gist.github.com/gists" testPost = do (uri, rsp) &lt;- Network.Browser.browse $ do setAllowRedirects True request $ formToRequest $ Form POST (fromJust $ parseURI req) [("file_ext[gistfile1]",".hs"), ("file_contents[gistfile1]","main = putStrLn \"Hello, world!\""), ("login","Raynes"), ("token","removed")] return uri </code></pre> http://stackoverflow.com/questions/1810178/haskell-execution-sequence/1810232#1810232 1 Answer by Rayne for Haskell execution sequence Rayne 2009-11-27T18:57:25Z 2009-11-27T18:57:25Z <pre><code>solve s | s == 0 = Nothing | s == 1 = Just 1 | otherwise = check [solve (s-(x*2)) | x &lt;- [1..9]] </code></pre> <p>In the case of <code>solve 2</code>:</p> <p><code>(2 - (1 * 2)) = 0</code> <code>(0 - (2 * 2)) = -2</code></p> <p>et cetera.</p> <p>I'm not sure about the debugging stuff, but that's why it's overflowing the stack. It's infinitely recursing.</p> http://stackoverflow.com/questions/1802015/when-should-i-use-record-syntax-for-data-declarations-in-haskell 5 When should I use record syntax for data declarations in Haskell? Rayne 2009-11-26T07:12:05Z 2009-11-26T08:20:22Z <p>Record syntax seems extremely convenient compared to having to write your own accessor functions. I've never seen anyone give any guidelines as to when it's best to use record syntax over normal data declaration syntax, so I'll just ask here.</p> http://stackoverflow.com/questions/1797166/multiple-haskell-cabal-packages-in-one-directory/1802000#1802000 1 Answer by Rayne for Multiple Haskell cabal-packages in one directory Rayne 2009-11-26T07:05:52Z 2009-11-26T07:05:52Z <p>I'd have to recommend option 1 or 3 for cleanliness. I'm not sure how to get around this, if there is even a way to get around this. </p> http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure/1801803#1801803 2 Answer by Rayne for In Which Cases Is Better To Use Clojure? Rayne 2009-11-26T06:01:35Z 2009-11-26T06:01:35Z <p>One of the greatest things about Clojure is the plethora of libraries you can use with it. You have the power of Java with the expressiveness of Lisp, and that is a badass combination. Clojure is more suited for real world development, because it was made for real world development. With Clojure, you have awesome libraries, awesome modern features, and an amazing community of helpful, like-minded people.</p> <p>I would have to say that Clojure is a better language, all the way around. That is a highly argumentative statement to make, so I will point out here that this is just my honest opinion.</p> <p>Clojure rocks.</p> http://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related 3 Can somebody walk me through this Haskell function (State monad related)? Rayne 2009-11-25T09:45:34Z 2009-11-25T12:14:56Z <pre><code>tick :: State Int Int tick = get &gt;&gt;= \n -&gt; put (n+1) &gt;&gt;= \y -&gt; return n </code></pre> <p>I'm confused as to how <code>put (n+1)</code> has any effect on the end result of this function at all. It seems like this function should return the initial state unchanged. I'm trying to run through this in my mind, but I keep running out of room to hold things in place. :\</p> <p>If someone could walk me through the evaluation of this function, it would be really helpful.</p> http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1793721#1793721 1 Answer by Rayne for Code-Golf: What is the shortest program that compiles and crashes? Rayne 2009-11-24T23:35:22Z 2009-11-24T23:35:22Z <pre><code>main = undefined </code></pre> <p>In Haskell.</p> http://stackoverflow.com/questions/1787708/representing-a-tree-in-clojure/1788029#1788029 1 Answer by Rayne for Representing A Tree in Clojure Rayne 2009-11-24T05:37:53Z 2009-11-24T05:37:53Z <p>You should probably use a struct for this.</p> <pre><code>(defstruct bintree :left :right :key) </code></pre> <p>You can use <code>struct-map</code> to instantiate the structure.</p> <pre><code>(struct-map bintree :left nil :right nil :key 0) </code></pre> http://stackoverflow.com/questions/1778919/equivalence-testing-in-haskell/1780081#1780081 2 Answer by Rayne for Equivalence testing in Haskell Rayne 2009-11-22T21:36:55Z 2009-11-22T21:36:55Z <p>Like Martin said, languages with lazy evaluation never evaluate anything that's value is not immediately needed. In a lazy language like Haskell, you get short circuiting for free. In most languages, the || and &amp;&amp; and similar operators must be built specially into the language in order for them to short circuit evaluation. However, in Haskell, lazy evaluation makes this unnecessary. You could define a function that short circuits yourself even:</p> <p><code>scircuit fb sb = if fb then fb else sb</code></p> <p>This function will behave just like the logical 'or' operator. Here is how || is defined in Haskell:</p> <pre><code>True || _ = True False || x = x </code></pre> <p>So, to give you the specific answer to your question, no. If the left hand side of the || is true, the right hand side is never evaluated. You can put two and two together for the other operators that 'short circuit'.</p> http://stackoverflow.com/questions/1757740/how-foldr-works/1767009#1767009 1 Answer by Rayne for How foldr works Rayne 2009-11-19T22:23:30Z 2009-11-19T22:23:30Z <p>An easy way to understand foldr is this: It replaces every list constructor with an application of the function provided. Your first example would translate to:</p> <p><code>10 - (11 - 54)</code></p> <p>from:</p> <p><code>10 : (11 : [])</code></p> <p>A good piece of advice that I got from the Haskell wikibook might be of some use here:</p> <blockquote> <p>As a rule you should use foldr on lists that might be infinite or where the fold is building up a data structure, and foldl' if the list is known to be finite and comes down to a single value. foldl (without the tick) should rarely be used at all.</p> </blockquote> http://stackoverflow.com/questions/142948/how-can-i-use-functional-programming-in-the-real-world/142961#142961 3 Answer by Rayne for How can I use functional programming in the real world? Rayne 2008-09-27T04:10:04Z 2009-11-19T00:32:54Z <p>I'm currently learning Haskell myself, when you start out learning it, it doesn't seem very intriguing because the learning experience is NOTHING like learning a language like C#, it's a whole new world, but I noticed I could write very very complex expressions in just a few lines of code, when I looked back at the code it was much more concise, it was small and tight. I'm absolutely loving it! You can indeed write real-world programs that will be smaller, easier to maintain, and much more complex then most other languages allow, I vote for you to learn it!!</p> <p>Good luck.</p> http://stackoverflow.com/questions/1147975/in-clojure-when-should-i-use-a-vector-over-a-list-and-the-other-way-around 2 In Clojure, when should I use a vector over a list, and the other way around? Rayne 2009-07-18T16:41:25Z 2009-11-19T00:31:20Z <p>I read that Vectors are not seqs, but Lists are. I'm not sure what the rationale is for using one over the other. It seems that vectors are used the most, but is there a reason for that? Any answers are appreciated, thanks!</p> http://stackoverflow.com/questions/1147975/in-clojure-when-should-i-use-a-vector-over-a-list-and-the-other-way-around/1148073#1148073 5 Answer by Rayne for In Clojure, when should I use a vector over a list, and the other way around? Rayne 2009-07-18T17:28:18Z 2009-11-19T00:31:20Z <p>Once again, it seems I've answered my own question by getting impatient and asking it in #clojure on Freenode. Good thing answering your own questions is encouraged on Stackoverflow.com :D</p> <p>I had a quick discussion with Rich Hickey, and here is the gist of it.</p> <pre><code>[12:21] &lt;Raynes&gt; Vectors aren't seqs, right? [12:21] &lt;rhickey&gt; Raynes: no, but they are sequential [12:21] &lt;rhickey&gt; ,(sequential? [1 2 3]) [12:21] &lt;clojurebot&gt; true [12:22] &lt;Raynes&gt; When would you want to use a list over a vector? [12:22] &lt;rhickey&gt; when generating code, when generating back-to-front [12:23] &lt;rhickey&gt; not too often in Clojure </code></pre> http://stackoverflow.com/questions/1735146/ways-to-get-the-middle-of-a-list-in-haskell/1739559#1739559 0 Answer by Rayne for Ways to get the middle of a list in Haskell? Rayne 2009-11-16T01:05:07Z 2009-11-17T00:12:15Z <p>Here is my version. It was just a quick run up. I'm sure it's not very good.</p> <pre><code>middleList xs@(_:_:_:_) = take (if odd n then 1 else 2) $ drop en xs where n = length xs en = if n &lt; 5 then 1 else 2 * (n `div` 4) middleList xs = xs </code></pre> <p>I tried. :)</p> <p>If anyone feels like commenting and telling me how awful or good this solution is, I would deeply appreciate it. I'm not <em>very</em> well versed in Haskell.</p> <p>EDIT: Improved with suggestions from kmc on #haskell-blah</p> <p>EDIT 2: Can now accept input lists with a length of less than 5.</p> http://stackoverflow.com/questions/1673182/clojure-doesnt-the-ability-to-use-java-objects-with-state-defy-the-whole-idea-o/1675787#1675787 3 Answer by Rayne for Clojure: Doesn't the ability to use Java objects with state defy the whole idea of functional P? Rayne 2009-11-04T18:38:07Z 2009-11-04T18:54:55Z <p>Clojure is <em>not</em> a <em>pure</em> functional programming language. What you said would stand in Haskell, but not in Clojure. Clojure <em>encourages</em> functional programming, but it doesn't force it. Clojure is built to help you program in a functional style, but also to allow you to actually get stuff done. Clojure makes sure that when you use state, you have to be explicit about it. If you want to be sure that you're programming purely functional, you have to make sure yourself. Clojure isn't pure, so it doesn't promise purity.</p> http://stackoverflow.com/questions/1610869/clojure-development-ide-or-repl/1611225#1611225 4 Answer by Rayne for Clojure Development: IDE or REPL? Rayne 2009-10-23T03:24:23Z 2009-10-23T03:33:08Z <p>Well, to start off, virtually any decent development plugin for any editor or IDE will give you a way to use the Clojure REPL from within the IDE. Probably even allow you to load files into the REPL for testing and such. You don't need to choose one or the other.</p> <p>Enclojure is going a long way, that is for sure. However, most people are perfectly happy with using Emacs, including myself. Emacs uses a Lisp as its configuration language, so it's usually the most natural choice to a Lisper.</p> <p>For languages that have REPLs, using the REPL as a major part of the development process is the norm. Editing files, loading them into the REPL, playing with them to see if a work, rinse, repeat. This is one of the major advantages of languages with REPLs like Clojure and Haskell and CL and such.</p> <p>As for building jars, and compiling Clojure code and stuff, that's simple. You don't even really /have/ to Compile Clojure code most of the time if you don't want to. When you do, you AOT compile it with gen-class, which compiles it to class files that you can then put into a jar. There are tons of examples and even tutorials spread amongst the interwebs. The easiest and most efficient way is to use something like Ant and writing a build script that compiles Clojure code and generates the .jar for you. The first time I did it, I thought it was going to be hard to do, but it was actually really simple. I just looked at the Clojure and Clojure-Contrib Ant build files, and referenced the Ant help pages for everything else I needed.</p> <p>One thing I should mention is the fact that Enclojure /does/ actually build executable .jar files for you, if you request it to do so. I'm sure more advanced things you're used to will be added in the future. They are, indeed, still quite new.</p> http://stackoverflow.com/questions/1604790/what-is-haskell-actually-useful-for/1607615#1607615 1 Answer by Rayne for What is Haskell actually useful for? Rayne 2009-10-22T14:26:33Z 2009-10-22T14:31:50Z <p>Haskell is a general purpose programming language. It can be used for anything you use any other language to do. You aren't limited by anything but your own imagination. As for what it's suited for? Well, pretty much everything. There are few tasks in which a functional language does not excel.</p> <p>And yes, I'm the Rayne from Dreamincode. :)</p> <p>I would also like to mention that, in case you haven't read the Wikipedia page, functional programming is a paradigm like Object Oriented programming is a paradigm. Just in case you didn't know. Haskell is also functional in the sense that it works; it works quite well at that.</p> <p>Just because a language isn't an Object Oriented language doesn't mean the language is limited by anything. Haskell is a general-purpose programming language, and is just as general purpose as Java.</p> http://stackoverflow.com/questions/1572686/question-about-object-oriented-design-with-ruby 2 Question about object oriented design with Ruby Rayne 2009-10-15T14:23:02Z 2009-10-17T22:44:27Z <p>I'm thinking of writing a CLI Monopoly game in Ruby. This would be the first large project I've done in Ruby. Most of my experience in programming has been with functional programming languages like Clojure and Haskell and such. I understand Object Orientation pretty well, but I have no experience with designing object oriented programs.</p> <p>Now, here's the deal.</p> <p>In Monopoly, there are lots of spaces spread around the board. Most spaces are properties, and others do other things.</p> <p>Would it be smart to have a class for each of the spaces? I was thinking of having a Space class that all other spaces inherit from, and having a Property class that inherits from Space, and then having a class for every property that inherits from Property. This would mean a <strong>lot</strong> of classes, which leads me to believe that this is an awful way to do what I'm trying to do.</p> <p>What I also intended to do, was use the 'inherited' hook method to keep track of all the properties, so that I could search them and remove them from the unbought list when needed.</p> <p>This sort of problem seems to arise in a lot of programs, so my question is: Is there a better way to do this, and am I missing something very crucial to Object Oriented design?</p> <p>I'm sorry if this is a stupid question, I'm just clueless when it comes to OOPD.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1567737/what-is-the-appname-rb-file-in-lib-typically-used-for-in-a-ruby-project 3 What is the <appname>.rb file in /lib typically used for in a Ruby project? Rayne 2009-10-14T17:18:08Z 2009-10-14T21:01:57Z <p>In reference to this question: <a href="http://stackoverflow.com/questions/614309/ideal-ruby-project-structure">http://stackoverflow.com/questions/614309/ideal-ruby-project-structure</a> I noticed that appname.rb is in lib, and is top level.</p> <p>I was reading through a little of the Rake source code on Github, and I noticed their project structure is pretty much the same. They have a top level 'rake.rb' file in /lib, but I'm not sure what it's there for.</p> <p>In The Pickaxe (Programming Ruby 1.9), they show an example of structuring a small project, with pretty much the same directory structure above, but there is no mention of the usage of a top level .rb in /lib.</p> <p>So, my question is: What exactly is this thing typically used for in a Ruby project?</p> <p>Sorry if this is a stupid question, I'm sure it is, but I'm relatively new to Ruby. I don't know that much Ruby-foo right now. ;)</p> <p>Thanks.</p> http://stackoverflow.com/questions/743256/why-does-scala-have-very-little-enthusiasm-about-it -3 Why does Scala have very little enthusiasm about it? Rayne 2009-04-13T07:23:00Z 2009-10-01T03:48:43Z <p>I've noticed over time that Clojure users have nothing but massive enthusiasm for the language. Yet it seems most Scala users don't even really care too much for the language. A few people have told me "It's better than having to use Java.". I'm not sure why Clojure has so much enthusiasm about it yet Scala has hardly any. It ruins any motivation that I have to learn to the language. I don't care all that much for a language to use "Because it's better than having to use Java.". What do you think? I've not known about Scala long enough to measure how much the popularity has increased or decreased over time. What are your thoughts on the language? I'm especially interested in hearing from people who use the language.</p> <p>Thanks.</p> <p>EDIT: Obviously this post was more offensive than I intended. I'm not trying to put down either language, nor am I saying that Scala doesn't have people behind it. I'm just saying that over time it seems to me that less people are enthusiastic about Scala as they are with Clojure for instance. I'm not making "Unjustified assumptions" or making a "Dirty move in debate" I'm just asking for theories.</p> <p>If I had known this would cause so much dispute I wouldn't have even wrote the thread. I apologize for any misunderstandings. I would last like to point out that I /do/ like Scala, and Clojure. I'm learning Scala as we speak. Thanks for your posts, the parts with theories at least.</p> <p>EDIT: September 30th: I do indeed apologize for any animosity I earned towards me. This question has been wildly misunderstood. I love Scala, and think it an amazing language. I was speaking from my own observations, and it appears my own observations were apparently wrong. You're welcome to continue voting this question down, but I would delete it if I was capable of doing so, but I'm not. </p> http://stackoverflow.com/questions/1469831/how-do-you-generate-executables-within-a-gem-with-rake 0 How do you generate executables within a gem with Rake? Rayne 2009-09-24T04:56:25Z 2009-09-24T20:38:18Z <p>I've been learning Ruby recently, and I've not gotten into the dirty recesses of learning Rake yet. I've been playing around with NetBeans, and I made a little Ruby project with a file that simply prints "Hello, World!". I was looking at the Rakefile that NetBeans generates, and I noticed that it had commented out the s.executables line, so I uncommented, and tried to build it. Of course it failed with:</p> <pre><code>Don't know how to build task 'bin/your_executable_here' </code></pre> <p>What I'm trying to do, is figure out how to make that work. I've googled around, and I can't find any information on how to correctly generate an executable. Here is the Rakefile generated by NetBeans:</p> <pre> require 'rubygems' require 'rake' require 'rake/clean' require 'rake/gempackagetask' require 'rake/rdoctask' require 'rake/testtask' spec = Gem::Specification.new do |s| s.name = 'Learning' s.version = '0.0.1' s.has_rdoc = true s.extra_rdoc_files = ['README', 'LICENSE'] s.summary = 'Your summary here' s.description = s.summary s.author = '' s.email = '' s.executables = ['your_executable_here'] s.files = %w(LICENSE README Rakefile) + Dir.glob("{bin,lib,spec}/**/*") s.require_path = "lib" s.bindir = "bin" end Rake::GemPackageTask.new(spec) do |p| p.gem_spec = spec p.need_tar = true p.need_zip = true end Rake::RDocTask.new do |rdoc| files =['README', 'LICENSE', 'lib/**/*.rb'] rdoc.rdoc_files.add(files) rdoc.main = "README" # page to start on rdoc.title = "Learning Docs" rdoc.rdoc_dir = 'doc/rdoc' # rdoc output folder rdoc.options </pre> <p>I'm sorry if this is a stupid question, I honestly did try to find the information myself.</p> <p>EDIT: I was unaware that there had to be an executable file by the same name as the default one you specify in ./bin in your project. I figured it all out.</p> http://stackoverflow.com/questions/1413390/why-clojure-over-other-jvm-lisps-kawa-armed-bear-or-sisc/1419512#1419512 2 Answer by Rayne for Why Clojure over other JVM Lisps: Kawa, Armed Bear or SISC? Rayne 2009-09-14T03:05:16Z 2009-09-14T03:05:16Z <p>The most simple answer I can come up with is, Clojure is not Common-Lisp. How hard is that to comprehend? Clojure is not constrained by other Lisps. It is a <em>new</em> language <em>built</em> for the JVM.</p> http://stackoverflow.com/questions/1216668/doseq-evaluates-1-x-for-every-y-is-there-any-way-to-make-it-evaluate-1-x-for-1-y 0 Doseq evaluates 1 x for every y. Is there any way to make it evaluate 1 x for 1 y and so on in Clojure? Rayne 2009-08-01T14:02:18Z 2009-08-01T17:47:37Z <p>I wasn't really sure how to phrase the name of this thread, so if you can clarify it any, please do so.</p> <p>My example code is this:</p> <pre><code>(doseq [x [1 2 3] y [3 2 1]] (println (str x y))) </code></pre> <p>The output of that code is:</p> <pre><code> 13 12 11 23 22 21 33 32 31 nil </code></pre> <p>I understand that list comprehensions, and doseq both evaluate like this. Is there another way to do this, so that instead of 1 element of x being used for every element of y, and so on, 1 element of x is used with 1 element of y and so on, so that the output would instead be:</p> <pre><code> 13 22 31 </code></pre> <p>Sorry if I'm not phrasing this right, I just can't seem to put it in words right.</p> <p>EDIT: I think you can do this in Haskell with list comprehensions and a language extension. ParallelListComps or something.</p> http://stackoverflow.com/questions/1197545/let-vs-letfn-for-defining-local-functions-in-clojure/1197793#1197793 5 Answer by Rayne for let vs letfn for defining local functions in clojure? Rayne 2009-07-29T02:35:41Z 2009-07-29T02:35:41Z <p>If all I need is a local function or 2... or 3... I'll letfn them. If I need to let a mix of functions and non-functions, I'll just use a normal let. letfning and letting would be a very verbose way to do this.</p> <p>However, if you need mutual recursion through your local functions, you'll have to letfn them either way.</p> <p>Short version: Use them when you think it looks better, and when it's convenient. There are no hard and fast rules for using either. They are just tools in the Clojure toolbox.</p> <p>Have fun! </p> http://stackoverflow.com/questions/1191628/block-comments-in-clojure/1191660#1191660 2 Answer by Rayne for Block Comments in Clojure Rayne 2009-07-28T02:30:25Z 2009-07-28T02:30:25Z <p>Actually, there is a way!</p> <p><pre><code> (comment</p> <p>(defn hey [] ("Hey there!"))</p> <p>Check me out! ) </pre></code></p> <p>Just wrap your comments in (comment ..) :)</p> <p>Have fun!</p> http://stackoverflow.com/questions/1925581/dealing-with-large-files-in-haskell/1925812#1925812 Comment by Rayne on Dealing with large files in Haskell Rayne 2009-12-18T17:37:32Z 2009-12-18T17:37:32Z You're becoming as prominent as Jon Skeet in the Haskell community. You get upvoted just for posting. :p http://stackoverflow.com/questions/1253340/what-is-the-ecosystem-for-haskell-web-development/1906835#1906835 Comment by Rayne on What is the ecosystem for Haskell web development? Rayne 2009-12-15T18:23:39Z 2009-12-15T18:23:39Z Line 82, you forget a closing quote. http://stackoverflow.com/questions/1874828/type-matching-in-haskell/1875371#1875371 Comment by Rayne on Type Matching in Haskell Rayne 2009-12-09T23:26:04Z 2009-12-09T23:26:04Z That seems... Unnecessarily complicated. http://stackoverflow.com/questions/1795785/can-somebody-walk-me-through-this-haskell-function-state-monad-related/1796039#1796039 Comment by Rayne on Can somebody walk me through this Haskell function (State monad related)? Rayne 2009-12-06T16:19:21Z 2009-12-06T16:19:21Z That wouldn't have helped either. :p I had already looked at those definitions as deeply as possible, it it was that one crucial detail that was escaping my eyes. It isn't your fault, it's my fault for not being able to word a question correctly. http://stackoverflow.com/questions/744368/which-functional-programming-language-should-i-use/744492#744492 Comment by Rayne on Which functional programming language should I use? Rayne 2009-12-04T04:47:36Z 2009-12-04T04:47:36Z Kind of silly that you think Haskell is purely for ACADemic use. That is highly based on opinion, and I don't think it should be in an answer. http://stackoverflow.com/questions/1819575/haskell-scoping-in-nested-function-definitions-using-where Comment by Rayne on Haskell scoping in nested function definitions using where Rayne 2009-12-01T12:36:47Z 2009-12-01T12:36:47Z Though it is very good practice to sugar your code with lot's of type signatures, except the extremely trivial parts, I don't see the reason to sugar locally scoped functions with them. It's obvious what the type signature is, and for trivial functions like that, you lose more in readability than you gain. http://stackoverflow.com/questions/1413390/why-clojure-over-other-jvm-lisps-kawa-armed-bear-or-sisc/1413521#1413521 Comment by Rayne on Why Clojure over other JVM Lisps: Kawa, Armed Bear or SISC? Rayne 2009-11-30T14:21:56Z 2009-11-30T14:21:56Z BEEP BEEP, CL/SCHEME FANBOI COMIN' THROUGH! http://stackoverflow.com/questions/1816092/using-the-github-gist-api-from-haskell/1816769#1816769 Comment by Rayne on Using the Github Gist API from Haskell Rayne 2009-11-29T21:57:41Z 2009-11-29T21:57:41Z That was an accident on my part. I was experimenting and forgot to remove that. http://stackoverflow.com/questions/1816092/using-the-github-gist-api-from-haskell Comment by Rayne on Using the Github Gist API from Haskell Rayne 2009-11-29T18:39:01Z 2009-11-29T18:39:01Z Guess I'm screwed. :\ http://stackoverflow.com/questions/1816092/using-the-github-gist-api-from-haskell Comment by Rayne on Using the Github Gist API from Haskell Rayne 2009-11-29T17:29:15Z 2009-11-29T17:29:15Z It's not doing anything at all as far as I can tell. The location field is (as far as I know) supposed to be a link to the new Gist, however, no Gist is made. I'm absolutely baffled. This seems like it should be easy. :\ http://stackoverflow.com/questions/1803750/casting-in-haskell/1804552#1804552 Comment by Rayne on Casting in Haskell Rayne 2009-11-27T11:35:33Z 2009-11-27T11:35:33Z You should add that it's perfectly fine to use <code>last</code> and <code>head</code> as long as you know for sure that you wont be dealing with an empty list. http://stackoverflow.com/questions/1754870/real-world-usage-of-concatenative-programming-langauges Comment by Rayne on Real world usage of concatenative programming langauges Rayne 2009-11-27T01:18:35Z 2009-11-27T01:18:35Z Factor is a pretty great language, but don't even bother if you want to write GUI apps. There are no bindings for any popular GUI toolkits, and the one shipped with Factor is crap. http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure/1801267#1801267 Comment by Rayne on In Which Cases Is Better To Use Clojure? Rayne 2009-11-27T01:09:41Z 2009-11-27T01:09:41Z Indeed. But CL fanatics tend to be territorial, and that's where I imagine your down votes are coming from. http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure/1800904#1800904 Comment by Rayne on In Which Cases Is Better To Use Clojure? Rayne 2009-11-27T00:04:39Z 2009-11-27T00:04:39Z Yeah, but Clojure is /built/ for the JVM, from the very beginning. It isn't just a half-cracked JVM implementation. http://stackoverflow.com/questions/1800896/in-which-cases-is-better-to-use-clojure/1801267#1801267 Comment by Rayne on In Which Cases Is Better To Use Clojure? Rayne 2009-11-27T00:02:22Z 2009-11-27T00:02:22Z They aren't anonymous. They are the ancient Common Lisp fanboy community. They are probably butthurt that you recommended Clojure over their precious 10 thousand year old language. :\