User jes5199 - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T10:22:39Zhttp://stackoverflow.com/feeds/user/13195http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1698335/can-i-use-rspec-mocks-to-stub-out-version-constants1Can I use rspec mocks to stub out version constants?jes51992009-11-08T23:32:11Z2009-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-textarea0Javascript: calculating number of columns of a dynamically sized textarea jes51992009-07-19T07:28:16Z2009-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-have1How many programmers should a startup have? [closed]jes51992009-10-22T04:35:46Z2009-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#15831642Answer by jes5199 for First order array difference in Rubyjes51992009-10-17T20:46:56Z2009-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#15223034Answer by jes5199 for jquery and selectorsjes51992009-10-05T20:46:13Z2009-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#10220682Answer by jes5199 for What are common UI misconceptions and annoyances?jes51992009-06-20T17:24:41Z2009-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-executable0Why can't webmin can't open files in directories that are not world executable?jes51992009-08-21T02:53:29Z2009-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 $< 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-basic4What does REM stand for in BASIC?jes51992009-08-19T02:07:40Z2009-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-process7Peak memory usage of a linux/unix processjes51992009-04-21T20:55:25Z2009-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-v2How to have git log show filenames like svn log -vjes51992009-08-04T21:46:36Z2009-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-bindings2JQuery: Is there a way to do Flex-style data bindings?jes51992009-07-13T20:22:51Z2009-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-practices10A cron job for rails: best practices?jes51992008-11-12T22:59:50Z2009-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-found5git instaweb gives 403 Forbidden - No projects found jes51992008-09-22T00:06:38Z2009-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-essay1Web History: Early examples of collapsing and expanding content in an essayjes51992009-02-28T07:33:47Z2009-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-php42Is there a way to emulate PHP5's __call() magic method in PHP4 ?jes51992008-09-16T20:03:18Z2009-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-ask3Sometimes git will track all remote git branches as local branches without me asking to. What happened?jes51992009-01-06T04:12:20Z2009-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#3640721Answer by jes5199 for What is a monad?jes51992008-12-12T20:36:57Z2008-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#29306310Answer by jes5199 for Coding in Other (Spoken) Languagesjes51992008-11-15T21:19:45Z2008-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#1179485Answer by jes5199 for Which PHP framework is closest to Ruby on Rails? CakePHP? CodeIgniter?jes51992008-09-22T22:12:55Z2008-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#1127538Answer by jes5199 for git instaweb gives 403 Forbidden - No projects found jes51992008-09-22T01:15:37Z2008-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#1126062Answer by jes5199 for Is there a way to emulate PHP5's __call() magic method in PHP4 ?jes51992008-09-22T00:02:50Z2008-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#1627694Comment by jes5199 on What's the most efficient way get the first day of the current month?jes51992009-10-26T22:46:45Z2009-10-26T22:46:45Zbe 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#1605044Comment by jes5199 on How many programmers should a startup have?jes51992009-10-22T04:38:59Z2009-10-22T04:38:59Znice! smfhudsafaiuhfdaf;http://stackoverflow.com/questions/1581927/first-order-array-difference-in-ruby/1583164#1583164Comment by jes5199 on First order array difference in Rubyjes51992009-10-19T16:11:22Z2009-10-19T16:11:22ZI think it works in 1.8.7 but not 1.8.6http://stackoverflow.com/questions/1522233/jquery-and-selectorsComment by jes5199 on jquery and selectorsjes51992009-10-07T15:41:03Z2009-10-07T15:41:03ZI think this could use the tag "events"http://stackoverflow.com/questions/1522233/jquery-and-selectors/1522303#1522303Comment by jes5199 on jquery and selectorsjes51992009-10-05T21:52:23Z2009-10-05T21:52:23Zyeah, jQuery's documentation on these methods was really hard to find.http://stackoverflow.com/questions/850341/workarounds-for-javascript-parseint-octal-bug/850679#850679Comment by jes5199 on Workarounds for JavaScript parseInt octal bugjes51992009-10-03T22:53:22Z2009-10-03T22:53:22Zyes, 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#1309887Comment by jes5199 on Why can't webmin can't open files in directories that are not world executable?jes51992009-08-21T03:07:37Z2009-08-21T03:07:37Zno 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 serverhttp://stackoverflow.com/questions/1309880/why-cant-webmin-cant-open-files-in-directories-that-are-not-world-executable/1309905#1309905Comment by jes5199 on Why can't webmin can't open files in directories that are not world executable?jes51992009-08-21T03:06:13Z2009-08-21T03:06:13ZI had perl output the $< and $> variables, and they both claim I'm user 0http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164535#164535Comment by jes5199 on What real life bad habits has programming given you?jes51992009-08-05T18:49:02Z2009-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#1151663Comment by jes5199 on Javascript: calculating number of columns of a dynamically sized textarea jes51992009-07-20T15:36:45Z2009-07-20T15:36:45Znot helpful - "cols" returns "-1" if the textarea is dynamically sizedhttp://stackoverflow.com/questions/1149414/javascript-calculating-number-of-columns-of-a-dynamically-sized-textarea/1149423#1149423Comment by jes5199 on Javascript: calculating number of columns of a dynamically sized textarea jes51992009-07-19T19:28:23Z2009-07-19T19:28:23Znot helpful - the "cols" attr always returns "-1" for dynamically sized textareashttp://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774611#774611Comment by jes5199 on Peak memory usage of a linux/unix processjes51992009-04-21T21:26:55Z2009-04-21T21:26:55ZI seem to always get zeros with this, even for large commandshttp://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774607#774607Comment by jes5199 on Peak memory usage of a linux/unix processjes51992009-04-21T21:25:46Z2009-04-21T21:25:46ZI seem to always get zeros with this, even for large commandshttp://stackoverflow.com/questions/774556/peak-memory-usage-of-a-linux-unix-process/774601#774601Comment by jes5199 on Peak memory usage of a linux/unix processjes51992009-04-21T21:25:09Z2009-04-21T21:25:09ZI 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#415542Comment by jes5199 on Sometimes git will track all remote git branches as local branches without me asking to. What happened?jes51992009-01-06T20:14:05Z2009-01-06T20:14:05ZYes, that is exactly what I am suggesting.