User jes5199 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T10:22:39Z http://stackoverflow.com/feeds/user/13195 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1698335/can-i-use-rspec-mocks-to-stub-out-version-constants 1 Can I use rspec mocks to stub out version constants? jes5199 2009-11-08T23:32:11Z 2009-11-09T00:17:48Z <p>I've got code that only needs to run on a certain version of ActiveRecord (a workaround for a bug on old AR libraries). This code tests the values of ActiveRecord::VERSION constants to see if it needs to be run.</p> <p>Is there a way to mock out those constants in rspec so I can test that code path without relying on having the right ActiveRecord gem installed on the test machine?</p> http://stackoverflow.com/questions/1149414/javascript-calculating-number-of-columns-of-a-dynamically-sized-textarea 0 Javascript: calculating number of columns of a dynamically sized textarea jes5199 2009-07-19T07:28:16Z 2009-11-01T16:00:03Z <p>I've got an HTML textarea whose width is set to 100% of the browser window, using CSS. </p> <p>How can I calculate how many columns of text fit within the textarea?</p> http://stackoverflow.com/questions/1605035/how-many-programmers-should-a-startup-have 1 How many programmers should a startup have? [closed] jes5199 2009-10-22T04:35:46Z 2009-10-22T04:40:52Z <p>Imagine that you've got a product that people like, you've just gotten funding and the sky is the limit.</p> <p>How many programmers do you hire?</p> http://stackoverflow.com/questions/1581927/first-order-array-difference-in-ruby/1583164#1583164 2 Answer by jes5199 for First order array difference in Ruby jes5199 2009-10-17T20:46:56Z 2009-10-17T20:46:56Z <p>Minor variation on Jörg W Mittag's:</p> <pre><code>module Enumerable def diff each_cons(2).map{|a,b| b-a} end end </code></pre> http://stackoverflow.com/questions/1522233/jquery-and-selectors/1522303#1522303 4 Answer by jes5199 for jquery and selectors jes5199 2009-10-05T20:46:13Z 2009-10-05T20:46:13Z <p>Click events bubble up. The default click handler on InnerDiv delegates to the click event of its parent. You can override that event and ask it not to bubble up.</p> <pre><code>$("body").click(function() { alert("Hejhej"); }); $("#InnerDiv").click(function(e) { e.stopPropagation(); }); </code></pre> http://stackoverflow.com/questions/1011167/what-are-common-ui-misconceptions-and-annoyances/1022068#1022068 2 Answer by jes5199 for What are common UI misconceptions and annoyances? jes5199 2009-06-20T17:24:41Z 2009-09-27T13:33:04Z <p>Menus that only appear when you hover the mouse.</p> <p>There's an increasingly common type of web interface where some of the actions only appear if you put your mouse in the right place and then they disappear if you don't keep your pointer within the walls of the element. It makes your UI into a test of hand-eye coordination.</p> http://stackoverflow.com/questions/1309880/why-cant-webmin-cant-open-files-in-directories-that-are-not-world-executable 0 Why can't webmin can't open files in directories that are not world executable? jes5199 2009-08-21T02:53:29Z 2009-09-02T00:06:06Z <p>I'm using an open source Perl package named "webmin" on several servers. It's mostly Perl on the inside.</p> <p>I found a weird behavior on a new 64-bit server: files were getting created empty.</p> <p>I've traced it down to a "Permission Denied" error in Perl's builtin function <code>open</code> which is pretty unusual, since the application is running as root. I had perl output the $&lt; and $> variables, and they both claim I'm user 0</p> <p>This bug seems to affect files in directories where the <em>directory</em> is not world executable (<code>chmod o-x $DIR</code>) ... and it only happens deep inside of webmin, I can't reproduce it on its own.</p> <p>Does this sound even remotely familiar to anyone?</p> http://stackoverflow.com/questions/1297481/what-does-rem-stand-for-in-basic 4 What does REM stand for in BASIC? jes5199 2009-08-19T02:07:40Z 2009-08-19T03:12:44Z <p>Here's a blast from the past: what does "REM", the comment marker, stand for in BASIC? What's the origin of this non-obvious term?</p> http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process 7 Peak memory usage of a linux/unix process jes5199 2009-04-21T20:55:25Z 2009-08-17T07:58:52Z <p>Is there a tool that will run a command-line and report how much RAM was used total?</p> <p>I'm imagining something analogous to /usr/bin/time</p> http://stackoverflow.com/questions/1230084/how-to-have-git-log-show-filenames-like-svn-log-v 2 How to have git log show filenames like svn log -v jes5199 2009-08-04T21:46:36Z 2009-08-04T21:48:33Z <p>SVN's log has a "-v" mode that outputs filenames of files changed in each commit, like so:</p> <pre>jes5199$ svn log -v ------------------------------------------------------------------------ r1 | jes5199 | 2007-01-03 14:39:41 -0800 (Wed, 03 Jan 2007) | 1 line Changed paths: A /AUTHORS A /COPYING A /ChangeLog A /EVOLUTION A /INSTALL A /MacOSX </pre> <p>Is there a quick way to get a list of changed files in each commit in git?</p> http://stackoverflow.com/questions/1121818/jquery-is-there-a-way-to-do-flex-style-data-bindings 2 JQuery: Is there a way to do Flex-style data bindings? jes5199 2009-07-13T20:22:51Z 2009-07-20T18:14:07Z <p>Several new UI/Query frameworks allow you to "bind" UI elements to data structures. When data in the structure is updated, the change propagates to the UI element, automatically. Some examples of this include the [Bindable] tag in Adobe Flex, and the "Bindable LINQ" extension for .NET .</p> <p>Is anyone doing this in JQuery?</p> http://stackoverflow.com/questions/285717/a-cron-job-for-rails-best-practices 10 A cron job for rails: best practices? jes5199 2008-11-12T22:59:50Z 2009-06-15T11:40:50Z <p>What's the best way to run scheduled tasks in a Rails environment? Script/runner? Rake?</p> http://stackoverflow.com/questions/112613/git-instaweb-gives-403-forbidden-no-projects-found 5 git instaweb gives 403 Forbidden - No projects found jes5199 2008-09-22T00:06:38Z 2009-04-08T12:56:13Z <p>running <code>git instaweb </code> in my repository opens a page that says "403 Forbidden - No projects found". What am I missing?</p> http://stackoverflow.com/questions/597692/web-history-early-examples-of-collapsing-and-expanding-content-in-an-essay 1 Web History: Early examples of collapsing and expanding content in an essay jes5199 2009-02-28T07:33:47Z 2009-02-28T20:25:04Z <p>I vaguely remember that in the early days of the browser, one notion of what hypertext could be used for was a "zoom in" detail for academic essays: if you wanted a brief overview, you'd take the outermost level, and if you wanted to delve, you would click something and more sentences would appear.</p> <p>I know this sounds trivial and now, but in the mid-1990s it was thought-provoking. Has anyone seen any web fossils like this lying around, ideally still live on the web somewhere?</p> http://stackoverflow.com/questions/76328/is-there-a-way-to-emulate-php5s-call-magic-method-in-php4 2 Is there a way to emulate PHP5's __call() magic method in PHP4 ? jes5199 2008-09-16T20:03:18Z 2009-01-08T08:59:06Z <p>PHP5 has a "magic method" <code>__call()</code>that can be defined on any class that is invoked when an undefined method is called -- it is roughly equivalent to Ruby's <code>method_missing</code> or Perl's <code>AUTOLOAD</code>. Is it possible to do something like this in older versions of PHP?</p> http://stackoverflow.com/questions/415433/sometimes-git-will-track-all-remote-git-branches-as-local-branches-without-me-ask 3 Sometimes git will track all remote git branches as local branches without me asking to. What happened? jes5199 2009-01-06T04:12:20Z 2009-01-06T05:14:07Z <p>sometimes, git will spontaneously (during some, but not all, "pull" or "clone" operations) copy all of the remote branches of a repository into my local repository (and even set them all up to track the corresponding remote branches correctly). What causes this? Is there a way I can do this on purpose?</p> http://stackoverflow.com/questions/44965/what-is-a-monad/364072#364072 1 Answer by jes5199 for What is a monad? jes5199 2008-12-12T20:36:57Z 2008-12-12T20:36:57Z <p>I've been thinking of Monads in a different way, lately. I've been thinking of them as abstracting out <i>execution order</i> in a mathematical way, which makes new kinds of polymorphism possible.</p> <p>If you're using an imperative language, and you write some expressions in order, the code ALWAYS runs exactly in that order.</p> <p>And in the simple case, when you use a monad, it feels the same -- you define a list of expressions that happen in order. Except that, depending on which monad you use, your code might run in order (like in IO monad), in parallel over several items at once (like in the List monad), it might halt partway through (like in the Maybe monad), it might pause partway through to be resumed later (like in a Resumption monad), it might rewind and start from the beginning (like in a Transaction monad), or it might rewind partway to try other options (like in a Logic monad).</p> <p>And because monads are polymorphic, it's possible to run the same code in different monads, depending on your needs.</p> <p>Plus, in some cases, it's possible to combine monads together (with monad transformers) to get multiple features at the same time.</p> http://stackoverflow.com/questions/202723/coding-in-other-spoken-languages/293063#293063 10 Answer by jes5199 for Coding in Other (Spoken) Languages jes5199 2008-11-15T21:19:45Z 2008-11-15T21:19:45Z <p>I'm having trouble finding references, but I'm reminded of three stories.</p> <p>A Lisp hacker defends meaningless functions like "cdr" and "car" by comparing them to programming in your non-native language: <a href="http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg01171.html" rel="nofollow">http://people.csail.mit.edu/gregs/ll1-discuss-archive-html/msg01171.html</a></p> <p>When Yukihiro Matsumoto ("Matz") started developing Ruby, he used english keywords <i>even though he was writing all the documentation in Japanese!</i>. There was no English documentation for Ruby for a couple years, and very few Americans using the language. But now it's a world-class language, and it the fact that it was born in Japan is only of historical interest. If the language had been using keywords in hiragana, it would have had a much more difficult time gaining popularity.</p> <p>I read an essay once -- maybe someone else can find it, Google is no help today -- that suggested that translating keywords was misguided because the words aren't actually English-- they're jargon. Not only do (to use the examples above) <i>para</i> and <i>pour</i> not quite have the exact meaning that <i>for</i> has in English, to non-programmers the phrase "for loop" is jibberish. Even Americans have to learn a new meaning. So to translate the words's superficial meaning into another language is more like making a cross-language pun rather than actually being helpful.</p> http://stackoverflow.com/questions/117406/which-php-framework-is-closest-to-ruby-on-rails-cakephp-codeigniter/117948#117948 5 Answer by jes5199 for Which PHP framework is closest to Ruby on Rails? CakePHP? CodeIgniter? jes5199 2008-09-22T22:12:55Z 2008-09-22T22:12:55Z <p>CakePHP has one major flaw that I think makes it dramatically less useful as a MVC framework: the Model layer does not use Objects to represent data (which is to say, it does not actually implement the <a href="http://en.wikipedia.org/wiki/Active_record_pattern" rel="nofollow" title="Active record pattern">active record pattern</a>). Because of this, associations like HasMany are less robust, and it's much less obvious how to keep model-specific code from creeping to your Controller layer.</p> <p>Symfony, at least, does not have this problem-- they use a third-party active-record implementation called "Propel"</p> http://stackoverflow.com/questions/112613/git-instaweb-gives-403-forbidden-no-projects-found/112753#112753 8 Answer by jes5199 for git instaweb gives 403 Forbidden - No projects found jes5199 2008-09-22T01:15:37Z 2008-09-22T01:15:37Z <p>looks like the debian install of git sets <code>$projectroot</code> globally in a way that confuses <code>instaweb</code>. I removed the <code>$projectroot</code> line from <code>/etc/gitweb.conf</code> and the error went away.</p> http://stackoverflow.com/questions/76328/is-there-a-way-to-emulate-php5s-call-magic-method-in-php4/112606#112606 2 Answer by jes5199 for Is there a way to emulate PHP5's __call() magic method in PHP4 ? jes5199 2008-09-22T00:02:50Z 2008-09-22T00:02:50Z <p>The most important bit that I was missing was that <code>__call</code> exists in PHP4, but you must enable it on a per-class basis by calling <code>overload()</code>, as seen in <a href="http://us2.php.net/manual/en/function.overload.php" rel="nofollow">php docs here</a> . Unfortunately, the __call() function signatures are different between PHP4 and PHP5, and there does not seem to be a way to make an implementation that will run in both.</p> http://stackoverflow.com/questions/1627679/whats-the-most-efficient-way-get-the-first-day-of-the-current-month/1627694#1627694 Comment by jes5199 on What's the most efficient way get the first day of the current month? jes5199 2009-10-26T22:46:45Z 2009-10-26T22:46:45Z be careful with leading zeros in unquoted integers: that's octal notation. It'll work fine until you type 08 or 09. http://stackoverflow.com/questions/1605035/how-many-programmers-should-a-startup-have/1605044#1605044 Comment by jes5199 on How many programmers should a startup have? jes5199 2009-10-22T04:38:59Z 2009-10-22T04:38:59Z nice! smfhudsafaiuhfdaf; http://stackoverflow.com/questions/1581927/first-order-array-difference-in-ruby/1583164#1583164 Comment by jes5199 on First order array difference in Ruby jes5199 2009-10-19T16:11:22Z 2009-10-19T16:11:22Z I think it works in 1.8.7 but not 1.8.6 http://stackoverflow.com/questions/1522233/jquery-and-selectors Comment by jes5199 on jquery and selectors jes5199 2009-10-07T15:41:03Z 2009-10-07T15:41:03Z I think this could use the tag &quot;events&quot; http://stackoverflow.com/questions/1522233/jquery-and-selectors/1522303#1522303 Comment by jes5199 on jquery and selectors jes5199 2009-10-05T21:52:23Z 2009-10-05T21:52:23Z yeah, jQuery's documentation on these methods was really hard to find. http://stackoverflow.com/questions/850341/workarounds-for-javascript-parseint-octal-bug/850679#850679 Comment by jes5199 on Workarounds for JavaScript parseInt octal bug jes5199 2009-10-03T22:53:22Z 2009-10-03T22:53:22Z yes, that would be naughty -- it would break other code that relied on the standard behavior. http://stackoverflow.com/questions/1309880/why-cant-webmin-cant-open-files-in-directories-that-are-not-world-executable/1309887#1309887 Comment by jes5199 on Why can't webmin can't open files in directories that are not world executable? jes5199 2009-08-21T03:07:37Z 2009-08-21T03:07:37Z no acls on the directory. not SELinux. I should only be affected by the <i>user</i> execute bit, if I'm the directory owner (I am). And this works just fine on a 32 bit server http://stackoverflow.com/questions/1309880/why-cant-webmin-cant-open-files-in-directories-that-are-not-world-executable/1309905#1309905 Comment by jes5199 on Why can't webmin can't open files in directories that are not world executable? jes5199 2009-08-21T03:06:13Z 2009-08-21T03:06:13Z I had perl output the $&lt; and $&gt; variables, and they both claim I'm user 0 http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164535#164535 Comment by jes5199 on What real life bad habits has programming given you? jes5199 2009-08-05T18:49:02Z 2009-08-05T18:49:02Z @Bobby Jack Jon why don't you just use unicode (something like this ☺) http://stackoverflow.com/questions/1149414/javascript-calculating-number-of-columns-of-a-dynamically-sized-textarea/1151663#1151663 Comment by jes5199 on Javascript: calculating number of columns of a dynamically sized textarea jes5199 2009-07-20T15:36:45Z 2009-07-20T15:36:45Z not helpful - &quot;cols&quot; returns &quot;-1&quot; if the textarea is dynamically sized http://stackoverflow.com/questions/1149414/javascript-calculating-number-of-columns-of-a-dynamically-sized-textarea/1149423#1149423 Comment by jes5199 on Javascript: calculating number of columns of a dynamically sized textarea jes5199 2009-07-19T19:28:23Z 2009-07-19T19:28:23Z not helpful - the &quot;cols&quot; attr always returns &quot;-1&quot; for dynamically sized textareas http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774611#774611 Comment by jes5199 on Peak memory usage of a linux/unix process jes5199 2009-04-21T21:26:55Z 2009-04-21T21:26:55Z I seem to always get zeros with this, even for large commands http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774607#774607 Comment by jes5199 on Peak memory usage of a linux/unix process jes5199 2009-04-21T21:25:46Z 2009-04-21T21:25:46Z I seem to always get zeros with this, even for large commands http://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774601#774601 Comment by jes5199 on Peak memory usage of a linux/unix process jes5199 2009-04-21T21:25:09Z 2009-04-21T21:25:09Z I seem to always get zero, even for large commands. http://stackoverflow.com/questions/415433/sometimes-git-will-track-all-remote-git-branches-as-local-branches-without-me-ask/415542#415542 Comment by jes5199 on Sometimes git will track all remote git branches as local branches without me asking to. What happened? jes5199 2009-01-06T20:14:05Z 2009-01-06T20:14:05Z Yes, that is exactly what I am suggesting.