User Jared Updike - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T23:09:19Z http://stackoverflow.com/feeds/user/2543 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1786969/pitfalls-disadvantages-of-functional-programming/1787229#1787229 6 Answer by Jared Updike for pitfalls/disadvantages of functional programming Jared Updike 2009-11-24T01:23:58Z 2009-12-01T21:54:47Z <p>Philip Wadler wrote a paper about this (called Why No One Uses Functional Programming Languages) and addressed the practical pitfalls stopping people from using FP languages:</p> <ul> <li><a href="http://www.cse.iitb.ac.in/~as/fpcourse/sigplan-why.ps.gz" rel="nofollow">http://www.cse.iitb.ac.in/~as/fpcourse/sigplan-why.ps.gz</a></li> <li><a href="http://carpanta.dc.fi.udc.es/pf/papers/sigplan-angry.ps.gz" rel="nofollow">http://carpanta.dc.fi.udc.es/pf/papers/sigplan-angry.ps.gz</a></li> </ul> <p>Update: inaccessible old link for those with ACM access:</p> <ul> <li><a href="http://portal.acm.org/citation.cfm?id=286387" rel="nofollow">http://portal.acm.org/citation.cfm?id=286387</a></li> </ul> http://stackoverflow.com/questions/1704893/how-is-read-only-memory-implemented-in-c/1704943#1704943 0 Answer by Jared Updike for how is read-only memory implemented in c? Jared Updike 2009-11-10T00:38:43Z 2009-11-10T00:38:43Z <p>You could try something like</p> <pre><code>s[4] = '0'; </code></pre> <p>and see if it says "hello w0rld" when you call</p> <pre><code>puts(s); </code></pre> <p>If it causes an immediate Segmentation Fault or a Data Execution Prevention exception then it is probably read only. (If the system lets you get away with it, that doesn't make it a good idea.)</p> http://stackoverflow.com/questions/23277/what-is-the-difference-between-procedural-programming-and-functional-programming/28306#28306 2 Answer by Jared Updike for What is the difference between procedural programming and functional programming? Jared Updike 2008-08-26T15:13:35Z 2009-11-06T21:56:33Z <p>Konrad said:</p> <blockquote> <p>As a consequence, a purely functional program always yields the same value for an input, and the order of evaluation is not well-defined; which means that uncertain values like user input or random values are hard to model in purely functional languages.</p> </blockquote> <p>The order of evaluation in a purely functional program may be hard(er) to reason about (especially with laziness) or even unimportant but I think that saying it is not well defined makes it sound like you can't tell if your program is going to work at all!</p> <p>Perhaps a better explanation would be that control flow in functional programs is based on when the value of a function's arguments are needed. The Good Thing about this that in well written programs, state becomes explicit: each function lists its inputs as parameters instead of arbitrarily <a href="http://en.wikipedia.org/wiki/Mung" rel="nofollow">munging</a> global state. So on some level, <i>it is easier to reason about order of evaluation with respect to one function at a time</i>. Each function can ignore the rest of the universe and focus on what it needs to do. When combined, functions are guaranteed to work the same[1] as they would in isolation.</p> <blockquote> <p>... uncertain values like user input or random values are hard to model in purely functional languages.</p> </blockquote> <p>The solution to the input problem in purely functional programs is to embed an imperative language as a <a href="http://en.wikipedia.org/wiki/Domain_Specific_Language" rel="nofollow">DSL</a> using <a href="http://en.wikipedia.org/wiki/Monads_in_functional_programming" rel="nofollow">a sufficiently powerful abstraction</a>. In imperative (or non-pure functional) languages this is not needed because you can "cheat" and pass state implicitly and order of evaluation is explicit (whether you like it or not). Because of this "cheating" and forced evaluation of all parameters to every function, in imperative languages 1) you lose the ability to create your own control flow mechanisms (without macros), 2) code isn't inherently thread safe and/or parallelizable <i>by default</i>, 3) and implementing something like undo (time travel) takes careful work (imperative programmer must store a recipe for getting the old value(s) back!), whereas pure functional programming buys you all these things&mdash;and a few more I may have forgotten&mdash;"for free".</p> <p>I hope this doesn't sound like zealotry, I just wanted to add some perspective. Imperative programming and especially mixed paradigm programming in powerful languages like C# 3.0 are still totally effective ways to get things done and <a href="http://en.wikipedia.org/wiki/No_Silver_Bullet" rel="nofollow">there is no silver bullet</a>.</p> <p>[1] ... except possibly with respect memory usage (cf. foldl and foldl' in Haskell).</p> http://stackoverflow.com/questions/321989/greatest-linear-dimension-2d-set-of-points 2 Greatest linear dimension 2d set of points Jared Updike 2008-11-26T20:14:32Z 2009-10-25T14:10:11Z <p>Given an ordered set of 2D pixel locations (adjacent or adjacent-diagonal) that form a complete path with no repeats, how do I determine the Greatest Linear Dimension of the polygon whose perimeter is that set of pixels? (where the GLD is the greatest linear distance of any pair of points in the set)</p> <p>For my purposes, the obvious O(n^2) solution is probably not fast enough for figures of thousands of points. Are there good heuristics or lookup methods that bring the time complexity nearer to O(n) or O(log(n))?</p> http://stackoverflow.com/questions/44569/octal-number-literals-when-why-ever 9 Octal number literals: when? why? ever? Jared Updike 2008-09-04T19:29:33Z 2009-10-24T23:33:18Z <p>I have never used octal numbers in my code nor come across any code that used it (hexadecimal and bit twiddling notwithstanding).</p> <p>I started programming in C/C++ about 1994 so maybe I'm too young for this? Does older code use octal? C includes support for these by prepending a 0, but where is the code that uses these base 8 number literals?</p> http://stackoverflow.com/questions/28256/equation-expression-parser-with-precedence/29124#29124 11 Answer by Jared Updike for Equation (expression) parser with precedence? Jared Updike 2008-08-26T22:39:39Z 2009-09-18T20:44:47Z <p><strong>The hard way:</strong></p> <p>You want a <a href="http://en.wikipedia.org/wiki/Recursive%5Fdescent%5Fparser" rel="nofollow">recursive descent parser.</p> <p>To get precedence you need to think recursively, for example, using your sample string, </p> <pre><code>1+11*5 </code></pre> <p>to do this manually, you would have to read the <code>1</code>, then see the plus and start a whole new recursive parse "session" starting with <code>11</code>... and make sure to parse the <code>11 * 5</code> into its own factor, yielding a parse tree with <code>1 + (11 * 5)</code>.</p> <p>This all feels so painful even to attempt to explain, especially with the added powerlessness of C. See, after parsing the 11, if the * was actually a + instead, you would have to abandon the attempt at making a term and instead parse the <code>11</code> itself as a factor. My head is already exploding. It's possible with the recursive decent strategy, but there is a better way...</p> <p><strong>The easy (right) way</strong></p> <p>If you use a GPL tool like Bison, you probably don't need to worry about licensing issues since the C code generated by bison is not covered by the GPL (IANAL but I'm pretty sure GPL tools don't force the GPL on generated code/binaries; for example Apple compiles code like say, Aperture with GCC and they sell it without having to GPL said code).</p> <p><a href="http://www.gnu.org/software/bison" rel="nofollow">Download Bison</a> (or something equivalent, ANTLR, etc.).</p> <p>There is usually some sample code that you can just run bison on and get your desired C code that demonstrates this four function calculator:</p> <p><a href="http://www.gnu.org/software/bison/manual/html%5Fmono/bison.html#Infix-Calc" rel="nofollow">http://www.gnu.org/software/bison/manual/html_mono/bison.html#Infix-Calc</a></p> <p>Look at the generated code, and see that this is not as easy as it sounds. Also, the advantages of using a tool like Bison are 1) you learn something (especially if you read the Dragon book and learn about grammars), 2) you avoid <a href="http://en.wikipedia.org/wiki/Not%5FInvented%5FHere" rel="nofollow">NIH</a> trying to reinvent the wheel. With a real parser-generator tool, you actually have a hope at scaling up later, showing other people you know that parsers are the domain of parsing tools.</p> <p><hr /></p> <p><strong>Update:</strong></p> <p>People here have offered much sound advice. My only warning against skipping the parsing tools or just using the Shunting Yard algorithm or a hand rolled recursive decent parser is that little toy languages<sup>[1]</sup> may someday turn into big actual languages with functions (sin, cos, log) and variables, conditions and for loops.</p> <p>Flex/Bison may very well be overkill for a small, simple interpreter, but a one off parser+evaluator may cause trouble down the line when changes need to be made or features need to be added. Your situation will vary and you will need to use your judgement; just don't <a href="http://torque.realinfo.de/index.php?title=Torque_Scripting_Language" rel="nofollow">punish other people for your sins</a> <sup>[2]</sup> and build a less than adequate tool.</p> <p><strong>My favorite tool for parsing</strong></p> <p>The best tool in the world for the job is the <a href="http://book.realworldhaskell.org/read/using-parsec.html" rel="nofollow">Parsec</a> library (for recursive decent parsers) which comes with the programming language Haskell. It looks a lot like BNF</a>, or like some specialized tool or domain specific language for parsing (sample code [3]), but it is in fact just a regular library in Haskell, meaning that it compiles in the same build step as the rest of your Haskell code, and you can write arbitrary Haskell code and call that within your parser, and you can mix and match other libraries <em>all in the same code</em>. (Embedding a parsing language like this in a language other than Haskell results in loads of syntactic cruft, by the way. I did this in C# and it works quite well but it is not so pretty and succinct.)</p> <p><strong>Notes:</strong></p> <p>[1] Richard Stallman says, in <a href="http://web.cecs.pdx.edu/~trent/gnu/tcl-not" rel="nofollow">Why you should not use Tcl</a></p> <blockquote> <p>The principal lesson of Emacs is that a language for extensions should not be a mere "extension language". It should be a real programming language, designed for writing and maintaining substantial programs. Because people will want to do that!</p> </blockquote> <p>[2] Yes, I am forever scarred from using that "language".</p> <p>Also note that when I submitted this entry, the preview was correct, but <strong>SO's less than adequate parser ate my close anchor tag on the first paragraph</strong>, proving that parsers are not something to be trifled with because if you use regexes and one off hacks <strong>you will probably get something subtle and small wrong</strong>.</p> <p>[3] Snippet of a Haskell parser using Parsec: a four function calculator extended with exponents, parentheses, whitespace for multiplication, and constants (like pi and e).</p> <pre><code>aexpr = expr `chainl1` toOp expr = optChainl1 term addop (toScalar 0) term = factor `chainl1` mulop factor = sexpr `chainr1` powop sexpr = parens aexpr &lt;|&gt; scalar &lt;|&gt; ident powop = sym "^" &gt;&gt;= return . (B Pow) &lt;|&gt; sym "^-" &gt;&gt;= return . (\x y -&gt; B Pow x (B Sub (toScalar 0) y)) toOp = sym "-&gt;" &gt;&gt;= return . (B To) mulop = sym "*" &gt;&gt;= return . (B Mul) &lt;|&gt; sym "/" &gt;&gt;= return . (B Div) &lt;|&gt; sym "%" &gt;&gt;= return . (B Mod) &lt;|&gt; return . (B Mul) addop = sym "+" &gt;&gt;= return . (B Add) &lt;|&gt; sym "-" &gt;&gt;= return . (B Sub) scalar = number &gt;&gt;= return . toScalar ident = literal &gt;&gt;= return . Lit parens p = do lparen result &lt;- p rparen return result </code></pre> http://stackoverflow.com/questions/1351721/how-does-type-deduction-work-in-haskell/1352088#1352088 2 Answer by Jared Updike for How does Type Deduction work in Haskell? Jared Updike 2009-08-29T18:41:31Z 2009-08-29T18:41:31Z <p>In Haskell, Ord and Floating are independent or <a href="http://en.wikipedia.org/wiki/Orthogonality#Computer_science" rel="nofollow">orthogonal</a> concepts. Perhaps you were assuming that Floating only referred to very specific types, like Double and Float (this would be the case in most other languages)?</p> <p>As Rudiger pointed out, there are types that are instances of the class Floating that are not Ord because there is no ordering for certain float types, like Complex. Another example besides Complex numbers would be vectors, for which you may define these Floating functions, but not any kind of sensible Ord-ering.</p> <p>Remember that type classes just specify the set of functions (like an interface in Java or C#, if that's a helpful way of thinking about it) that must be defined for a type <b>a</b>; to be Ord, a type <b>a</b> just needs comparison operators, and to be an instance of Floating, a type <b>a</b> just needs to implement Fractional and have the functions pi, exp, sqrt, log, sin, cos, ... defined for them. That's all Floating means, nothing more, nothing less.</p> http://stackoverflow.com/questions/1349321/best-language-for-a-mandelbrot-zoom/1349391#1349391 0 Answer by Jared Updike for Best Language for a Mandelbrot Zoom? Jared Updike 2009-08-28T21:12:14Z 2009-08-28T21:12:14Z <p>C++ or C with MPFR.<a href="http://www.mpfr.org" rel="nofollow">http://www.mpfr.org</a> .</p> http://stackoverflow.com/questions/1315194/hash-tables-in-prolog/1326252#1326252 0 Answer by Jared Updike for Hash tables in prolog Jared Updike 2009-08-25T05:38:08Z 2009-08-25T05:38:08Z <p>I'm not a Prolog guy (just an outside observer) but I found this:</p> <p><a href="http://www.sics.se/sicstus/docs/4.0.7/html/sicstus/lib_002davl.html" rel="nofollow">http://www.sics.se/sicstus/docs/4.0.7/html/sicstus/lib_002davl.html</a></p> <p>when I searched for "prolog finite map balanced trees". It says it's an alternative implementation of association lists.</p> <p>(Why I thought of this: In Haskell, a purely functional language, instead of association lists or hash tables, it is common to use trees for (persistent) dictionaries or finite maps. Lookups are also O(log(N)). See <a href="http://hackage.haskell.org/packages/archive/containers/0.2.0.1/doc/html/Data-Map.html" rel="nofollow">Data.Map</a> for some references on implementing maps with balanced trees.)</p> http://stackoverflow.com/questions/1325444/parsing-slightly-off-kilter-xml-in-c-with-xmlseralizer 1 Parsing slightly off-kilter XML in C# with XmlSeralizer Jared Updike 2009-08-25T00:16:57Z 2009-08-25T01:29:56Z <p>I've been given some "XML" files that don't quite have a proper schema (I think that's the problem) and the medical device that generates them cannot be changed to generate easy-to-parse XML. (With such a tantalizingly small modification (extra wrapping <b>Images</b> tags around the <b>Image</b> entries) it would be trivial to read these files---isn't that what XML is about?)</p> <p>Basically I'm stuck here. The XML looks like this:</p> <pre><code>&lt;Series&gt; &lt;Metadata1&gt;foo&lt;/Metadata1&gt; &lt;Metadata2&gt;bar&lt;/Metadata2&gt; ... &lt;Image&gt;...&lt;/Image&gt; &lt;Image&gt;...&lt;/Image&gt; ... &lt;/Series&gt; </code></pre> <p>(there can be any number of images but the possible Metadata tags are all known). My code looks like this:</p> <pre><code>public class Image { ... } public class Series : List&lt;Image&gt; { public Series() { } public string Metadata1; public string Metadata2; ... } </code></pre> <p>When I run this like so:</p> <pre><code> XmlSerializer xs = new XmlSerializer(typeof(Series)); StreamReader sr = new StreamReader(path); Series series = (Series)xs.Deserialize(sr); sr.Close(); </code></pre> <p>the List of Image objects reads properly into the series object but no Metadata1/2/etc fields are read (in fact, browsing the object in the debugger shows all of the metadata fields inside of a "Raw View" sort of field).</p> <p>When I change the code:</p> <pre><code>public class Series // // removed this : List&lt;Image&gt; { public Series() { } public string Metadata1; public string Metadata2; ... } </code></pre> <p>and run the reader on the file, I get a series object with Metadata1/2/etc. filled in perfectly but no Image data being read (obviously).</p> <p>How do I parse both Metadata1/2/etc. and the series of Images with the least amount of painful ad hoc code?</p> <p>Do I have to write some custom (painful? easy?) ReadXML method to implement IXMLSeralizable?</p> <p>I don't care too much how the objects are laid out since my software that consumes these C# classes is totally flexible: <pre>List&lt;Image&gt; Images;</pre> for the images would be fine, or perhaps the metadata is wrapped in some object, whatever...</p> http://stackoverflow.com/questions/1325123/can-anyone-identify-this-image-format/1325145#1325145 1 Answer by Jared Updike for Can anyone identify this image format? Jared Updike 2009-08-24T22:37:26Z 2009-08-24T22:37:26Z <p>It looks like RAW, un-encoded image data. Have you tried loading it straight into a two dimensional buffer and seeing what you get? Copy the file and name it foo.raw and try loading it in Photoshop, for example. If my guess is correct and it is just raw 16bit samples, you will have to supply the width and height yourself. The number of channels may be 1x16bit. As tfinniga says, the first two bytes may be a header you will have to skip.</p> http://stackoverflow.com/questions/81797/is-it-ethical-legal-to-bring-your-favorite-code-with-you-after-a-job/1312342#1312342 0 Answer by Jared Updike for Is it ethical/legal to bring your favorite code with you after a job? Jared Updike 2009-08-21T14:35:07Z 2009-08-21T14:35:07Z <p>It depends on the type of work you're doing whether you'd even want to or would be able to reuse any of the code, right? If you write business logic all day specific to the domain of your employer (and you don't leave and head straight to a competitor with the whole darn app, which would obviously be stealing and against your NDA/contract/state and federal laws/etc.) what good are the classes and modules you built, in terms of reusability?</p> <p>If you are fortunate enough to write useful libraries that you could imagine would be useful in general projects (like: why isn't this dialog box or smart picture control part of the .NET framework?) but those libraries are not related to the core value of your employer's software, you may be able to ask your boss about reusing them in the future for personal projects. This will obvious vary for your situation, but as others have mentioned, the sort of 'snippets' of stuff you would hope to come across in the course of development, or find on SO, for example, may qualify for future personal reuse. Maybe you asked a question on SO and then <a href="http://stackoverflow.com/questions/321989/greatest-linear-dimension-2d-set-of-points">answered it yourself</a> with a snippet of code. Your boss and your legal department would be a good place to check but if you (1) know the tone of your company and (2) don't misappropriate their entire IP and especially (3) don't walk off with the source straight to a competitor, you're more likely to be safe. IANAL and YMMV.</p> http://stackoverflow.com/questions/1303381/haddock-failed-to-create-dependency-graph-when-adding-sections-with-or-a-modu 1 Haddock: Failed to create dependency graph (when adding sections with * or a module heading) Jared Updike 2009-08-20T00:39:54Z 2009-08-20T16:23:36Z <p>I compiled and installed haddock-2.4.2 from the tarball source.</p> <p>Adding a few simple comments to the code here:</p> <ul> <li><a href="https://dl.getdropbox.com/u/143480/doc/DualMap.hs" rel="nofollow">https://dl.getdropbox.com/u/143480/doc/DualMap.hs</a></li> </ul> <p>and running haddock</p> <pre><code>$ haddock -h -o doc Data/DualMap.hs Warning: Data.DualMap: could not find link destinations for: Data.Typeable.Typeable2 GHC.Base.Eq GHC.Show.Show GHC.Base.Ord GHC.Base.Bool Data.Set.Set </code></pre> <p>yields:</p> <ul> <li><a href="https://dl.getdropbox.com/u/143480/doc/Data-DualMap.html" rel="nofollow">https://dl.getdropbox.com/u/143480/doc/Data-DualMap.html</a></li> </ul> <p>Things look good. (Note that this module only depends on libs that ship with GHC and no other source modules.)</p> <p>However, when I try to add sections (a la <a href="http://www.haskell.org/haddock/doc/html/ch03s04.html#id289234" rel="nofollow">http://www.haskell.org/haddock/doc/html/ch03s04.html#id289234</a> ) in the comments with "-- * test" I get:</p> <pre><code>$ haddock -h -o doc Data/DualMap.hs Data/DualMap.hs:20:0: parse error on input `-- * test' haddock: Failed to create dependency graph </code></pre> <p>I have no idea where to begin getting this to work since this error message only tells me that Haddock.Interface.depanal returned Nothing (according to a grep of the haddock sources) but not how to stop the dependency analysis from failing. Perhaps I need some more command line arguments or references to missing link destinations in GHC/base/containers documentation or some haddock config file?</p> <p>Searching Google yielded plenty of cabal build errors of the same ilk for packages on hackage but nothing about how to fix them.</p> <p>How do I add sections (with asterisks) and get Haddock to generate my docs? What (probably simple thing) am I missing?</p> http://stackoverflow.com/questions/1303381/haddock-failed-to-create-dependency-graph-when-adding-sections-with-or-a-modu/1307337#1307337 0 Answer by Jared Updike for Haddock: Failed to create dependency graph (when adding sections with * or a module heading) Jared Updike 2009-08-20T16:23:36Z 2009-08-20T16:23:36Z <p>Simple fix (terrible error message):</p> <p>Move the ( up to the line with the module name. Previous bad code:</p> <pre><code>module Data.DualMap -- * The @DualMap@ abstract type ( DualMap () -- * (?) internal? -- exposed for testing purposes, for now... , dmFlip -- * converting to and from DualMap , toList, fromList, map -- * constructing a DualMap , empty, null, insert, union </code></pre> <p>Happy code looks like this:</p> <pre><code>module Data.DualMap ( -- * The @DualMap@ abstract type DualMap () -- * (?) internal? -- exposed for testing purposes, for now... , dmFlip -- * converting to and from DualMap , toList, fromList, map -- * constructing a DualMap , empty, null, insert, union </code></pre> <p>Simple enough. I found this out by downloading <a href="http://hackage.haskell.org/package/dlist-0.5" rel="nofollow">DList from hacakge</a> and gutting it and replacing the code with my own code. When DList worked with 'cabal haddock' and mine didn't (when I tried to add some asterisks), I looked at the difference between the files and sure enough my parenthesis was on the wrong line.</p> <p>BTW I highly recommend DList as a starting place for a new Haskell project instead of <a href="http://semantic.org/hnop/" rel="nofollow">hnop</a>.</p> http://stackoverflow.com/questions/1274547/best-way-to-pass-authentication-when-using-ajax/1274785#1274785 1 Answer by Jared Updike for best way to pass authentication when using ajax Jared Updike 2009-08-13T21:45:02Z 2009-08-13T21:45:02Z <p>You might consider using a One Time Password:</p> <p><a href="http://en.wikipedia.org/wiki/One-time_password" rel="nofollow">http://en.wikipedia.org/wiki/One-time_password</a></p> <p>Also, if you can't run things over https you might piggyback on top of various OpenID providers' HTTPS, at least for the initial login to get the session cookie.</p> http://stackoverflow.com/questions/1257117/does-anyone-have-a-working-non-recursive-floodfill-algorithm-written-in-c/1257195#1257195 3 Answer by Jared Updike for does anyone have a working non-recursive floodfill algorithm written in C? Jared Updike 2009-08-10T21:01:58Z 2009-08-10T21:01:58Z <p>Just implement a stack of int pairs with an array of some fixed size (maybe the size of the image in pixels or the square root of that, for example) for the stack and track the top with an int.</p> <p>Here is some C# code that implements floodfill non-recursively:</p> <pre><code>private static void Floodfill(byte[,] vals, Point q, byte SEED_COLOR, byte COLOR) { int h = vals.GetLength(0); int w = vals.GetLength(1); if (q.Y &lt; 0 || q.Y &gt; h - 1 || q.X &lt; 0 || q.X &gt; w - 1) return; Stack&lt;Point&gt; stack = new Stack&lt;Point&gt;(); stack.Push(q); while (stack.Count &gt; 0) { Point p = stack.Pop(); int x = p.X; int y = p.Y; if (y &lt; 0 || y &gt; h - 1 || x &lt; 0 || x &gt; w - 1) continue; byte val = vals[y, x]; if (val == SEED_COLOR) { vals[y, x] = COLOR; stack.Push(new Point(x + 1, y)); stack.Push(new Point(x - 1, y)); stack.Push(new Point(x, y + 1)); stack.Push(new Point(x, y - 1)); } } } </code></pre> http://stackoverflow.com/questions/1242051/best-language-for-a-personal-code-library/1242085#1242085 0 Answer by Jared Updike for Best language for a personal code library? Jared Updike 2009-08-06T23:30:29Z 2009-08-06T23:30:29Z <p>Web apps. You can glue anything together over the web (or over a local server running on your machine). You can code CGI scripts or run web servers in most of the languages you mentioned (except maybe MATLAB). Use JSON or XML and you can make any language/function/algorithm interact with anything else. The web: it's the future.</p> http://stackoverflow.com/questions/1126989/what-future-does-the-gpu-have-in-computing/1240733#1240733 0 Answer by Jared Updike for What future does the GPU have in computing? Jared Updike 2009-08-06T18:59:59Z 2009-08-06T18:59:59Z <p>GHC (Haskell) researchers (working for Microsoft Research) are adding support for Nested Data Parallelism directly to a general purpose programming language. The idea is to use multiple cores and/or GPUs on the back end yet expose data parallel arrays as a native type in the language, regardless of the runtime executing the code in parallel (or serial for the single-CPU fallback).</p> <p><a href="http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell" rel="nofollow">http://www.haskell.org/haskellwiki/GHC/Data_Parallel_Haskell</a></p> <p>Depending on the success of this in the next few years, I would expect to see other languages (C# specifically) pick up on the idea, which could bring these sorts of capabilities to a more mainstream audience. Perhaps by that time the CPU-GPU bandwidth and driver issues will be resolved.</p> http://stackoverflow.com/questions/1123652/getting-csharp-mode-emacs-syntax-highlighting-working 3 Getting csharp-mode Emacs syntax highlighting working Jared Updike 2009-07-14T05:51:41Z 2009-08-03T23:12:08Z <p>Googling "csharp mode emacs" yields the page</p> <blockquote> <p><a href="http://www.emacswiki.org/emacs/CSharpMode" rel="nofollow">http://www.emacswiki.org/emacs/CSharpMode</a></p> </blockquote> <p>which includes a few links to various downloadable emacs lisp files. The 2005 link (DylanMoonfire) is broken, so I downloaded:</p> <blockquote> <p><a href="http://lists.ximian.com/pipermail/mono-list/2002-May/006182.html" rel="nofollow">http://lists.ximian.com/pipermail/mono-list/2002-May/006182.html</a></p> </blockquote> <p>as ~/.emacslib/csharp-mode.el</p> <p>and added:</p> <pre><code>(autoload 'csharp-mode "csharp-mode" "Major mode for editing C# code." t) (setq auto-mode-alist (cons '( "\\.cs\\'" . csharp-mode ) auto-mode-alist )) </code></pre> <p>to my .emacs file (anywhere, beginning, middle or end). I attempt to edit a new text file called "t.cs" and I get the error:</p> <blockquote> <p>File mode specification error: (error "Buffer t.cs is not a CC Mode buffer (c-set-style)")</p> </blockquote> <p>and no syntax highlighting. I'm not well versed in emacs-lisp but I know enough to install support for loads of language modes and csharp-mode is just not playing nice compared to every other language mode I've installed.</p> <p>I was getting excited to play with Mono on my Mac and ran into this ridiculous barrier! Anyone out there know how to get decent support for C# syntax highlighting in emacs?</p> <p>Note: I'm using a MacBook Pro running Emacs 22.1.1 on OS X Leopard.</p> http://stackoverflow.com/questions/1123652/getting-csharp-mode-emacs-syntax-highlighting-working/1197920#1197920 0 Answer by Jared Updike for Getting csharp-mode Emacs syntax highlighting working Jared Updike 2009-07-29T03:31:31Z 2009-08-03T23:12:08Z <p>I made a slight modification to make Tab indent 4 spaces and deal with braces correctly, so now hitting tab on any line "does the right thing" with respect to conventions in Visual Studio.</p> <p><a href="http://www.updike.org/files/csharp-mode.el" rel="nofollow">http://www.updike.org/files/csharp-mode.el</a></p> http://stackoverflow.com/questions/1224494/how-to-identify-core-framework-assemblies/1224555#1224555 1 Answer by Jared Updike for How to Identify core Framework assemblies ? Jared Updike 2009-08-03T20:49:49Z 2009-08-03T20:49:49Z <p>Here is a list based on the ECMA standard:</p> <p><a href="http://en.wikipedia.org/wiki/Base_Class_Library" rel="nofollow">http://en.wikipedia.org/wiki/Base_Class_Library</a></p> http://stackoverflow.com/questions/1224491/resources-for-learning-category-theory/1224533#1224533 3 Answer by Jared Updike for Resources for learning category theory Jared Updike 2009-08-03T20:44:48Z 2009-08-03T20:44:48Z <ul> <li><a href="http://en.wikibooks.org/wiki/Haskell/Category_theory" rel="nofollow">Haskell Wikibook chapter on Category Theory</a> (CT in relation to Haskell)</li> <li><a href="http://dekudekuplex.wordpress.com/2009/01/16/learning-haskell-through-category-theory-and-adventuring-in-category-land-like-flatterland-only-about-categories/" rel="nofollow">Learning Haskell through Category Theory, and Adventuring in Category Land: Like Flatterland, Only About Categories</a> (review of some books)</li> <li>Dan Piponi's blog: <a href="http://blog.sigfpe.com/" rel="nofollow">http://blog.sigfpe.com/</a></li> <li><a href="https://www.cs.tcd.ie/~devriese/talks/cattheory.pdf" rel="nofollow">Abstract Nonsense for Functional Programmers by Edsko de Vries (pdf)</a></li> </ul> http://stackoverflow.com/questions/1198089/quiting-the-page-before-a-form-submission/1198112#1198112 0 Answer by Jared Updike for Quiting the page before a form submission Jared Updike 2009-07-29T04:56:38Z 2009-07-29T04:56:38Z <p>The URL that the JavaScript calls should be a form with an onLoad method that does wha tyou need.</p> http://stackoverflow.com/questions/1190546/is-perfect-bug-free-software-an-impossible-ideal/1190610#1190610 5 Answer by Jared Updike for Is perfect bug-free software an impossible ideal? Jared Updike 2009-07-27T21:08:10Z 2009-07-27T21:08:10Z <p>Some very clever and hard working engineers built insanely complex systems (Project Apollo and before that, Project Gemini) and sent men to the moon and back alive. There were a small number of problems but if it is possible to develop such large <em>physical</em> systems of the utmost reliability, then surely programmers in the software-only arena should be able to accomplish similar feats. (cf. TeX and Knuth's outstanding bug offers) The difference is usually (1) having the money/time/people resources to do things right and (2) having very clear goals. NASA had both. Most software projects do not.</p> http://stackoverflow.com/questions/1183001/how-can-i-tail-a-zipped-file-without-reading-its-entire-contents/1183032#1183032 2 Answer by Jared Updike for How can I tail a zipped file without reading its entire contents? Jared Updike 2009-07-25T20:53:49Z 2009-07-25T20:53:49Z <p>If you have control over what goes into the file in the first place, if it's anything like a ZIP file you could store chunks of predetermined size with filenames in increasing numerical order and then just decompress the last chunk/file.</p> http://stackoverflow.com/questions/1182983/how-to-convert-single-dimensional-arrays-to-multi-dimensional-ones-c/1183019#1183019 0 Answer by Jared Updike for How to convert single dimensional arrays to multi dimensional ones? (C#) Jared Updike 2009-07-25T20:48:58Z 2009-07-25T20:48:58Z <p>Mehrdad assumes that the width is one since there is no real way to determine either the width or height from a one dimensional array by itself. If you have some (outside) notion of the 'width' then Mehrdad's code becomes:</p> <pre><code>// assuming you have a variable with the 'width', pulled out of a rabbit's hat int height = original.Length / width; double[,] arr = new double[width, height]; int x = 0; int y = 0; for (int i = 0; i &lt; original.Length; ++i) { arr[x, y] = original[i]; x++; if (x == width) { x = 0; y++; } } </code></pre> <p>Although, <b>Row major</b> is probably more common in many applications (matrices, text buffers or graphics):</p> <pre><code>// assuming you have a variable with the 'width', pulled out of a rabbit's hat int height = original.Length / width; double[,] arr = new double[height, width]; // note the swap int x = 0; int y = 0; for (int i = 0; i &lt; original.Length; ++i) { arr[y, x] = original[i]; // note the swap x++; if (x == width) { x = 0; y++; } } </code></pre> http://stackoverflow.com/questions/1182954/c-graphics-newbie-question/1182997#1182997 0 Answer by Jared Updike for C# Graphics Newbie Question Jared Updike 2009-07-25T20:38:05Z 2009-07-25T20:38:05Z <p>Keeping in mind the other helpful answers, once you start thinking in terms of the alpha value at each pixel, how could you tell the difference between completely transparent black, completely transparent blue, orange, or yellow? They aren't really different when you draw them on top of any existing pixels: the colors below are unchanged when you paint a (perfectly) transparent coat over them. If those transparent pixels in your gif come back black in your looping code, then that is only because it is a common, reasonable default, to set all memory values to zero (R=0, G=0, B=0, A=0) ---which is "transparent black" (on some level).</p> http://stackoverflow.com/questions/1167025/how-can-i-store-multiple-items-in-an-xml-file-for-easy-parsing/1167228#1167228 0 Answer by Jared Updike for How can I store multiple items in an XML file for easy parsing? Jared Updike 2009-07-22T18:27:33Z 2009-07-22T18:27:33Z <p>In your case you could just have</p> <pre><code>List&lt;string&gt; Fruits; </code></pre> <p>in your class somewhere which would serialize to</p> <pre><code>&lt;Fruits&gt; &lt;string&gt;Apple&lt;/string&gt; &lt;string&gt;Orange&lt;/string&gt; &lt;/Fruits&gt; </code></pre> <p>I believe.</p> <p>For something more involved with nested lists of objects, you might want to declare a class Fruits as a List like so:</p> <pre><code>[Serializable] public class Fruits: List&lt;Fruit&gt; { // empty public constructor to make it serializable public Fruits() { } // ... } </code></pre> <p>There are cases where you wouldn't be able to put, for example List&lt;Flavors&gt; directly into the Fruit class and have it serialize a list of lists (or was it an array of lists or a list of arrays? I forget---I know I had a problem with this); you would need another class Flavors : List&lt;Flavors&gt; and so forth.</p> http://stackoverflow.com/questions/1155603/webbrowser-control-resize-c/1167184#1167184 0 Answer by Jared Updike for WebBrowser control Resize C# Jared Updike 2009-07-22T18:18:53Z 2009-07-22T18:18:53Z <p>Your best bet might be to just make the WebBrowser use as much space (Dock.Fill) as possible on the form from the get-go, so if the user full-screen maximizes the app they get plenty of space, and if they want it smaller for smaller sites they can resize your app however they want. This is how all browsers work.</p> http://stackoverflow.com/questions/1163549/best-language-for-software-development-in-linux/1163553#1163553 1 Answer by Jared Updike for Best language for Software Development in Linux. Jared Updike 2009-07-22T07:10:09Z 2009-07-22T07:10:09Z <p>A keen programmer's mind.</p> http://stackoverflow.com/questions/1786969/pitfalls-disadvantages-of-functional-programming/1787229#1787229 Comment by Jared Updike on pitfalls/disadvantages of functional programming Jared Updike 2009-12-01T21:51:29Z 2009-12-01T21:51:29Z Sorry about the inaccessible link. I would post HTML of text but the PS/PDF is actually an image and I don't have OCR software on hand. I suppose I could post a PDF of it somewhere. Not sure why ACM hides some of these older articles; don't they want to disseminate this information. http://stackoverflow.com/questions/1786969/pitfalls-disadvantages-of-functional-programming/1787201#1787201 Comment by Jared Updike on pitfalls/disadvantages of functional programming Jared Updike 2009-11-24T01:33:27Z 2009-11-24T01:33:27Z This highlights an interesting problem with FP: programming effectively in FP requires you to know certain tricks---especially dealing with laziness. In your example, it is actually easy to keep your code tail recursive (using a strict left fold) and avoid having things blow up on you. You don't have build the list backwards and reverse the return list. The trick is to use difference lists: <a href="http://en.wikipedia.org/wiki/Difference_list" rel="nofollow">en.wikipedia.org/wiki/Difference_list</a> . A lot of these sorts of tricks are not so easy to figure out on your own. Luckily the Haskell community is super friendly (IRC channel, mailing lists). http://stackoverflow.com/questions/1786969/pitfalls-disadvantages-of-functional-programming/1787084#1787084 Comment by Jared Updike on pitfalls/disadvantages of functional programming Jared Updike 2009-11-24T01:14:05Z 2009-11-24T01:14:05Z Wadler calls this the expression problem: <a href="http://en.wikipedia.org/wiki/Expression_Problem" rel="nofollow">en.wikipedia.org/wiki/Expression_Problem</a> http://stackoverflow.com/questions/1559590/haskell-force-floats-to-have-two-decimals/1559618#1559618 Comment by Jared Updike on Haskell: Force floats to have two decimals Jared Updike 2009-11-23T19:50:44Z 2009-11-23T19:50:44Z Try rounding then printing the float? http://stackoverflow.com/questions/128057/what-are-the-benefits-of-functional-programming/128145#128145 Comment by Jared Updike on What are the benefits of functional programming? Jared Updike 2009-11-09T19:35:26Z 2009-11-09T19:35:26Z &quot;that's a benefit of learning it, not a benefit of the paradigm itself&quot;. The paradigm will leak over into your other OOP work and can help simplify your development there. You can approach problems from a &quot;compute this output from this input&quot; and &quot;compose these two functions that compute new data&quot; instead of &quot;wait---what was the state of some shared variable over there?&quot; and &quot;did I get these procedures to execute in the correct order?&quot;. Seriously, you get these benefits (from understand the FP paradigm) in Python, C#, C++, Java, you name it. http://stackoverflow.com/questions/199468/c-image-clone-out-of-memory-exception/199497#199497 Comment by Jared Updike on C# Image.Clone Out of Memory Exception Jared Updike 2009-11-09T19:17:28Z 2009-11-09T19:17:28Z Yeah bitmap .Dispose doesn't affect these OoM exceptions, in my experience. http://stackoverflow.com/questions/28256/equation-expression-parser-with-precedence/783132#783132 Comment by Jared Updike on Equation (expression) parser with precedence? Jared Updike 2009-11-03T18:47:21Z 2009-11-03T18:47:21Z That's quite a nice little pearl. But extending it (say, with function application, implicit multiplication, prefix and postfix operators, optional type annotations, anything) would break the whole thing. In other words, it's an elegant hack. http://stackoverflow.com/questions/1189259/jquery-style-display-value/1189275#1189275 Comment by Jared Updike on JQuery style display value Jared Updike 2009-10-30T14:51:36Z 2009-10-30T14:51:36Z This is bad because it doesn't generalize when the style attribute has more than just display:blah (anything, like width:100, would get mixed into the split(':')[1]) http://stackoverflow.com/questions/1257117/does-anyone-have-a-working-non-recursive-floodfill-algorithm-written-in-c/1257195#1257195 Comment by Jared Updike on does anyone have a working non-recursive floodfill algorithm written in C? Jared Updike 2009-10-19T18:35:02Z 2009-10-19T18:35:02Z Isn't SO wonderful? :-) http://stackoverflow.com/questions/1580720/security-question-is-this-a-valid-way-to-hack-into-facebook-applications-and-p Comment by Jared Updike on Security question: Is this a valid way to hack into Facebook applications? (and possibly Facebook)? Jared Updike 2009-10-16T22:30:10Z 2009-10-16T22:30:10Z Even if the system/cookie does check for IP, can't you still spoof the IP? http://stackoverflow.com/questions/44569/octal-number-literals-when-why-ever/1579177#1579177 Comment by Jared Updike on Octal number literals: when? why? ever? Jared Updike 2009-10-16T22:24:51Z 2009-10-16T22:24:51Z Nice gravatar... You got me there. http://stackoverflow.com/questions/1398322/split-bytestring-on-a-bytestring-instead-of-a-word8-or-char/1398915#1398915 Comment by Jared Updike on Split ByteString on a ByteString (instead of a Word8 or Char) Jared Updike 2009-10-16T16:10:33Z 2009-10-16T16:10:33Z It looks like breakSubstring isn't in GHC 6.8 libs... is that right? http://stackoverflow.com/questions/29155/what-is-the-difference-between-a-delegate-and-events/29161#29161 Comment by Jared Updike on What is the difference between a delegate and events? Jared Updike 2009-09-30T18:46:09Z 2009-09-30T18:46:09Z Wow it's unfortunate that they call it composing when functional composition is not the same thing (b would be passed a)... but it's cool that delegates can be easily chained. Thanks for the link. http://stackoverflow.com/questions/1380814/for-loop-ignoring-directories-with-a-space-in-them Comment by Jared Updike on For loop ignoring directories with a space in them? Jared Updike 2009-09-04T18:29:07Z 2009-09-04T18:29:07Z sorry, didn't see that, brain dead on a Friday morning http://stackoverflow.com/questions/1380814/for-loop-ignoring-directories-with-a-space-in-them Comment by Jared Updike on For loop ignoring directories with a space in them? Jared Updike 2009-09-04T18:26:40Z 2009-09-04T18:26:40Z is this Windows (DOS)? perhaps a 'batch-file' tag