User Head - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T22:17:32Z http://stackoverflow.com/feeds/user/30951 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/552360/git-push-email-notification 4 git push email notification Head 2009-02-16T05:46:07Z 2009-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#843905 0 Answer by Head for Git: removing selected commits from repository Head 2009-05-09T19:49:26Z 2009-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#475112 5 Answer by Head for Javascript Post Request like a Form Submit Head 2009-01-23T23:53:02Z 2009-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#440385 0 Answer by Head for Who are good web hosts for Ruby on Rails projects? Head 2009-01-13T19:22:02Z 2009-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#440322 1 Answer by Head for Ruby on Rails running on a vps slice Head 2009-01-13T19:06:48Z 2009-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#231549 1 Answer by Head for Uniq by object attribute in Ruby Head 2008-10-23T21:11:26Z 2008-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#962546 Comment by Head on How to make a DIV section clickable? Head 2009-06-29T21:52:04Z 2009-06-29T21:52:04Z This 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#962532 Comment by Head on How to make a DIV section clickable? Head 2009-06-29T21:24:43Z 2009-06-29T21:24:43Z This won't work if the div you want to make clickable contains other divs since you can't embed divs inside of &lt;a&gt; tags. http://stackoverflow.com/questions/552360/git-push-email-notification/552362#552362 Comment by Head on git push email notification Head 2009-02-16T07:19:14Z 2009-02-16T07:19:14Z Thanks, if I had more karma I'd upvote your answer. ;-) http://stackoverflow.com/questions/552360/git-push-email-notification/552362#552362 Comment by Head on git push email notification Head 2009-02-16T06:50:31Z 2009-02-16T06:50:31Z If I reference that script in my hooks, does the referenced script have to reside on the upstream host or locally?