User Head - Stack Overflowmost recent 30 from stackoverflow.com2009-12-19T22:17:32Zhttp://stackoverflow.com/feeds/user/30951http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/552360/git-push-email-notification4git push email notificationHead2009-02-16T05:46:07Z2009-11-13T11:38:21Z
<p>How do I configure the appropriate git hook to send a summary email whenever a set of changes is pushed to the upstream repository?</p>
http://stackoverflow.com/questions/495345/git-removing-selected-commits-from-repository/843905#8439050Answer by Head for Git: removing selected commits from repositoryHead2009-05-09T19:49:26Z2009-05-09T23:41:07Z<p>You can non-interactively remove B and C in your example with:</p>
<pre><code>git rebase --onto HEAD~5 HEAD~3 HEAD
</code></pre>
<p>or symbolically,</p>
<pre><code>git rebase --onto A C HEAD
</code></pre>
http://stackoverflow.com/questions/133925/javascript-post-request-like-a-form-submit/475112#4751125Answer by Head for Javascript Post Request like a Form SubmitHead2009-01-23T23:53:02Z2009-01-23T23:53:02Z<p>If you have Prototype installed, you can tighten up the code to generate and submit the hidden form like this:</p>
<pre><code> var form = new Element('form',
{method: 'post', action: 'http://example.com/'});
form.insert(new Element('input',
{name: 'q', value: 'a', type: 'hidden'}));
$(document.body).insert(form);
form.submit();
</code></pre>
http://stackoverflow.com/questions/251418/who-are-good-web-hosts-for-ruby-on-rails-projects/440385#4403850Answer by Head for Who are good web hosts for Ruby on Rails projects?Head2009-01-13T19:22:02Z2009-01-13T19:22:02Z<p>I did fairly extensive research recently. My requirements were to be able to handle multiple domains, some rails, some PHP and be able to give my friends their own space. Also, customer service is important to me so I tried to find companies who were responsive in my questions. I think each of my final 3 would be good but I settled on the first choice.</p>
<ol>
<li><p>Rails Playground (RailsPlayground.com) - good pricing, Rails expertise, Passenger (bonus free account on gitrepo.com which is in beta), good VPS plans, 2 data centers</p></li>
<li><p>OCS Solutions (ocssolutions.com) - good pricing, seems to be the best shared hosting option, Passenger (bonus free account on unfuddle), 3 data centers</p></li>
<li><p>Hosting Rails (hostingrails.com) - very good pricing (cheapest shared hosting plan I found at a "good" company), Passenger</p></li>
</ol>
<p>I think you'll be fine at any of these 3 places but I ended up choosing a VPS plan with Rails Playground and have been very happy so far.</p>
http://stackoverflow.com/questions/430853/ruby-on-rails-running-on-a-vps-slice/440322#4403221Answer by Head for Ruby on Rails running on a vps sliceHead2009-01-13T19:06:48Z2009-01-13T19:06:48Z<p>I suggest Passenger for it's simplicity and smallish footprint. I have that on my VPS with several domains (256MB VPS on RailsPlayground) and no problems so far. Also, the Starling/Workling combination works pretty well or you could even just use the spawn plugin if your site isn't huge (it's dead simple).</p>
http://stackoverflow.com/questions/109781/uniq-by-object-attribute-in-ruby/231549#2315491Answer by Head for Uniq by object attribute in RubyHead2008-10-23T21:11:26Z2008-10-23T21:11:26Z<p>I like jmah's use of a Hash to enforce uniqueness. Here's a couple more ways to skin that cat:</p>
<pre><code>objs.inject({}) {|h,e| h[e.attr]=e; h}.values
</code></pre>
<p>That's a nice 1-liner, but I suspect this might be a little faster:</p>
<pre><code>h = {}
objs.each {|e| h[e.attr]=e}
h.values
</code></pre>
http://stackoverflow.com/questions/962455/how-to-make-a-div-section-clickable/962546#962546Comment by Head on How to make a DIV section clickable?Head2009-06-29T21:52:04Z2009-06-29T21:52:04ZThis is pretty good but it doesn't show the url in the status bar when you hover over it.http://stackoverflow.com/questions/962455/how-to-make-a-div-section-clickable/962532#962532Comment by Head on How to make a DIV section clickable?Head2009-06-29T21:24:43Z2009-06-29T21:24:43ZThis won't work if the div you want to make clickable contains other divs since you can't embed divs inside of <a> tags.http://stackoverflow.com/questions/552360/git-push-email-notification/552362#552362Comment by Head on git push email notificationHead2009-02-16T07:19:14Z2009-02-16T07:19:14ZThanks, if I had more karma I'd upvote your answer. ;-)http://stackoverflow.com/questions/552360/git-push-email-notification/552362#552362Comment by Head on git push email notificationHead2009-02-16T06:50:31Z2009-02-16T06:50:31ZIf I reference that script in my hooks, does the referenced script have to reside on the upstream host or locally?