User Peter Burns - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T20:39:06Z http://stackoverflow.com/feeds/user/101 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/172869/how-to-determine-if-a-jni-jogl-is-available-at-runtime 1 How to determine if a JNI (jogl) is available at runtime? Peter Burns 2008-10-05T23:56:08Z 2009-09-22T13:52:47Z <p>I'm working on <a href="http://github.com/rictic/code_swarm/tree/master/" rel="nofollow">a source-code visualization project</a> that uses the Processing core library. The processing library has the option to use the jogl OpenGL library to render graphics which really improves performance. However, the JNI files that jogl uses aren't necessarily available at runtime, depending on who is using the project and on what platform.</p> <p>Currently we just have the user specify if they want to use OpenGL, but it would obviously be much nicer if we could use OpenGL by default and only fall back to software rendering when it's not available. The Processing libraries don't seem to make this easy, you're only supposed to specify a renderer once, and changing renderers gives… novel behavior.</p> <p>Any idea how to figure out if the necessary JNIs for jogl are available and working at runtime?</p> http://stackoverflow.com/questions/793935/haskell-replacing-element-with-a-given-key-in-an-association-list/795171#795171 1 Answer by Peter Burns for Haskell: Replacing element with a given key in an association list Peter Burns 2009-04-27T20:32:27Z 2009-04-27T23:56:34Z <p>Here's a simple function that does what you want. It takes the new key value pair and puts that at the front of the given assoc list with that key filtered out.</p> <pre><code>addOrReplace :: Eq k =&gt; k -&gt; v -&gt; [(k, v)] -&gt; [(k, v)] addOrReplace key value assoc = (key,value):(filter ((key /=).fst) assoc) </code></pre> <p>The function <code>fst</code> is defined as:</p> <pre><code>fst (first,second) = first </code></pre> <p><code>filter</code> takes a predicate and a list, and returns the list with only those elements that satisfy the predicate.</p> <p>Edit: Split the key value pair in the parameters for addOrReplace as Tom suggests.</p> http://stackoverflow.com/questions/758656/can-i-configure-codeswarm-to-only-create-the-png-files-sans-visual-display/759246#759246 1 Answer by Peter Burns for Can I configure code_swarm to only create the png files sans visual display? Peter Burns 2009-04-17T06:21:34Z 2009-04-17T06:21:34Z <p>You're right, it probably would speed things up, though I suspect not by as much as you might hope. There's an open issue about this in the official issue tracker: <a href="http://code.google.com/p/codeswarm/issues/detail?id=37" rel="nofollow">http://code.google.com/p/codeswarm/issues/detail?id=37</a></p> <p>To summarize: last time I checked, Processing.org – the library we use for drawing – doesn't support running in headless mode. A couple of people have looked into doing it without much luck. If your only concern is performance, I wouldn't worry about this. If it's running too slow, might I suggest my own fork of the project, it's remarkably faster (yes, I do intend on integrating it back into the main svn repo sometime): <a href="http://github.com/rictic/code%5Fswarm/" rel="nofollow">http://github.com/rictic/code_swarm/</a></p> http://stackoverflow.com/questions/713003/why-is-this-type-variable-ambiguous/713390#713390 1 Answer by Peter Burns for Why is this type variable ambiguous? Peter Burns 2009-04-03T10:25:16Z 2009-04-03T10:25:16Z <p>The problem is that Haskell doesn't know which instance of <code>Cabbage</code> that <code>foo</code> corresponds to there. So far as I know, it doesn't match the <code>a</code> in <code>(undefined :: a)</code> with the <code>a</code> in <code>quux :: Cabbage a =&gt; String -&gt; a</code></p> <p>Assuming that's what you want, you can do this:</p> <pre><code>quux :: Cabbage a =&gt; String -&gt; a quux s = result where result = bar (s ++ foo result) </code></pre> <p>This ties foo and bar together so that it uses the same instance for both, and since you don't actually need the value of the input for foo, it bottoms out. I don't know of a better way of doing per-instance constants though. Hopefully someone else will come along who does.</p> http://stackoverflow.com/questions/684552/haskell-error-trying-to-call-putstrln-in-function/685431#685431 6 Answer by Peter Burns for haskell: error trying to call putStrLn in function Peter Burns 2009-03-26T11:51:04Z 2009-03-26T11:51:04Z <p><a href="#684726" rel="nofollow">Jonas's post</a> covers your question pretty well, so I'll give you an idiomatic rewrite of your findFactors function. I found it helpful for me when I was first learning.</p> <p>So you want to find all factors of a given number <code>n</code> by looking at each number from <code>1</code> up to <code>n/2</code>, checking to see if it's a factor of <code>n</code> and building a list of those that are.</p> <p>Your version (with minimal modifications to get it to work):</p> <pre><code>findFactors :: Integer -&gt; Integer -&gt; [Integer] findFactors counter num = let quotient = div num 2 in if(counter &gt; quotient) then [] else if(isAFactor num counter) then [counter] ++ findFactors (counter + 1) num else findFactors (counter + 1) num </code></pre> <p>A couple of formatting changes to make it a bit more readable:</p> <pre><code>findFactors :: Integer -&gt; Integer -&gt; [Integer] findFactors counter num | counter &gt; div num 2 = [] | otherwise = if num `isAFactor` counter then counter:findFactors (counter+1) num else findFactors (counter + 1) num </code></pre> <p>This is fine, but it's less than ideal in a couple ways. First, it recalculates quotient each time <code>findFactors</code> is called, which is <code>n/2</code> divisions (though <code>ghc -O2</code> seems to realize this and calculate it only once). Second, it's kinda annoying to have to deal with that counter variable everywhere. Third, it's still pretty imperative. </p> <p>Another way of looking at the problem would be to take the list of integers from <code>1</code> up to <code>n/2</code> and filter for just those that are factors of <code>n</code>. This translates pretty directly into Haskell:</p> <pre><code>findFactors :: Integer -&gt; [Integer] findFactors num = filter (isAFactor num) [1..(num `div` 2)] </code></pre> <p>It might come as a surprise to find that this has the same performance characteristics as the above version. Haskell doesn't need to allocate memory for the entire list up to <code>n/2</code> at once, it can just generate each value as it's needed.</p> http://stackoverflow.com/questions/599457/how-do-streaming-videos-work/599475#599475 11 Answer by Peter Burns for How do streaming videos work? Peter Burns 2009-03-01T08:11:16Z 2009-03-01T09:04:57Z <p>Good news! You don't need special software, most reasonable web servers can do all of that out of the box. What you're describing, and what Youtube and the rest do, isn't streaming actually. It's called progressive download. </p> <p>Basically the SWF player (flowplayer in your case) is downloading the FLV video, and playing what it has downloaded so far. To skip to some video that it has already downloaded, it seeks in the downloaded file. To skip beyond what has already been downloaded it discards the downloaded file and starts a new download, but it asks the HTTP server to start giving it the file at a certain offset. Thankfully, most HTTP servers can do this out of the box.</p> <p>So you just need to put the FLV files somewhere that's publicly available to download via HTTP (just test this with your browser). Assuming you put flowplayer at /flowplayer.swf on your site, and the video is /2girls1cup.flv you would insert this into your page:</p> <pre><code>&lt;script src="http://static.flowplayer.org/js/flowplayer-3.0.6.min.js"&gt;&lt;/script&gt; &lt;!-- Edit this with the width and height to display the video --&gt; &lt;a href="/2girls1cup.flv" style="display:block;width:425px;height:300px;" id="player"&gt; &lt;/a&gt; &lt;!-- this script block will install Flowplayer inside previous anchor tag --&gt; &lt;script language="JavaScript"&gt; flowplayer("player", "/flowplayer.swf"); &lt;/script&gt; </code></pre> <p>I took this example from <a href="http://flowplayer.org/demos/index.html" rel="nofollow">the flowplayer demos page</a> where there's lots more examples of lots of ways to customize flowplayer, the way it behaves and is displayed.</p> <p>There are two ways in which an actual streaming server is better. One is for doing multicasts of a stream, in which all clients are at the same place in the video, which is easier on the server. The other is being able to deliver a number of different encodings of the same stream, so that, for example, clients can the video at a bitrate that best matches their playback capability.</p> <p>A <a href="http://www.google.com/search?client=safari&amp;rls=en-us&amp;q=microsoft+streaming+server&amp;ie=UTF-8&amp;oe=UTF-8" rel="nofollow">lot</a> <a href="http://www.adobe.com/products/flashmediaserver/" rel="nofollow">of</a> <a href="http://www.apple.com/quicktime/streamingserver/" rel="nofollow">companies</a> bet a lot of money that this would be very important for video to take off on the web. It looks like all of them are wrong. Streaming servers are mostly used in the enterprisey world, which might explain their enterprisey prices.</p> http://stackoverflow.com/questions/552951/how-can-i-make-my-jquery-draggable-droppable-code-faster/584728#584728 1 Answer by Peter Burns for How can I make my jquery draggable / droppable code faster? Peter Burns 2009-02-25T04:37:19Z 2009-02-25T04:37:19Z <p>As a first step, double check that you're using the latest version of jQuery. As I recall, they recently started making use of much faster browser apis (when available) to get the location of dom elements within the display. I think this was mentioned in a presentation John Resig gave recently, and drag and drop was the primary demo of the performance improvement.</p> http://stackoverflow.com/questions/503199/how-to-determine-latency-of-a-remote-server-through-the-browser/584715#584715 1 Answer by Peter Burns for How to determine latency of a remote server through the browser Peter Burns 2009-02-25T04:28:40Z 2009-02-25T04:28:40Z <p>Keep in mind that the latency is going to be at least twice of what you'd see for a ping if you end up making a TCP query to measure latency, because you'll need the three way handshake and the termination packet at minimum (two round trips rather than one). If you make HTTP requests, try to keep the headers to a minimum. A long enough header (due to a chatty server, or cookies etc on the client) can add additional round trips into the mix, throwing off your measurements. </p> http://stackoverflow.com/questions/555894/combine-and-compress-castleproject-monorails-formhelper-js-and-behaviour-js/556766#556766 1 Answer by Peter Burns for Combine and compress CastleProject MonoRails' formhelper.js and behaviour.js? Peter Burns 2009-02-17T13:23:43Z 2009-02-17T13:23:43Z <p>If loading the two javascript files together on one page isn't a problem then you'll get the same behavior out of concatenating them into a single file. While you're at it you can minify them as well: <a href="http://developer.yahoo.com/yui/compressor/" rel="nofollow">http://developer.yahoo.com/yui/compressor/</a></p> http://stackoverflow.com/questions/555696/put-javascript-in-one-js-file-or-break-it-out-into-multiple-js-files/556723#556723 0 Answer by Peter Burns for Put javascript in one .js file or break it out into multiple .js files? Peter Burns 2009-02-17T13:14:36Z 2009-02-17T13:14:36Z <p>It depends pretty heavily on the way that users interact with your site. </p> <p>Some questions for you to consider: </p> <ul> <li>How important is it that your first page load be very fast?</li> <li>Do users typically spend most of their time in distinct sections of the site with subsets of functionality?</li> <li>Do you need all of the scripts ready the moment that the page is ready, or can you load some in after the page is loaded by inserting <code>&lt;script&gt;</code> elements into the page?</li> </ul> <p>Having a good idea of how users use your site, and what you want to optimize for is a good idea if you're really looking to push for performance.</p> <p>However, my default method is to just concatenate and minify all of my javascript into one file. jQuery and jQuery.ui are small and have very low overhead. If the plugins you're using are having a 100ms effect on page load time, then something might be wrong.</p> <p>A few things to check:</p> <ul> <li>Is gzipping enabled on your HTTP server?</li> <li>Are you generating static files with unique names as part of your deployment?</li> <li>Are you serving static files with never ending cache expirations?</li> <li>Are you including your CSS at the top of your page, and your scripts at the bottom?</li> <li>Is there a better (smaller, faster) jQuery plugin that does the same thing?</li> </ul> http://stackoverflow.com/questions/315911/git-for-beginners-the-definitive-practical-guide/319465#319465 3 Answer by Peter Burns for Git for beginners: The definitive practical guide Peter Burns 2008-11-26T01:20:06Z 2009-02-17T00:30:58Z <p><code>git status</code> is your friend, use it often. Good for answering questions like:</p> <ul> <li>What did that command just do?</li> <li>What branch am I on?</li> <li>What changes am I about to commit, and have I forgotten anything?</li> <li>Was I in the middle of something last time I worked on this project (days, weeks, or perhaps months ago)?</li> </ul> <p>Unlike, say <code>svn status</code>, <code>git status</code> runs nigh-instantly even on large projects. I often found it reassuring while learning git to use it frequently, to make sure my mental model of what was going on was accurate. Now I mostly just use it to remind myself what I've changed since my last commit.</p> <p>Obviously, it's much more useful if <a href="#316062" rel="nofollow">your .gitignore is sanely configured.</a></p> http://stackoverflow.com/questions/514188/how-would-you-include-the-current-commit-id-in-a-git-projects-files 4 How would you include the current commit id in a git project's files? Peter Burns 2009-02-05T01:36:52Z 2009-02-05T14:28:47Z <p>So I've got an open source static javascript+html app that's deployed in about three different places right now, one on my local machine, one on an internal server, and one on a stable external server.</p> <p>I'd like to be able to tell immediately which version is deployed in which place, and I'd like bug reporters to have easy access to the version that they're reporting the bug on.</p> <p>Ideally I'd like, as part of the commit process, for a file to be written with the hash of the commit. Of course, from what I know of git this is impossible, as including the calculated hash as part of a file in a commit would change the calculated hash of that commit.</p> <p>On the other hand, I could incorporate building this as part of a build process. I don't currently have a build process though, and I'd like to avoid adding a step if possible.</p> <p>What's the cleanest way to do this?</p> http://stackoverflow.com/questions/463792/is-there-a-good-browser-based-sandbox-to-practice-javascript/463925#463925 6 Answer by Peter Burns for Is there a good browser based sandbox to practice Javascript? Peter Burns 2009-01-21T02:27:52Z 2009-02-03T04:41:25Z <p>It's not very well known, but the web development tools in the latest nightly builds of Webkit are incredible, exceeding Firebug even in terms of usefulness and speed.</p> <p>Builds for Mac and Windows can be downloaded from <a href="http://nightly.webkit.org/" rel="nofollow">http://nightly.webkit.org/</a></p> <p>Once you've got it loaded, go to Develop -> Show Web Inspector</p> <p>From there you can debug scripts on the current page, explore the DOM, and get access to a truly kick ass javascript console, with term completion and a great UI for examining objects.</p> <p><img src="http://img509.imageshack.us/img509/6823/picture1gy2.png"></p> http://stackoverflow.com/questions/459891/what-makes-some-version-control-systems-better-at-merging/460138#460138 3 Answer by Peter Burns for What makes some version control systems better at merging? Peter Burns 2009-01-20T04:34:25Z 2009-01-20T04:34:25Z <p>These version control systems can do better because they have more information.</p> <p>SVN pre-1.5, along with most VCS's before the latest generation, doesn't actually remember that you merged two commits anywhere. It remembers that the two branches share a common ancestor way back when they first branched off, but it doesn't know about any more recent merges that could be used as common ground.</p> <p>I know nothing of SVN post 1.5 though, so maybe they've improved on this.</p> http://stackoverflow.com/questions/347901/what-are-your-favorite-git-features-or-tricks/348461#348461 33 Answer by Peter Burns for What are your favorite git features or tricks? Peter Burns 2008-12-08T01:16:08Z 2008-12-08T01:16:08Z <p><a href="http://www.kernel.org/pub/software/scm/git/docs/git-bisect.html" rel="nofollow">git bisect</a></p> <p>So in this C project I was working on recently, one of our regression tests began failing. The project was in an in-between state, so I figured something was just temporarily broken, and as we filled things back in it would probably pass again.</p> <p>A good number of commits went by and things started to come together, but this old test was still failing. Clearly someone had actually introduced a bug along the line, rather than merely introducing a temporary hole in functionality.</p> <p>So I run <code>git bisect start</code>, then <code>git bisect bad</code> on the experimental head of the repository. Then I jump back about thirty commits to find one where the test passes and I run <code>git bisect good</code>. git then jumps me to a commit halfway between the known good and the known bad commits, I run the test and do <code>git bisect good</code> or <code>git bisect bad</code>. Repeat this process about five times and I'm right at the commit where the bug was introduced.</p> <p>I'd done a fairly innocent seeming cast of a pointer, which screwed up some pointer arithmetic, since you're so curious.</p> <p>All in all it took just a couple of minutes. However, it turns out I did this the slow way. Since I had a test program that returned 0 on success and something else on failure, I could have simply given git the command to run it, and it could have found the commit in question in seconds. See: <a href="http://www.kernel.org/pub/software/scm/git/docs/git-bisect.html#_bisect_run" rel="nofollow">git bisect run</a></p> http://stackoverflow.com/questions/258590/how-do-i-import-svn-branches-rooted-in-different-directories-into-git-using-git-s/267217#267217 0 Answer by Peter Burns for How do I import svn branches rooted in different directories into git using git-svn? Peter Burns 2008-11-06T00:00:53Z 2008-11-06T00:00:53Z <p>You could add multiple <code>git svn</code> remotes for each of the branches, or possibly each of the directories of branches. The initial <code>git svn fetch</code> would take forever, but from what I understand it should work.</p> http://stackoverflow.com/questions/258091/when-should-i-use-mmap-for-file-access 3 When should I use mmap for file access? Peter Burns 2008-11-03T07:56:03Z 2008-11-03T22:16:38Z <p>POSIX environments provide at least two ways of accessing files. There's the standard system calls <code>open()</code>, <code>read()</code>, <code>write()</code>, and friends, but there's also the option of using <code>mmap()</code> to map the file into virtual memory.</p> <p>When is it preferable to use one over the other? What're their individual advantages that merit including two interfaces?</p> http://stackoverflow.com/questions/246275/modified-files-and-git-branches/246343#246343 6 Answer by Peter Burns for Modified files and git branches Peter Burns 2008-10-29T10:26:37Z 2008-10-29T10:26:37Z <p>If you want to temporarily store your changes to one branch while you go off to do work on another, you can use the <code>git stash</code> command. It's one of the amazing little unsung perks of using git. Example workflow:</p> <pre><code>git stash #work saved git checkout master #edit files git commit git checkout git-build git stash apply #restore earlier work </code></pre> <p><code>git stash</code> stores a stack of changes, so you can safely store multiple checkpoints. You can also give them names/descriptions. Full usage info <a href="http://www.kernel.org/pub/software/scm/git/docs/git-stash.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/161813/how-do-i-fix-merge-conflicts-in-git/163659#163659 15 Answer by Peter Burns for How Do I Fix Merge Conflicts in Git? Peter Burns 2008-10-02T17:50:25Z 2008-10-28T23:26:03Z <p>Try: <code>git mergetool</code></p> <p>It opens a GUI that steps you through each conflict and you get to choose how to merge. Sometimes it requires a bit of hand editing afterwords, but usually it's enough by itself. Much better than doing the whole thing by hand certainly.</p> http://stackoverflow.com/questions/244695/how-to-combine-two-branches-from-two-different-repositories-in-a-single-repositor/245240#245240 2 Answer by Peter Burns for How to combine two branches from two different repositories in a single repository? Peter Burns 2008-10-28T23:18:09Z 2008-10-28T23:18:09Z <p>You can treat another git repository on the same filesystem as a remote repo.</p> <p>In the first, do do the following:</p> <pre><code>git remote add &lt;name&gt; /path/to/other/repo/.git git fetch &lt;name&gt; git branch &lt;name&gt; &lt;name&gt;/master #optional </code></pre> <p>Now they're both branches in a single repository. You can switch between them with git checkout, merge with git merge, etc.</p> http://stackoverflow.com/questions/239241/what-are-the-disadvantages-of-arrays/239273#239273 0 Answer by Peter Burns for What are the disadvantages of arrays? Peter Burns 2008-10-27T07:34:03Z 2008-10-27T07:41:35Z <p>I assume that you mean C arrays:</p> <p>Arrays are static in size. If you find you need more (or less) space then you must choose a new static size for the array, allocate that space, copy all of the values from the old array, and then free the original array. This takes <code>O(n)</code> time, and <code>n + m</code> space.</p> <p>Failure to do bounds-checking of arrays commonly results in <a href="http://en.wikipedia.org/wiki/Buffer_overflow" rel="nofollow">buffer overflow</a> vulnerabilities.</p> <p>Inserting or removing an element in the middle of an array takes n/2 time on average, because you have to move each element after the insertion/removal place by one.</p> <p>Arrays must be contiguous in memory. This can result in situations where, due to fragmentation, there is plenty of free memory, but no one free block large enough for the array.</p> <p>Unless you keep track of the length manually, there is no way of knowing how large an array on the heap is. </p> <p>If you've only used part of the array so far, you'll need some method for keeping track of which values are valid and which are not. Usually this is done either by storing the index to the last valid value, or by null terminating the array. In a null terminated array however, it takes O(n) time to determine the number of valid items in the array.</p> http://stackoverflow.com/questions/37702/true-random-number-generator/238809#238809 1 Answer by Peter Burns for True random number generator Peter Burns 2008-10-26T23:44:59Z 2008-10-26T23:44:59Z <p>To summarize some of what has been said, our working definition of what a secure source of randomness is is similar to our definition of cryptographically secure: it appears random if smart folks have looked at it and weren't able to show that it isn't completely unpredictable.</p> <p>There is <strong>no</strong> system for generating random numbers which couldn't conceivably be predicted, just as there is no cryptographic cipher that couldn't conceivably be cracked. The trusted solutions used for important work are merely those which have proven to be difficult to defeat so far. If anyone tells you otherwise, they're selling you something.</p> <p>Cleverness is rarely rewarded in cryptography. Go with tried and true solutions.</p> http://stackoverflow.com/questions/237553/google-chrome-and-streaming-http-connections/237616#237616 1 Answer by Peter Burns for Google Chrome and Streaming HTTP connections? Peter Burns 2008-10-26T05:30:43Z 2008-10-26T05:30:43Z <p>I wish I had access to Chrome at the moment to test out some ideas. Have you tried adding some HTML after <code>&lt;/script&gt;</code> and seeing if it renders incrementally? I imagine it would, and if so that'd be proof that Chrome doesn't want to run javascript in <code>&lt;script&gt;</code> elements while the page is loading. Of course, rendering the markup might trigger your scripts to run. If not, you could try including the javascript as external files and see if that affects execution time.</p> <p>I think browsers generally have some leeway according to the spec in when they begin executing javascript, especially as the page loads. It might not be possible to do this in a fully cross-browser way without polling.</p> http://stackoverflow.com/questions/237496/code-golf-factorials/237576#237576 2 Answer by Peter Burns for Code Golf: Factorials Peter Burns 2008-10-26T04:46:53Z 2008-10-26T04:46:53Z <p>Ruby, 26 characters:</p> <pre><code>def f i;i&lt;2?1:i*f(i-1);end </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/237519#237519 10 Answer by Peter Burns for Code Golf: Factorials Peter Burns 2008-10-26T03:58:05Z 2008-10-26T04:19:48Z <p>Haskell:</p> <pre><code>\n-&gt;product[1..n] </code></pre> <p>17 characters, 20 with reasonable whitespace. As a named function:</p> <pre><code>fac n = product [1..n] </code></pre> <p>22 characters. Without using <code>product</code>:</p> <pre><code>fac n = foldr (*) 1 [1..n] </code></pre> <p>26 characters</p> <p>These (largely equivalent) implementations have no stack overflow or integer overflow errors. Compiled with ghc, this calculates and prints all 35661 digits of 10000! in 0.11s and all 456575 digits of 100000! in 11.145s on my two year old laptop. Of course, there are doubtless faster algorithms, but that's not bad performance for a naive solution.</p> http://stackoverflow.com/questions/173621/is-it-possible-to-make-git-svn-relocate-branch-files-on-checkout/176165#176165 1 Answer by Peter Burns for Is it possible to make git svn "relocate" branch files on checkout? Peter Burns 2008-10-06T20:57:54Z 2008-10-06T20:57:54Z <p>I've never used svn like this, and if the silence you've gotten is any indication then it's kind of a rare practice. Could you give some rationale for doing things this way, maybe by describing what problem it solves? That way we can better judge what would be an acceptable solution.</p> http://stackoverflow.com/questions/156013/haskell-syntax-case-expression-in-a-do-block/156459#156459 3 Answer by Peter Burns for Haskell Syntax case expression in a do block Peter Burns 2008-10-01T06:31:34Z 2008-10-01T06:31:34Z <p>Equivalently:</p> <pre><code>foo = do args &lt;- getArgs case args of [] -&gt; return "No Args" [s]-&gt; return "Some Args" </code></pre> <p>It's probably preferable to do <a href="#156050" rel="nofollow">as wnoise suggests</a>, but this might help someone understand a bit better.</p> http://stackoverflow.com/questions/127190/good-haskell-coding-style-of-if-else-control-block/147239#147239 4 Answer by Peter Burns for Good Haskell coding style of if/else control block? Peter Burns 2008-09-29T01:46:11Z 2008-09-29T01:46:11Z <p>A minor improvement to mattiast's case statement (I'd edit, but I lack the karma) is to use the compare function, which returns one of three values, LT, GT, or EQ:</p> <pre><code>doGuessing num = do putStrLn "Enter your guess:" guess &lt;- getLine case (read guess) `compare` num of LT -&gt; do putStrLn "Too low!" doGuessing num GT -&gt; do putStrLn "Too high!" doGuessing num EQ -&gt; putStrLn "You Win!" </code></pre> <p>I really like these Haskell questions, and I'd encourage others to post more. Often you feel like there's <em>got</em> to be a better way to express what you're thinking, but Haskell is initially so foreign that nothing will come to mind.</p> <p>Bonus question for the Haskell journyman: what's the type of doGuessing?</p> http://stackoverflow.com/questions/826/efficiently-get-sorted-sums-of-a-sorted-list 3 Efficiently get sorted sums of a sorted list Peter Burns 2008-08-03T21:08:54Z 2008-09-18T23:17:46Z <p>You have an ascending list of numbers, what is the most efficient algorithm you can think of to get the ascending list of sums of every two numbers in that list. Duplicates in the resulting list are irrelevant, you can remove them or avoid them if you like.</p> <p>To be clear, I'm interested in the algorithm. Feel free to post code in any language and paradigm that you like.</p> http://stackoverflow.com/questions/13055/what-is-boxing-and-unboxing-and-what-are-the-trade-offs/25324#25324 12 Answer by Peter Burns for What is boxing and unboxing and what are the trade offs? Peter Burns 2008-08-24T20:35:12Z 2008-08-24T20:35:12Z <p>Boxed values are <a href="http://en.wikipedia.org/wiki/Data_structure" rel="nofollow">data structures</a> that are minimal wrappers around <a href="http://en.wikipedia.org/wiki/Primitive_type" rel="nofollow">primitive types</a>*. Boxed values are typically stored as pointers to objects on <a href="http://en.wikipedia.org/wiki/Dynamic_memory_allocation" rel="nofollow">the heap</a>.</p> <p>Thus, boxed values use more memory and take at minimum two memory lookups to access: once to get the pointer, and another to follow that pointer to the primitive. Obviously this isn't the kind of thing you want in your inner loops. On the other hand, boxed values typically play better with other types in the system. Since they are first-class data structures in the language, they have the expected metadata and structure that other data structures have.</p> <p>In Java and Haskell generic collections can't contain unboxed values. Generic collections in .NET can hold unboxed values with no penalties. Where Java's generics are only used for compile-time type checking, .NET will <a href="http://msdn.microsoft.com/en-us/library/f4a6ta2h.aspx" rel="nofollow">generate specific classes for each generic type instantiated at run time</a>.</p> <p>Java and Haskell have unboxed arrays, but they're distinctly less convenient than the other collections. However, when peak performance is needed it's worth a little inconvenience to avoid the overhead of boxing and unboxing.</p> <p>* For this discussion, a primitive value is any that can be stored on <a href="http://en.wikipedia.org/wiki/Call_stack" rel="nofollow">the call stack</a>, rather than stored as a pointer to a value on the heap. Frequently that's just the machine types (ints, floats, etc), structs, and sometimes static sized arrays. .NET-land calls them value types (as opposed to reference types). Java folks call them primitive types. Haskellions just call them unboxed.</p> <p>** I'm also focusing on Java, Haskell, and C# in this answer, because that's what I know. For what it's worth, Python, Ruby, and Javascript all have exclusively boxed values. This is also known as the "Everything is an object" approach.</p> http://stackoverflow.com/questions/1524683/freebase-is-open-source Comment by Peter Burns on freebase is open source ? Peter Burns 2009-10-06T17:46:57Z 2009-10-06T17:46:57Z For what it's worth unknown, the data in freebase is licensed under CC-by, so none of the data in freebase is tied to freebase-the-organization (any more than wikipedia articles are tied into wikipedia-the-organization) http://stackoverflow.com/questions/1288189/elegant-and-safe-way-to-determine-if-architecture-is-32bit-or-64bit/1288228#1288228 Comment by Peter Burns on Elegant and safe way to determine if architecture is 32bit or 64bit Peter Burns 2009-08-18T01:10:51Z 2009-08-18T01:10:51Z &quot;Also, bool is not in any C standard.&quot; - false, it is in the C99 standard in &lt;stdbool.h&gt; - <a href="http://en.wikipedia.org/wiki/Stdbool.h" rel="nofollow">en.wikipedia.org/wiki/Stdbool.h</a> http://stackoverflow.com/questions/908014/could-someone-explain-these-haskell-functions-to-me/908057#908057 Comment by Peter Burns on Could someone explain these Haskell functions to me? Peter Burns 2009-05-26T19:45:34Z 2009-05-26T19:45:34Z Oh, and you can ask ghci for the type of an expression by using <code>:t &lt;expression&gt;</code> http://stackoverflow.com/questions/908014/could-someone-explain-these-haskell-functions-to-me/908057#908057 Comment by Peter Burns on Could someone explain these Haskell functions to me? Peter Burns 2009-05-26T19:43:05Z 2009-05-26T19:43:05Z With the speed at which Haskell questions are answered thoroughly and completely I don't think you need to apologize. You clearly thought about this for a while and were just missing a piece. Asking for another pair of eyes to point out where you've gone off the rails isn't a bad thing at all. One technique that I find helpful with Haskell confusion like this is to look very carefully at the type signature of any function or expression that I don't get. It's much more helpful in Haskell than in any other language I've used. http://stackoverflow.com/questions/844870/how-do-i-create-two-mutual-producer-consumers-with-internal-state-in-haskell/844928#844928 Comment by Peter Burns on How do I create two mutual producer/consumers with internal state in Haskell? Peter Burns 2009-05-10T21:55:37Z 2009-05-10T21:55:37Z You're exporting the Agent type, but not any information about what instances of that type look like, or what they store. http://stackoverflow.com/questions/841851/how-do-you-combine-filter-conditions/841939#841939 Comment by Peter Burns on How do you combine filter conditions Peter Burns 2009-05-08T22:59:18Z 2009-05-08T22:59:18Z There's also the any function, depending on how you want to combine the predicates: any p = or . map p; all p = and . map p; http://stackoverflow.com/questions/841851/how-do-you-combine-filter-conditions/841939#841939 Comment by Peter Burns on How do you combine filter conditions Peter Burns 2009-05-08T22:55:26Z 2009-05-08T22:55:26Z You've discovered the <code>all</code> function: <code>filter (all conditions) [1..10]</code> http://stackoverflow.com/questions/758656/can-i-configure-codeswarm-to-only-create-the-png-files-sans-visual-display/759246#759246 Comment by Peter Burns on Can I configure code_swarm to only create the png files sans visual display? Peter Burns 2009-04-22T08:24:02Z 2009-04-22T08:24:02Z Ok, it's a shame that the issues system isn't working on github. I wasn't able to reproduce your error. You can send me a diff, I'm rictic at gmail. If you know your way around git, you could also fork my repo, apply your patch, and I could merge your changes in with one click. Either way is fine with me. http://stackoverflow.com/questions/684552/haskell-error-trying-to-call-putstrln-in-function/684750#684750 Comment by Peter Burns on haskell: error trying to call putStrLn in function Peter Burns 2009-03-26T11:09:21Z 2009-03-26T11:09:21Z You've got a number of misconceptions here. I hate to downvote an earnest post, but this obscures more than it reveals. http://stackoverflow.com/questions/607830/use-of-haskell-state-monad-a-code-smell/607954#607954 Comment by Peter Burns on Use of Haskell state monad a code smell? Peter Burns 2009-03-10T02:07:25Z 2009-03-10T02:07:25Z Only the IO monad is in any way impure. http://stackoverflow.com/questions/573751/using-foldl-to-count-number-of-true-values/573766#573766 Comment by Peter Burns on Using foldl to count number of true values Peter Burns 2009-03-10T02:00:42Z 2009-03-10T02:00:42Z Even more succinctly: <code>sum . (map fromEnum)</code> – (two passes through the list though, unless you're doing fusion) http://stackoverflow.com/questions/599457/how-do-streaming-videos-work/599475#599475 Comment by Peter Burns on How do streaming videos work? Peter Burns 2009-03-01T08:23:56Z 2009-03-01T08:23:56Z If someone can watch the movie, they can download it. Likewise, if they can download it, they can watch it. Standard cookie-based authentication on the server side would work, but how exactly to do that in your situation is a whole 'nother question. http://stackoverflow.com/questions/595106/best-practices-for-using-git-with-cvs/595686#595686 Comment by Peter Burns on Best practices for using git with CVS Peter Burns 2009-03-01T03:22:56Z 2009-03-01T03:22:56Z I think there's an erroneous / in step 3. http://stackoverflow.com/questions/502753/programmatically-convert-a-video-to-flv/502784#502784 Comment by Peter Burns on Programmatically convert a video to FLV Peter Burns 2009-02-25T04:38:57Z 2009-02-25T04:38:57Z make sure you get/compile a binary with LAME support, as FLV typically uses MP3 for its audio stream http://stackoverflow.com/questions/459891/what-makes-some-version-control-systems-better-at-merging/459913#459913 Comment by Peter Burns on What makes some version control systems better at merging? Peter Burns 2009-02-13T04:58:46Z 2009-02-13T04:58:46Z Ok, I'm clearly belaboring my point, so this is the last comment I'll make. A third party merging two other people's code is often bad idea, and distributed VCSs don't need to do this. I've used git for a year but I've never needed to merge two other people's code together, nor have I seen this.