User Jonathan Tran - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T22:57:53Z http://stackoverflow.com/feeds/user/12887 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code 5 How do you stringize/serialize Ruby code? Jonathan Tran 2008-10-14T00:44:41Z 2009-10-18T04:22:57Z <p>I want to be able to write a lambda/Proc in my Ruby code, serialize it so that I can write it to disk, and then execute the lambda later. Sort of like...</p> <pre><code>x = 40 f = lambda { |y| x + y } save_for_later(f) </code></pre> <p>Later, in a separate run of the Ruby interpreter, I want to be able to say...</p> <pre><code>f = load_from_before z = f.call(2) z.should == 42 </code></pre> <p>Marshal.dump does not work for Procs. I know Perl has <a href="http://search.cpan.org/~yves/Data-Dump-Streamer-2.08-40/lib/Data/Dump/Streamer.pm" rel="nofollow">Data::Dump::Streamer</a>, and in Lisp this is trivial. But is there a way to do it in Ruby? In other words, what would be the implementation of <code>save<code>_</code>for<code>_</code>later</code>?</p> <p><strong>Edit</strong>: <a href="http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199803#199803">My answer below</a> is nice, but it does not close over free variables (like <code>x</code>) and serialize them along with the lambda. So in my example ...</p> <pre><code>x = 40 s = save_for_later { |y| x + y } # =&gt; "lambda { |y|\n (x + y)\n}" </code></pre> <p>... the string output does not include a definition for <code>x</code>. Is there a solution that takes this into account, perhaps by serializing the symbol table? Can you access that in Ruby?</p> <p><strong>Edit 2</strong>: I updated my answer to incorporate serializing local variables. This seems acceptable.</p> http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned 31 What is the single hardest programming skill or concept you have learned? Jonathan Tran 2008-10-03T16:56:10Z 2009-10-10T17:56:27Z <p>As a follow up to "<a href="http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-h">What is the one programming skill you have always wanted to master but haven’t had time?</a>", what is the single hardest thing related to programming &mdash; skill, concept, tool, language, etc. &mdash; that you <em>have</em> learned or mastered? Not necessarily <a href="http://stackoverflow.com/questions/146670/hardest-concept-to-grasp-as-a-beginner">as a beginner</a>, but all throughout your career.</p> http://stackoverflow.com/questions/1319891/calculating-the-moving-average-of-a-list/1320541#1320541 2 Answer by Jonathan Tran for Calculating the Moving Average of a List Jonathan Tran 2009-08-24T04:56:58Z 2009-08-24T04:56:58Z <p>Here is Clojure pretending to be a more functional language. This is fully tail-recursive, btw, and includes leading zeroes.</p> <pre><code>(defn moving-average [period values] (loop [[x &amp; xs] values window [] ys []] (if (and (nil? x) (nil? xs)) ;; base case ys ;; inductive case (if (&lt; (count window) (dec period)) (recur xs (conj window x) (conj ys 0.0)) (recur xs (conj (vec (rest window)) x) (conj ys (/ (reduce + x window) period))))))) (deftest test-moving-average (is (= [0.0 0.0 0.0 4.75 5.0 6.0 7.25 8.0 8.25 6.5] (moving-average 4 [2.0 4.0 7.0 6.0 3.0 8.0 12.0 9.0 4.0 1.0])))) </code></pre> <p>Usually I put the collection or list parameter last to make the function easier to curry. But in Clojure...</p> <pre><code>(partial moving-average 4) </code></pre> <p>... is so cumbersome, I usually end up doing this ...</p> <pre><code>#(moving-average 4 %) </code></pre> <p>... in which case, it doesn't really matter what order the parameters go.</p> http://stackoverflow.com/questions/830394/what-one-programming-project-have-you-always-wanted-to-do-but-never-had-the-time 0 What one programming project have you always wanted to do but never had the time? [closed] Jonathan Tran 2009-05-06T16:15:28Z 2009-05-11T15:57:21Z <h3>Duplicate:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/275251/whats-the-program-youve-really-wanted-to-write-but-never-found-the-time/275354">What’s the program you’ve really wanted to write but never found the time?</a></p> </blockquote> <p>Reading "<a href="http://stackoverflow.com/questions/121351/what-is-the-one-programming-skill-you-have-always-wanted-to-master-but-havent-ha">What is the one programming skill you have always wanted to master but haven’t had time?</a>", it got me thinking about all the programming projects I wish I could write from scratch, but never got around to. For me, it was often because the project was so large -- like for example, an operating system, a C compiler, or a database engine -- that it would take many months or years working on the side for it to actually be useful.</p> <p>What one programming project have you always wanted to tackle from scratch, whether for fun or to learn more about other implementations like it, that you never got around to?</p> http://stackoverflow.com/questions/830394/what-one-programming-project-have-you-always-wanted-to-do-but-never-had-the-time/830450#830450 0 Answer by Jonathan Tran for What one programming project have you always wanted to do but never had the time? Jonathan Tran 2009-05-06T16:21:59Z 2009-05-06T16:21:59Z <p><strong>A web browser</strong></p> <p>I have been doing all sorts of web development since the days of IE4. The web landscape has come such a long way. But being a programming language geek, I love building things like interpreters from the ground up. HTML/CSS/JavaScript is the one stack I use regularly that I have yet to implement from scratch. The main reason I haven't tackled this yet is b/c the task seems so large it is daunting to ever start.</p> http://stackoverflow.com/questions/815146/how-can-i-get-the-length-of-text-entered-in-a-textbox-using-jquery/815157#815157 6 Answer by Jonathan Tran for How can I get the length of text entered in a textbox using jQuery? Jonathan Tran 2009-05-02T16:40:01Z 2009-05-04T21:45:36Z <p>If your textbox has an id attribute of "mytextbox", then you can get the length like this:</p> <pre><code>var myLength = $("#mytextbox").val().length; </code></pre> <ul> <li><code>$("#mytextbox")</code> finds the textbox by its id.</li> <li><code>.val()</code> gets the value of the input element entered by the user, which is a string.</li> <li><code>.length</code> gets the number of characters in the string.</li> </ul> http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie/821910#821910 -2 Answer by Jonathan Tran for Issue with jQuery $.get in IE Jonathan Tran 2009-05-04T20:30:39Z 2009-05-04T20:30:39Z <p>When all else fails, restart ;-)</p> http://stackoverflow.com/questions/815086/haskell-looking-up-the-second-value-of-a-tuple-in-a-list-based-on-the-first-valu/815094#815094 4 Answer by Jonathan Tran for Haskell: looking up the second value of a tuple in a list based on the first value Jonathan Tran 2009-05-02T16:06:29Z 2009-05-02T16:06:29Z <p>I think your explicit type-declaration is wrong. You have:</p> <pre><code>lookup :: String -&gt; [(String,String)] -&gt; String </code></pre> <p>but I think it should be</p> <pre><code>lookup :: String -&gt; String -&gt; [(String,String)] -&gt; String </code></pre> <p>Actually, after taking another look at it, it looks like you're not using the 2nd parameter "y". So you could remove it and the underscore like so</p> <pre><code>lookup :: String -&gt; [(String,String)] -&gt; String lookup _ [] = "Not found" lookup x zs = if (notFound x zs) then "Not found" else (head [b | (a,b) &lt;- zs, (a==x)]) </code></pre> <p>This will allow you to keep the type declaration you have.</p> http://stackoverflow.com/questions/568337/what-rails-plugins-would-you-like-to-see/634987#634987 0 Answer by Jonathan Tran for What Rails plugins would you like to see? Jonathan Tran 2009-03-11T15:11:41Z 2009-03-11T15:11:41Z <p><strong>A Credit Card Payment System</strong></p> <p>Right now, no one bothers implementing credit card payments until a site has become "production quality". Single-person projects or small startups don't bother making this at first b/c they would much rather spend their time prototyping new, hard, or interesting features.</p> <p>This is bad in the long-run for everyone, including end-users, b/c the default is to offer (often innovative and really great) services for free, which means only already-funded teams or people with lots of extra time can even get to the point of making something.</p> <p>If this existed, were packaged up neatly, and were as dead-simple as Rails scaffolding, small projects could default to whatever payment scheme that actually made sense -- like pay-per-use, donations, trial periods, first 5 free, etc. -- making it <em>possible</em> to fund the really great products out there, instead of forcing them to rely on outside funding or ads, which ruins the product.</p> <p>In a real physical store, people expect to pay. If the person on the other side of the counter gives me something for free (w/o buying anything at all), I say "Are you serious??" and walk away bewildered. But online, I almost expect it. This is bad! Because now everyone expects it, and people trying to make great things can't focus on actually doing that b/c they are too busy trying to figure out how to make it great <em>and free</em>.</p> <p>Oftentimes, there are free things out there online that I like so much that I would like to pay for, but there's simply no easy way to do it. And <a href="http://www.gabrielweinberg.com/blog/2009/03/twitter-charge-me-for-biz-tweets-instead-of-suspending-my-account.html" rel="nofollow">I'm not alone</a>. I use <a href="http://tipjoy.com/" rel="nofollow">tipjoy</a> and have donated to things that have a PayPal donation setup like <a href="http://www.playauditorium.com/" rel="nofollow">Auditorium</a>, but I don't see these as adequate.</p> <p>The best thing out there that I've seen is <a href="http://railskits.com/" rel="nofollow">RailsKits</a>. But as far as I understand, they aren't packaged properly so that I can add them to my site whenever I please like a plugin or gem.</p> http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code/199803#199803 7 Answer by Jonathan Tran for How do you stringize/serialize Ruby code? Jonathan Tran 2008-10-14T02:16:44Z 2009-02-02T22:40:50Z <p><strong>Use Ruby2Ruby</strong></p> <pre><code>def save_for_later(&amp;block) return nil unless block_given? c = Class.new c.class_eval do define_method :serializable, &amp;block end s = Ruby2Ruby.translate(c, :serializable) s.sub(/^def \S+\(([^\)]*)\)/, 'lambda { |\1|').sub(/end$/, '}') end x = 40 s = save_for_later { |y| x + y } # =&gt; "lambda { |y|\n (x + y)\n}" g = eval(s) # =&gt; #&lt;Proc:0x4037bb2c@(eval):1&gt; g.call(2) # =&gt; 42 </code></pre> <p>This is great, but it does not close over free variables (like <code>x</code>) and serialize them along with the lambda.</p> <p>To <a href="http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby">serialize variables</a> also, you can iterate over <code>local_variables</code> and serialize them as well. The problem, though, is that <code>local_variables</code> from within <code>save_for_later</code> accesses only <code>c</code> and <code>s</code> in the code above -- i.e. variables local to the serialization code, not the caller. So unfortunately, we must push the grabbing of local variables and their values to the caller.</p> <p>Maybe this is a good thing, though, because in general, finding all free variables in a piece of Ruby code is <a href="http://en.wikipedia.org/wiki/Undecidable" rel="nofollow">undecidable</a>. Plus, ideally we would also save <code>global_variables</code> and any loaded classes and their overridden methods. This seems impractical.</p> <p>Using this simple approach, you get the following:</p> <pre><code>def save_for_later(local_vars, &amp;block) return nil unless block_given? c = Class.new c.class_eval do define_method :serializable, &amp;block end s = Ruby2Ruby.translate(c, :serializable) locals = local_vars.map { |var,val| "#{var} = #{val.inspect}; " }.join s.sub(/^def \S+\(([^\)]*)\)/, 'lambda { |\1| ' + locals).sub(/end$/, '}') end x = 40 s = save_for_later(local_variables.map{ |v| [v,eval(v)] }) { |y| x + y } # =&gt; "lambda { |y| _ = 40; x = 40;\n (x + y)\n}" # In a separate run of Ruby, where x is not defined... g = eval("lambda { |y| _ = 40; x = 40;\n (x + y)\n}") # =&gt; #&lt;Proc:0xb7cfe9c0@(eval):1&gt; g.call(2) # =&gt; 42 # Changing x does not affect it. x = 7 g.call(3) # =&gt; 43 </code></pre> http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby 3 How do you access the symbol table in Ruby? Jonathan Tran 2009-02-02T15:26:22Z 2009-02-02T18:21:14Z <p>Is there a way to access everything in the symbol table in Ruby? I want to be able to serialize or otherwise save the current state of a run of a program. To do this, it seems I need to be able to iterate over all the variables in scope.</p> http://stackoverflow.com/questions/442772/what-is-this-functional-pattern-called/442952#442952 8 Answer by Jonathan Tran for What is this functional "pattern" called? Jonathan Tran 2009-01-14T13:33:53Z 2009-01-14T21:22:51Z <p>WhatAmIDoing is a <a href="http://en.wikipedia.org/wiki/Higher_order_function" rel="nofollow">higher-order function</a> because it is a function that returns another function.</p> <p>The thing that it returns is a <a href="http://en.wikipedia.org/wiki/Thunk" rel="nofollow">thunk</a> &mdash; a closure created for delayed computation of the actual value. Usually thunks are created to lazily evaluate an expression (and possibly memoize it), but in other cases, a function is simply needed in place of a bare value, as in the case of "<code>constantly 5</code>", which in some languages returns a function that always returns 5.</p> <p>The latter might apply in the example given, because assuming the language evaluates in applicative-order (i.e. evaluates arguments before calling a function), the function serves no other purpose than to turn the values into a function that returns them.</p> <p>WhatAmIDoing is really an implementation of the "constantly" function I was describing. But in general, you don't have to return just <code>args</code> in the inner function. You could return "<code>ackermann(args)</code>", which could take a long time, as in...</p> <pre><code>function WhatAmIDoing2(args...) return function() return ackermann(args) end end </code></pre> <p>But WhatAmIDoing2 would return immediately because evaluation of the ackermann function would be suspended in a <a href="http://en.wikipedia.org/wiki/Closure_(computer_science)" rel="nofollow">closure</a>. (Yes, even in a call-by-value language.)</p> http://stackoverflow.com/questions/165170/in-ruby-on-rails-how-do-i-format-a-date-with-the-th-suffix-as-in-sun-oct-5t 18 In Ruby on Rails, how do I format a date with the "th" suffix, as in, "Sun Oct 5th"? Jonathan Tran 2008-10-03T00:12:07Z 2009-01-11T16:10:30Z <p>I want to display dates in the format: short day of week, short month, day of month without leading zero but including "th", "st", "nd", or "rd" suffix.</p> <p>For example, the day this question was asked would display "Thu Oct 2nd".</p> <p>I'm using Ruby 1.8.7, and <a href="http://www.ruby-doc.org/core-1.8.7/classes/Time.html#M000139" rel="nofollow">Time.strftime</a> just doesn't seem to do this. I'd prefer a standard library if one exists.</p> http://stackoverflow.com/questions/143925/how-do-you-run-a-single-test-spec-file-in-rspec 2 How do you run a single test/spec file in RSpec? Jonathan Tran 2008-09-27T16:11:52Z 2009-01-11T06:22:07Z <p>I want to be able to run a single spec file's tests &mdash; for the one file I'm editing, for example. <code>rake spec</code> executes all the specs. My project is not a Rails project, so <code>rake spec:doc</code> doesn't work.</p> <p>Don't know if this matters, but here is my directory structure.</p> <pre><code>./Rakefile ./lib ./lib/cushion.rb ./lib/cushion ./lib/cushion/doc.rb ./lib/cushion/db.rb ./spec ./spec/spec.opts ./spec/spec_helper.rb ./spec/db_spec.rb </code></pre> http://stackoverflow.com/questions/356835/working-with-divs-css/356877#356877 1 Answer by Jonathan Tran for Working with DIV's & CSS Jonathan Tran 2008-12-10T17:26:51Z 2008-12-10T18:39:06Z <p><strong>Add <code>overflow: auto; zoom: 1.0;</code> to the 2nd div</strong></p> <p>This is different (and in some sense closer to what was asked) than putting <code>float: left;</code> on the 2nd div because it preserves the width of the 2nd div expanding as far as possible to the right without hard-coding width values. <code>zoom: 1.0;</code> is needed to give the element layout in IE.</p> <pre><code>&lt;div style="border: solid 1px navy; float: left;"&gt; &lt;ul&gt; &lt;li&gt;Item 1&lt;/li&gt; &lt;li&gt;Item 2&lt;/li&gt; &lt;li&gt;Item 3&lt;/li&gt; &lt;li&gt;Item 4&lt;/li&gt; &lt;li&gt;Item 5&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="background-color: blue; overflow: auto; zoom: 1.0;"&gt;&lt;p&gt;Some Text&lt;/p&gt;&lt;p&gt;Another paragraph&lt;/p&gt;&lt;/div&gt; </code></pre> http://stackoverflow.com/questions/354739/why-should-i-use-a-container-div-in-html/354752#354752 12 Answer by Jonathan Tran for Why should I use a container div in HTML? Jonathan Tran 2008-12-10T00:40:29Z 2008-12-10T00:47:23Z <p>The container div, and sometimes content div, are almost always used to allow for more sophisticated CSS styling. The body tag is special in some ways. Browsers don't treat it like a normal div; its position and dimensions are tied to the browser window.</p> <p>But a container div is just a div and you can style it with margins and borders. You can give it a fixed width, and you can center it with <code>margin-left: auto; margin-right: auto</code>.</p> <p>Plus, content, like a copyright notice for example, can go on the outside of the container div, but it can't go on the outside of the body, allowing for content on the outside of a border.</p> http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350692#350692 5 Answer by Jonathan Tran for What is hard in Scheme but easy in Java? Jonathan Tran 2008-12-08T20:02:54Z 2008-12-08T20:02:54Z <p><strong>Making apps that run in a web browser.</strong></p> <p>Most people have the JRE already installed, so you can run Java code in someone's browser (the client-side), complete with JRE libraries. To run Scheme code, you have to use a Scheme interpreter written in JavaScript. JavaScript has fewer permissions because it is sanboxed more strictly. Any libraries must be included explicitly.</p> http://stackoverflow.com/questions/322715/when-to-use-linkedlist-over-arraylist/322742#322742 28 Answer by Jonathan Tran for When to use LinkedList<> over ArrayList<>? Jonathan Tran 2008-11-27T01:49:42Z 2008-11-27T14:10:58Z <p>LinkedList and ArrayList are two different implementations of the List interface. LinkedList implements it with a doubly-linked list. ArrayList implements it with a dynamically resizing array.</p> <p>As with standard linked list and array operations, the various methods will have different algorithmic runtimes.</p> <p>For LinkedList</p> <ul> <li>get is O(n)</li> <li>add is O(1)</li> <li>remove is O(n)</li> <li>Iterator.remove is O(1)</li> </ul> <p>For ArrayList</p> <ul> <li>get is O(1)</li> <li>add is O(1) amortized, but O(n) worst-case since the array must be resized and copied</li> <li>remove is O(n)</li> </ul> <p>LinkedList allows for constant-time insertions or removals, but only sequential access of elements. In other words, you can walk the list forwards or backwards, but grabbing an element in the middle takes time proportional to the size of the list.</p> <p>ArrayLists, on the other hand, allow random access, so you can grab any element in constant time. But adding or removing from anywhere but the end requires shifting all the latter elements over, either to make an opening or fill the gap. Also, if you add more elements than the capacity of the underlying array, a new array (twice the size) is allocated, and the old array is copied to the new one, so adding to an ArrayList is O(n) in the worst case but constant on average.</p> <p>So depending on the operations you intend to do, you should choose the implementations accordingly. Iterating over either kind of List is practically equally cheap. (Iterating over an ArrayList is technically faster, but unless you're doing something really performance-sensitive, you shouldn't worry about this -- they're both constants.)</p> <p>Also, if you have large lists, keep in mind that memory usage is also different. Each element of a LinkedList has more overhead since pointers to the next and previous elements are also stored. ArrayLists don't have this overhead. However, ArrayLists take up as much memory as is allocated for the capacity, regardless of whether elements have actually been added.</p> <p>The default initial capacity of an ArrayList is pretty small (10 from Java 1.4 - 6). But since the underlying implementation is an array, the array must be resized if you add a lot of elements. To avoid the high cost of resizing when you know you're going to add a lot of elements, construct the ArrayList with a higher initial capacity.</p> <p>It's worth noting that <strong>Vector</strong> also implements the List interface and is almost identical to ArrayList. The difference is that Vector is synchronized, so it is thread-safe. Because of this, it also slightly slower than ArrayList. So as far as I understand, most Java programmers avoid Vector in favor of ArrayList since they will probably synchronize explicitly anyway if they care about that.</p> http://stackoverflow.com/questions/141650/how-do-you-make-a-generic-memoize-function-in-haskell 8 How do you make a generic memoize function in Haskell? Jonathan Tran 2008-09-26T20:08:49Z 2008-11-21T12:20:03Z <p>I've seen <a href="http://stackoverflow.com/questions/129877/how-do-i-write-a-generic-memoize-function">the other post about this</a>, but is there a clean way of doing this in Haskell?</p> <p>As a 2nd part, can it also be done without making the function monadic?</p> http://stackoverflow.com/questions/218190/is-functional-to-relational-mapping-easier-than-object-to-relational/219446#219446 2 Answer by Jonathan Tran for Is Functional to Relational mapping easier than Object to Relational? Jonathan Tran 2008-10-20T18:46:34Z 2008-10-20T18:46:34Z <p>I haven't done functional-relational mapping, per s&eacute;, but I have used functional programming techniques to speed up access to an RDBMS.</p> <p>It's quite common to start with a dataset, do some complex computation on it, and store the results, where the results are a subset of the original with additional values, for example. The imperative approach dictates that you store your initial dataset with extra NULL columns, do your computation, then update the records with the computed values.</p> <p>Seems reasonable. But the problem with that is it can get very slow. If your computation requires another SQL statement besides the update query itself, or even needs to be done in application code, you literally have to (re-)search for the records that you are changing after the computation to store your results in the right rows.</p> <p>You can get around this by simply creating a new table for results. This way, you can just always insert instead of update. You end up having another table, duplicating the keys, but you no longer need to waste space on columns storing NULL -- you only store what you have. You then join your results in your final select.</p> <p>I (ab)used an RDBMS this way and ended up writing SQL statements that looked mostly like this...</p> <pre><code>create table temp_foo_1 as select ...; create table temp_foo_2 as select ...; ... create table foo_results as select * from temp_foo_n inner join temp_foo_1 ... inner join temp_foo_2 ...; </code></pre> <p>What this is essentially doing is creating a bunch of immutable bindings. The nice thing, though, is you can work on entire sets at once. Kind of reminds you of languages that let you work with matrices, like Matlab.</p> <p>I imagine this would also allow for parallelism much easier.</p> <p>An extra perk is that types of columns for tables created this way don't have to be specified because they are inferred from the columns they're selected from.</p> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212131#212131 10 Answer by Jonathan Tran for Hidden features of Haskell Jonathan Tran 2008-10-17T13:34:56Z 2008-10-17T14:56:24Z <p><strong><code>seq</code> and <code>($!)</code> <a href="http://users.aber.ac.uk/afc/stricthaskell.html#seq" rel="nofollow">only evaluate</a> enough to check that something is not bottom.</strong></p> <p>The following program will only print "there".</p> <pre><code>main = print "hi " `seq` print "there" </code></pre> <p>For those unfamiliar with Haskell, Haskell is non-strict in general, meaning that an argument to a function is only evaluated if it is needed.</p> <p>For example, the following prints "ignored" and terminates with success.</p> <pre><code>main = foo (error "explode!") where foo _ = print "ignored" </code></pre> <p><code>seq</code> is known to change that behavior by evaluating to bottom if its first argument is bottom.</p> <p>For example:</p> <pre><code>main = error "first" `seq` print "impossible to print" </code></pre> <p>... or equivalently, without infix ...</p> <pre><code>main = seq (error "first") (print "impossible to print") </code></pre> <p>... will blow up with an error on "first". It will never print "impossible to print".</p> <p>So it might be a little surprising that even though <code>seq</code> is strict, it won't evaluate something the way eager languages evaluate. In particular, it won't try to force all the positive integers in the following program. Instead, it will check that <code>[1..]</code> isn't bottom (which can be found immediately), print "done", and exit.</p> <pre><code>main = [1..] `seq` print "done" </code></pre> http://stackoverflow.com/questions/211216/hidden-features-of-haskell/212014#212014 12 Answer by Jonathan Tran for Hidden features of Haskell Jonathan Tran 2008-10-17T13:00:04Z 2008-10-17T13:00:04Z <p><strong>Optional Layout</strong></p> <p>You can use explicit braces and semicolons instead of whitespace (aka layout) to delimit blocks.</p> <pre><code>let { x = 40; y = 2 } in x + y </code></pre> <p>... or equivalently...</p> <pre><code>let { x = 40; y = 2 } in x + y </code></pre> <p>... instead of ...</p> <pre><code>let x = 40 y = 2 in x + y </code></pre> <p>Because layout is not required, Haskell programs can be straightforwardly produced by other programs.</p> http://stackoverflow.com/questions/193053/what-are-all-the-programming-paradigms/199684#199684 2 Answer by Jonathan Tran for What are all the Programming Paradigms? Jonathan Tran 2008-10-14T01:13:23Z 2008-10-14T01:31:36Z <p><strong>Aspect-Oriented Programming</strong> is most definitely a programing paradigm. It is actually used all the time without people even realizing it. It can be done in any language kind of like the way you can use object-oriented programming in a language like C that doesn't have any direct support for it.</p> <p>Most people only think of AspectJ when they hear about AOP, but that's just one popular language/implementation. AspectJ feels like an add-on because it simply adds <em>more</em> AOP features on top of an otherwise existing language. That says nothing for the paradigm itself.</p> <p>AOP is all about separation of concerns. Encapsulation, modularization, and the ability to split blocks of code into functions -- some of the most fundamental concepts in programming -- are all a part of aspect-oriented programming. To do true AOP though, you go even further, and separate concerns at the statement level. Pointcuts are yet another feature designed to separate concerns when certain ones necessarily cut across -- or crosscut -- other abstractions.</p> http://stackoverflow.com/questions/188346/do-you-personally-identify-with-your-code/188367#188367 2 Answer by Jonathan Tran for Do you personally identify with your code? Jonathan Tran 2008-10-09T17:42:25Z 2008-10-09T17:42:25Z <p>I think everyone identifies with their code to an extent.</p> <p>As for calling yourself a "<code>&lt;</code>insert here<code>&gt;</code> developer", the only word that is a good thing is "practical".</p> http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/168038#168038 3 Answer by Jonathan Tran for What is the single hardest programming skill or concept you have learned? Jonathan Tran 2008-10-03T17:40:53Z 2008-10-03T20:59:21Z <p>Emacs</p> <pre>me: what's the key binding to commit a file? emacs master: C-x v v emacs master: you can list all the key bindings with C-h b (10 seconds later after I typed my commit message) me: what's the key binding to actually commit now?</pre> http://stackoverflow.com/questions/167904/how-do-you-stop-interim-solutions-from-lasting-forever/168456#168456 2 Answer by Jonathan Tran for How do you stop interim solutions from lasting forever? Jonathan Tran 2008-10-03T19:19:18Z 2008-10-03T19:19:18Z <p>Educate whoever is in charge of making the final decision why the hacky way of doing things is bad in the long-run.</p> <ul> <li>Describe the problem in terms they can relate to.</li> <li>Include a graph of cost, productivity, and revenue curves.</li> <li>Teach them about <a href="http://forums.construx.com/blogs/stevemcc/archive/2007/11/01/technical-debt-2.aspx" rel="nofollow">technical debt</a>.</li> <li>Regularly refactor if you're pushed forward.</li> <li>Never call it "refactoring" or "going back and cleaning up" in front of non-technical people. Instead, call it "adapting" the system to handle "new features".</li> </ul> <p>Basically, people who don't understand software don't get the concept of revisiting things that already work. The way they look at it, developers are like mechanics who want to keep taking apart and reassembling the entire car every time someone wants to add a feature, which sounds insane to them.</p> <p>It helps to make analogies to everyday things. Explain to them how when you made the interim solution, you made choices that suited building it quickly, as opposed to being stable, maintainable, etc. It's like choosing to build with wood instead of steel because wood is easier to cut, and thus, you could build the interim solution quicker. The wood, however, simply can not support the foundation of a 20-story building.</p> http://stackoverflow.com/questions/167849/what-is-the-single-hardest-programming-skill-or-concept-you-have-learned/167903#167903 25 Answer by Jonathan Tran for What is the single hardest programming skill or concept you have learned? Jonathan Tran 2008-10-03T17:09:38Z 2008-10-03T17:09:38Z <p>For me, it was grasping monads in Haskell.</p> <p>Looking back, part of the reason is because the pattern it embodies is so abstract. Different examples of monads are seemingly completely unrelated.</p> <p>But another part is that you have to already have a pretty deep understanding of so many other (pretty hard) concepts &mdash; higher-order functions, higher-order types, type classes, lazy evaluation &mdash; and integrate them all to grok monads.</p> http://stackoverflow.com/questions/166379/immutable-functional-objects-in-highly-mutable-domain/166706#166706 3 Answer by Jonathan Tran for Immutable functional objects in highly mutable domain Jonathan Tran 2008-10-03T12:59:40Z 2008-10-03T13:33:49Z <p>An MMORPG is <em>already</em> an example of immutability. Since the game is distributed across servers and gamers' systems, there is absolutely not a central "gameworld" object. Thus, any object that gets sent over the wire is immutable &mdash; because it doesn't get changed by the receiver. Instead, a new object or message gets sent as a response, if there is one.</p> <p>I've never written a distributed game so I don't know exactly how they're implemented, but I suspect that updates to objects are either computed locally or sent as diffs over the wire.</p> <p>For example, you're playing Command &amp; Conquer. Your mammoth tank is sitting in ready mode guarding your base. Your opponent approaches with a light tank to explore your base. Your mammoth tank shoots and hits your opponent's tank, causing damage.</p> <p>This game is pretty simple, so I suspect a lot is computed locally whenever possible. Assume the two players' computers are initially in sync in terms of game state. Then your opponent clicks to move his light tank into your base. A message (immutable) is sent to you over the wire. Since the algorithm to move a tank is (probably) deterministic, your copy of Command &amp; Conquer can move your opponent's tank on your screen, updating your game state (could be immutable or mutable). When the light tank comes in range of your mammoth tank, your tank fires. A random value is generated on the server (in this case, one computer is chosen arbitrarily as the server) to determine whether the shot hits your opponent or not. Assuming the tank was hit and an update to your opponent's tank must be made, only the diff &mdash; the fact that the tank's new armor level has decreased to 22% &mdash; is sent over the wire to sync the two players' games. This message is immutable.</p> <p>Whether the object on either player's computer representing the tank is mutable or immutable is irrelevant; it can be implemented either way. Each player does not directly change the state of other gamers' game.</p> http://stackoverflow.com/questions/148792/floating-a-new-programming-language/150832#150832 1 Answer by Jonathan Tran for Floating a New Programming Language Jonathan Tran 2008-09-29T21:37:23Z 2008-09-29T21:37:23Z <p>If you're more concerned with getting people to adopt your language, think of it as new technology. I'm reminded of a quote from <a href="http://arcfn.com/2008/07/why-your-favorite-language-is-unpopular.html" rel="nofollow">Why Your Favorite Language Is Unpopular</a> on arcfn:</p> <blockquote>New technologies aren’t adopted because they are great, new, and disruptive; they are adopted only if the user’s crisis solved by the technology is greater than the perceived pain of adoption.</blockquote> http://stackoverflow.com/questions/148792/floating-a-new-programming-language/149751#149751 6 Answer by Jonathan Tran for Floating a New Programming Language Jonathan Tran 2008-09-29T17:25:33Z 2008-09-29T17:25:33Z <p>Read Paul Graham's essays, especially <a href="http://www.paulgraham.com/popular.html" rel="nofollow">Being Popular</a>.</p> http://stackoverflow.com/questions/1497191/what-are-the-essentials-that-every-programming-language-must-have/1497199#1497199 Comment by Jonathan Tran on What are the essentials that every programming language must have? Jonathan Tran 2009-09-30T13:55:01Z 2009-09-30T13:55:01Z I think silky is referring to the [Y combinator](<a href="http://en.wikipedia.org/wiki/Y_combinator" rel="nofollow">en.wikipedia.org/wiki/Y_combinator</a>). You can implement recursion without recursion being primitive. http://stackoverflow.com/questions/1497191/what-are-the-essentials-that-every-programming-language-must-have/1497265#1497265 Comment by Jonathan Tran on What are the essentials that every programming language must have? Jonathan Tran 2009-09-30T13:51:25Z 2009-09-30T13:51:25Z ... or NOR. Both NAND and NOR are universal in this way. http://stackoverflow.com/questions/1319891/calculating-the-moving-average-of-a-list/1320541#1320541 Comment by Jonathan Tran on Calculating the Moving Average of a List Jonathan Tran 2009-08-24T20:46:18Z 2009-08-24T20:46:18Z As Daniel said, after the call to each <code>recur</code> returns, there is nothing left to do. The &quot;stack frame&quot; is no longer needed, and the <code>loop</code> variables can be re-bound. <code>recur</code> is a special construct in Clojure; the compiler actually checks that it is in a tail position. http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie Comment by Jonathan Tran on Issue with jQuery $.get in IE Jonathan Tran 2009-05-05T17:24:56Z 2009-05-05T17:24:56Z Can someone give my answer below one more downvote? I'm being serious. Thanks. http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie Comment by Jonathan Tran on Issue with jQuery $.get in IE Jonathan Tran 2009-05-04T22:14:41Z 2009-05-04T22:14:41Z Could have something to do with the content type or other headers being sent back from the server's response. When I tested your JavaScript, I obviously didn't have your server-side code. http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie Comment by Jonathan Tran on Issue with jQuery $.get in IE Jonathan Tran 2009-05-04T21:23:01Z 2009-05-04T21:23:01Z btw, I see my answer is getting downvoted now, but I was half serious. I ran your code on IE 7.0.5730.13 using jQuery 1.3.2, and it works like a charm. Bottom line, the problem is not your code. http://stackoverflow.com/questions/821816/issue-with-jquery-get-in-ie Comment by Jonathan Tran on Issue with jQuery $.get in IE Jonathan Tran 2009-05-04T21:11:09Z 2009-05-04T21:11:09Z Which version of jQuery are you using? http://stackoverflow.com/questions/568337/what-rails-plugins-would-you-like-to-see/634987#634987 Comment by Jonathan Tran on What Rails plugins would you like to see? Jonathan Tran 2009-03-13T21:29:36Z 2009-03-13T21:29:36Z It may work for one-time charges, but I was thinking about something more complicated that can be charged periodically, for example, so I still think there is lots of room for improvement. http://stackoverflow.com/questions/503583/how-do-you-access-the-symbol-table-in-ruby Comment by Jonathan Tran on How do you access the symbol table in Ruby? Jonathan Tran 2009-02-02T22:27:10Z 2009-02-02T22:27:10Z I'm using it for this: <a href="http://stackoverflow.com/questions/199603/how-do-you-stringize-serialize-ruby-code" rel="nofollow" title="how do you stringize serialize ruby code">stackoverflow.com/questions/199603/&hellip;</a> Basically, no one answered my question good enough, so before offering bounty (which would make me lose rep), I thought I'd break it out into this sub-question and figure out the answer myself. http://stackoverflow.com/questions/356835/working-with-divs-css/356872#356872 Comment by Jonathan Tran on Working with DIV's & CSS Jonathan Tran 2008-12-10T18:14:30Z 2008-12-10T18:14:30Z This changes the width of the 2nd div. See other answer for alternative solution: <a href="http://stackoverflow.com/questions/356835/working-with-divs-css#356877" rel="nofollow" title="working with divs css%23356877">stackoverflow.com/questions/356835/&hellip;</a> http://stackoverflow.com/questions/356835/working-with-divs-css/356877#356877 Comment by Jonathan Tran on Working with DIV's & CSS Jonathan Tran 2008-12-10T17:49:17Z 2008-12-10T17:49:17Z Fixed. Now it is. http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java Comment by Jonathan Tran on What is hard in Scheme but easy in Java? Jonathan Tran 2008-12-10T14:52:34Z 2008-12-10T14:52:34Z Claudiu, what can you name? I'm curious also, but there are still so few answers. http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/351097#351097 Comment by Jonathan Tran on What is hard in Scheme but easy in Java? Jonathan Tran 2008-12-10T14:51:02Z 2008-12-10T14:51:02Z Well that's sort of the whole point of the question. It's not asking what one language could theoretically have. If the GUI libraries for Scheme exist but are immature or somehow hard to use relative to the Java ones, then I'd say that counts. http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java/350692#350692 Comment by Jonathan Tran on What is hard in Scheme but easy in Java? Jonathan Tran 2008-12-09T19:30:54Z 2008-12-09T19:30:54Z I stand corrected. Should I remove my answer then? I'm really wondering... there's got to be <i>something</i> Java is better at. Right??? What is it? http://stackoverflow.com/questions/350544/what-is-hard-in-scheme-but-easy-in-java Comment by Jonathan Tran on What is hard in Scheme but easy in Java? Jonathan Tran 2008-12-08T21:05:06Z 2008-12-08T21:05:06Z Agreed. Even though &quot;hard&quot; may be subjective, I think people could come up with an objective answer to what's harder in one language over another, given that the difference is significant.