User kch - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T06:49:17Zhttp://stackoverflow.com/feeds/user/13989http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/342969/how-do-i-get-bash-completion-to-work-with-aliases3How do I get bash completion to work with aliases?kch2008-12-05T05:17:09Z2009-11-25T03:16:28Z
<p>Case in point: </p>
<p>I'm a on mac with bash v3.2.17, I'm using git installed via macports with the bash_completion variant.</p>
<p>When I type <code>git checkout m<tab></code>. for example, I get it completed to <code>master</code>.</p>
<p>However, I've got an alias to <code>git checkout</code>, <code>gco</code>. When I type <code>gco m<tab></code>, I don't get the branch name autocompleted.</p>
<p>Ideally I'd like autocompletion to just magically work for all my aliases. Is it possible? Failing that, I'd like to manually customize it for each alias. So, how do I go about either?</p>
http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what5Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T20:59:39Z2009-11-05T09:35:03Z
<p>More verbosely, I have a module <code>Narf</code>, which provides essential features to a range of classes. Specifically, I want to affect all classes that inherit <code>Enumerable</code>. So I <code>include Narf</code> in <code>Enumerable</code>.</p>
<p><code>Array</code> is a class that includes <code>Enumerable</code> by default. Yet, it is not affected by the late inclusion of <code>Narf</code> in the module.</p>
<p>Interestingly, classes defined after the inclusion get <code>Narf</code> from <code>Enumerable</code>.</p>
<h3>Example:</h3>
<pre><code># This module provides essential features
module Narf
def narf?
puts "(from #{self.class}) ZORT!"
end
end
# I want all Enumerables to be able to Narf
module Enumerable
include Narf
end
# Fjord is an Enumerable defined *after* including Narf in Enumerable
class Fjord
include Enumerable
end
p Enumerable.ancestors # Notice that Narf *is* there
p Fjord.ancestors # Notice that Narf *is* here too
p Array.ancestors # But, grr, not here
# => [Enumerable, Narf]
# => [Fjord, Enumerable, Narf, Object, Kernel]
# => [Array, Enumerable, Object, Kernel]
Fjord.new.narf? # And this will print fine
Array.new.narf? # And this one will raise
# => (from Fjord) ZORT!
# => NoMethodError: undefined method `narf?' for []:Array
</code></pre>
http://stackoverflow.com/questions/1288480/git-how-do-i-merge-between-branches-while-keeping-some-changesets-exclusive-to-o8git: how do I merge between branches while keeping some changesets exclusive to one branch?kch2009-08-17T15:03:39Z2009-11-03T12:29:12Z
<p>There's a special place in hell for people who hardcode absolute paths and database credentials into multiple random places in web applications. Sadly, before they go to hell they're wreaking havoc on Earth. And we have to deal with their code.</p>
<p>I have to perform a few small changes to one of such web applications. I create a new branch <code>features</code>, and perform a global find & replace to update the paths and credentials to my local environment. I commit that. I also tag this as <code>local</code>.</p>
<p>I merrily leap into perilous hacking penitence, and after a perplexing hundred patches, I want to merge my <code>features</code> changes into the <code>master</code> branch, but I do not want the one <code>local</code> commit to be merged.</p>
<p>Onwards, I'll be merging back and forth between <code>master</code> and <code>features</code>, and I'd like <code>local</code> to stay put in <code>features</code>, and never ever show up in <code>master</code>.</p>
<p>Ideally, I'd like all this to happen magically, with as little funny parameters and whatnot as possible.</p>
<p>Is there a simple obvious way to do it that I'm missing?</p>
<p>I can think of a couple, but they all require me to <strong>remember</strong> that I don't want that commit. And that's definitely not my forte. Especially with such poorly hacked programs.</p>
<p>Failing that, I'm interested in more convoluted, manual-ish ways to handle the situation.</p>
http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655648#16556480Answer by kch for Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:11:49Z2009-11-01T00:36:46Z<p>In writing my question, inevitably, I came across an answer. Here's what I came up with. Let me know if I missed an obvious, much simpler solution.</p>
<p>The problem seems to be that a module inclusion flattens the ancestors of the included module, and includes <em>that</em>. Thus, method lookup is not fully dynamic, the ancestor chain of included modules is never inspected.</p>
<p>In practice, <code>Array</code> knows <code>Enumerable</code> is an ancestor, but it doesn't care about what's currently included in <code>Enumerable</code>.</p>
<p>The good thing is that you can <code>include</code> modules again, and it'll recompute the module ancestor chain, and include the entire thing. So, after defining and including <code>Narf</code>, you can reopen <code>Array</code> and include <code>Enumerable</code> again, and it'll get <code>Narf</code> too.</p>
<pre><code>class Array
include Enumerable
end
p Array.ancestors
# => [Array, Enumerable, Narf, Object, Kernel]
</code></pre>
<p>Now let's generalize that:</p>
<pre><code># Narf here again just to make this example self-contained
module Narf
def narf?
puts "(from #{self.class}) ZORT!"
end
end
# THIS IS THE IMPORTANT BIT
# Imbue provices the magic we need
class Module
def imbue m
include m
# now that self includes m, find classes that previously
# included self and include it again, so as to cause them
# to also include m
ObjectSpace.each_object(Class) do |k|
k.send :include, self if k.include? self
end
end
end
# imbue will force Narf down on every existing Enumerable
module Enumerable
imbue Narf
end
# Behold!
p Array.ancestors
Array.new.narf?
# => [Array, Enumerable, Narf, Object, Kernel]
# => (from Array) ZORT!
</code></pre>
<p>Now on <a href="http://github.com/kch/imbue" rel="nofollow">GitHub</a> and <a href="http://gemcutter.org/gems/imbue" rel="nofollow">Gemcutter</a> for extra fun.</p>
http://stackoverflow.com/questions/790626/ruby-can-i-have-something-like-classinherited-thats-triggered-only-after-the-c0ruby: can I have something like Class#inherited that's triggered only after the class definition?kch2009-04-26T10:47:45Z2009-10-04T13:34:10Z
<p><code>#inherited</code> is called right after the <code>class Foo</code> statement. I want something that'll run only after the <code>end</code> statement that closes the class declaration.</p>
<p>Here's some code to exemplify what I need:</p>
<pre><code>class Class
def inherited m
puts "In #inherited for #{m}"
end
end
class Foo
puts "In Foo"
end
puts "I really wanted to have #inherited tiggered here."
### Output:
# In #inherited for Foo
# In Foo
# I really wanted to have #inherited tiggered here.
</code></pre>
<p>Does anything like that exist? Can it be created? Am I totally out of luck?</p>
http://stackoverflow.com/questions/151030/how-do-i-call-controller-view-methods-from-the-console-in-rails10How do I call controller/view methods from the console in Rails?kch2008-09-29T22:36:21Z2009-09-17T01:40:23Z
<p>When I load <code>script/console</code>, some times I want play with the output of a controller or a view helper method.</p>
<p>Are there ways to:</p>
<ul>
<li>simulate a request?</li>
<li>call methods from a controller instance on said request?</li>
<li>test helper methods, either via said controller instance or another way?</li>
</ul>
http://stackoverflow.com/questions/184178/ruby-how-to-post-a-file-via-http-as-multipart-form-data9Ruby: How to post a file via HTTP as multipart/form-data?kch2008-10-08T18:31:41Z2009-09-11T20:18:36Z
<p>I want to do an HTTP POST using that looks like an html form posted from a browser, say, post some fields and a file.</p>
<p>Posting fields is straightforward, example right there in the net/http rdocs, but I can't figure out how to post a file along with it.</p>
<p>Net::HTTP doesn't look like the best idea. <a href="http://curb.rubyforge.org/" rel="nofollow">curb</a> is looking good.</p>
http://stackoverflow.com/questions/1405274/rails-do-we-have-anything-built-in-to-output-a-ruby-array-as-arguments-to-a-java0Rails: do we have anything built-in to output a ruby array as arguments to a javascript function call?kch2009-09-10T13:21:12Z2009-09-10T23:12:13Z
<p>Hi,</p>
<p>Here's what I want, in wishful code:</p>
<h3>in my controller action:</h3>
<pre><code>@javascript_function_args = [ "foo", "bar", 1, [2, 3], { :zort => 'narf', :nom => 'cake' }]
</code></pre>
<h3>in my erb view:</h3>
<pre><code><script … >
performAwesome(<%= @javascript_function_args.to_js_args %>);
</script>
</code></pre>
<h3>or, even better:</h3>
<pre><code> <%= call_javascript_function :performAwesome, *@javascript_function_args %>
</code></pre>
<h3>my expected output:</h3>
<pre><code><script … >
performAwesome("foo", "bar", 1, [2, 3], { zort : 'narf', nom : 'cake' });
</script>
</code></pre>
<p>I suppose I could just <code>#to_json</code> the array and strip the wrapping brackets, but I'm wondering if there's something more specific to handle it.</p>
http://stackoverflow.com/questions/1392976/on-a-mac-within-the-shell-how-can-i-tell-that-i-have-a-gui2On a Mac, within the shell, how can I tell that I have a GUI?kch2009-09-08T09:32:00Z2009-09-08T09:55:52Z
<p>Because you (lovely) people are always so curious about posters' original intents, here's mine: </p>
<blockquote>
<p>If I'm on a Mac and have a GUI (as opposed to, say, being on an ssh session), I want to set my <code>$EDITOR</code> to <code>mate_wait</code>. (And go with <code>vim</code> otherwise.)</p>
</blockquote>
<p>And, you have an answer for that. I do too. It even works. Here. Sometimes.</p>
<p>So I want you to fiercely scrutinize it:</p>
<h3>Skip intro</h3>
<p>I can tell that I'm on a Mac by checking:</p>
<pre><code>[ `uname` = 'Darwin' ]
</code></pre>
<p>And I think I can sort of tell that I have a GUI by checking:</p>
<pre><code>[ "$TERM_PROGRAM" = 'Apple_Terminal' ]
# or
[ "$DISPLAY" ]
</code></pre>
<p>Now, it's theoretically possible that I have an Aqua-less OpenDarwin setup running X11. It's also possible that I'm running fully lickable Mac GUI, yet using another terminal application.</p>
<p>And then there's the mind-bending possibility that I'm running xterm within Apple's X11 running on top of the OS X GUI. In which case I'd still want <code>mate_wait</code> as <code>$EDITOR</code>.</p>
<p>For OCD's sake, I'd like my checks to be as precise as possible.</p>
<p>So, please, un-reckless-fy my code.</p>
http://stackoverflow.com/questions/1254627/what-tried-and-true-algorithms-for-suggesting-related-articles-are-out-there2What tried and true algorithms for suggesting related articles are out there?kch2009-08-10T12:38:20Z2009-08-31T20:08:49Z
<p>Hi, </p>
<p>Pretty common situation, I'd wager. You have a blog or news site and you have plenty of articles or blags or whatever you call them, and you want to, at the bottom of each, suggest others that seem to be related.</p>
<p>Let's assume very little metadata about each item. That is, no tags, categories. Treat as one big blob of text, including the title and author name.</p>
<p>How do you go about finding the possibly related documents?</p>
<p>I'm rather interested in the actual algorithm, not ready solutions, although I'd be ok with taking a look at something implemented in ruby or python, or relying on mysql or pgsql.</p>
http://stackoverflow.com/questions/1309958/avoiding-applescript-through-ruby-rb-appscript-or-rubyosa0Avoiding AppleScript through Ruby: rb-appscript or rubyosa?kch2009-08-21T03:24:52Z2009-08-22T17:47:40Z
<p>Hello fellow Mac rubyists and AppleScript haters,</p>
<p>For those of you that have experience with both rubyosa and rb-appscript, I'd like the hear the pros and cons of each, which one you decided to stick with, and which one you'd recommend for a totally non-AppleScript savvy ruby old-timer. Also, are there any other options that I have missed?</p>
<p>As an aside, any tips dealing with the AppleScript side of the equation (e.g. browsing dictionaries, etc.) are also welcome.</p>
<p>Seeing some sample code also helps a lot.</p>
http://stackoverflow.com/questions/1308415/rails-activerecord-how-do-i-get-the-results-of-an-association-plus-some-conditi/1309648#13096480Answer by kch for Rails, ActiveRecord: how do I get the results of an association plus some condition?kch2009-08-21T01:18:21Z2009-08-21T02:41:48Z<h3>Use <code>named_scope</code>s, they're your friend</h3>
<p>Have you tried using a <code>named_scope</code> on the <code>Group</code> model?</p>
<p>Because everything is actually a proxy until you actually need the data,
you'll end up with a single query anyway if you do this:</p>
<pre><code>class User < ActiveRecord::Base
named_scope :pending, :conditions => { :status => 'pending' }
</code></pre>
<p>and then:</p>
<pre><code>a_group.users.pending
</code></pre>
<h3>Confirmation</h3>
<p>I ran the following code with an existing app of mine:</p>
<pre><code>Feature.find(6).comments.published
</code></pre>
<p>It results in this query (ignoring the first query to get feature 6):</p>
<pre><code>SELECT *
FROM `comments`
WHERE (`comments`.feature_id = 6)
AND ((`comments`.`status` = 'published') AND (`comments`.feature_id = 6))
ORDER BY created_at
</code></pre>
<p>And here's the relevant model code:</p>
<pre><code>class Feature < ActiveRecord::Base
has_many :comments
class Comment < ActiveRecord::Base
belongs_to :feature
named_scope :published, :conditions => { :status => 'published' }
</code></pre>
http://stackoverflow.com/questions/1309498/with-browsers-that-have-full-page-zoom-can-i-use-the-feature-to-set-zoom-for-ifr0With browsers that have full-page zoom, can I use the feature to set zoom for iframes?kch2009-08-21T00:08:37Z2009-08-21T01:50:57Z
<p>I think every browser has user-controllered full-page zoom nowadays. Is it in anyway accessible to developers, via either html, css or javascript?</p>
<p>I'd like to provide an iframe, or even a normal frame, and set it to, say, 50% zoom. (Relative to the current zoom of the containing document, ideally.)</p>
<p>Is it at all doable? I don't mind if it's an HTML 5 solution as long as it has an existing functional implementation. Even if it's in a nightly build.</p>
<p>I'd be very happy if it worked with at least WebKit and Gecko, and bonus if Trident too.</p>
http://stackoverflow.com/questions/1309498/with-browsers-that-have-full-page-zoom-can-i-use-the-feature-to-set-zoom-for-ifr/1309555#13095550Answer by kch for With browsers that have full-page zoom, can I use the feature to set zoom for iframes?kch2009-08-21T00:39:05Z2009-08-21T00:46:40Z<p>The following works in Safari 4.0.2 and latest WebKit nightly. It doesn't work in Google Chrome (neither Windows nor Mac), however.</p>
<p>As for Firefox 3.5 and IE 8.0, no deal. Also, no deal on latest Camino nightly.</p>
<pre><code><style type="text/css" media="screen">
iframe {
width : 500px;
height : 250px;
}
</style>
<script type="text/javascript" charset="utf-8">
function setZoom(element, zoom) {
element.style.zoom = (zoom || 50) + '%'
}
</script>
<p>Hello World</p>
<iframe
src = 'http://google.com'
onload = "setZoom(this.contentDocument.body)"
/>
</code></pre>
http://stackoverflow.com/questions/1174360/git-can-i-subtree-merge-just-a-subpath-of-a-repository2git: can I subtree merge just a subpath of a repository?kch2009-07-23T20:40:34Z2009-08-20T18:23:22Z
<p>Hi,</p>
<p>I have the remotes Foo and Bar. Foo is a web application that has lots of directories, relevent amongst them is <code>/public</code> which cointains assorted files and other directories.</p>
<p>Bar is a set of libraries and whatnot used on the front end, as such, it should go in <code>/public/bar</code> in Foo. Foo has no files there.</p>
<p>That would all be piece of cake with either submodules or subtree merge. However…</p>
<p>Bar's tree is messy, it has all sorts of pre-production files like PSDs and FLAs, and the only really useful part of it is what is inside its <code>/www/tools</code>.</p>
<p>So, what I want to do is merge Bar's <code>/www/tools</code> into Foo's <code>/public/bar</code>, and pretend the rest of Bar's tree doesn't even exist.</p>
<p>Can do?</p>
<p>(I would suppose this is very similar to how you merge from a project that originally merged yours as a subtree. Which I don't know how to do, either.)</p>
http://stackoverflow.com/questions/1302287/how-to-migrate-an-svk-repository-to-git-with-history0How to migrate an svk repository to git, with history?kch2009-08-19T19:56:24Z2009-08-19T20:23:04Z
<p>I have an svk repo that was full of mirrors and locals etc, I cleaned it up in steps, because I'm trying to get rid of it, and evaluating what should stay. There's only one project there that I want to keep working on, and for that I want to migrate it to git so I can be done with svk for good.</p>
<p>It's located in <code>//local/foo</code>, it has no svn repository.</p>
<p>So, what I think I want to do is create a local empty svn repository and push the changes from svk to it, and then use <code>git svn</code> to clone it.</p>
<p>But it's been so long since I last used <code>svk</code> I have no longer any idea how to go about that.</p>
<p>If one svk user would be so kind to point me the way…</p>
<p><a href="http://svk.bestpractical.com/view/LocalSVKtoRemoteSVNHowto" rel="nofollow">This</a> is almost helpful, but it doesn't commit with history to svn, it just does a single commit.</p>
http://stackoverflow.com/questions/1302287/how-to-migrate-an-svk-repository-to-git-with-history/1302392#13023921Answer by kch for How to migrate an svk repository to git, with history?kch2009-08-19T20:15:53Z2009-08-19T20:23:04Z<p>Ok, I figured it out:</p>
<pre><code># create a local svn repo
cd $HOME/src/svk
svnadmin create foosvn
# mirror that in svk
svk mirror file://$HOME/src/svk/foosvn //mirror/foosvn
svk sync //mirror/foosvn
# finally, merge your local svk path into the new svn repo
svk smerge --incremental --baseless //local/foo //mirror/foosvn
# Just to be sure things migrated properly:
svn log file://$HOME/src/svk/foosvn
# Now, from svn to git
git svn clone file://$HOME/src/svk/foosvn foogit
# Again, just to be sure things migrated properly:
cd foogit
git log --pretty=oneline --abbrev-commit
</code></pre>
<p>That's it. Then I did a bit of clean up:</p>
<pre><code>mv $HOME/src/svk/foogit $HOME/src/foo.git
rm -rf mv $HOME/src/svk
# This gets rid of your entire svk existence.
# Be very sure you really want to do this.
rm -rf $HOME/.svk
</code></pre>
http://stackoverflow.com/questions/1290670/ruby-how-do-i-recursively-find-and-remove-empty-directories/1290722#12907223Answer by kch for Ruby: how do I recursively find and remove empty directories?kch2009-08-17T22:00:30Z2009-08-17T22:08:30Z<p>In ruby:</p>
<pre><code>Dir['**/*'] \
.select { |d| File.directory? d } \
.select { |d| (Dir.entries(d) - %w[ . .. ]).empty? } \
.each { |d| Dir.rmdir d }
</code></pre>
http://stackoverflow.com/questions/1288480/git-how-do-i-merge-between-branches-while-keeping-some-changesets-exclusive-to-o/1290468#12904680Answer by kch for git: how do I merge between branches while keeping some changesets exclusive to one branch?kch2009-08-17T21:09:49Z2009-08-17T21:09:49Z<p>Well, because no answer so far provided a straightforward solution, I'll assume what I want to do is impossible, and add to the pile of occasionally useful solutions:</p>
<p>If you're always developing on the <code>features</code> branch, then you can merge <code>features</code> to <code>master</code>, and then, in <code>master</code>, <code>git revert local</code>. (Where <code>local</code> is the tag referencing the commit where you customized the paths, etc for your local environment.)</p>
<p>Now you must never merge <code>master</code> into <code>features</code>, because that would merge the reverse <code>local</code> commit too.</p>
<p>In this case <code>master</code> becomes sort of a deployment branch, only ever receiving merges from other branches. (Ideally, only from the <code>features</code> branch.)</p>
<p>This goes downhill very easily, just add another developer to the workflow and things get really messy. Still can be worked around by using explicit merge strategies, but it's generally a pain.</p>
http://stackoverflow.com/questions/577944/how-to-run-rake-tasks-from-within-rake-tasks/1290119#12901194Answer by kch for How to run Rake tasks from within Rake tasks?kch2009-08-17T20:05:41Z2009-08-17T20:05:41Z<h3>If you need the task to behave as a method, how about using an actual method?</h3>
<pre><code>task :build => [:some_other_tasks] do
build
end
task :build_all do
[:debug, :release].each { |t| build t }
end
def build(type = :debug)
# ...
end
</code></pre>
<h3>If you'd rather stick to <code>rake</code>'s idioms, here are your possibilities, compiled from past answers:</h3>
<ul>
<li><p>This always executes the task, but it doesn't execute its dependencies:</p>
<pre><code>Rake::Task["build"].execute
</code></pre></li>
<li><p>This one executes the dependencies, but it only executes the task if
it has not already been invoked:</p>
<pre><code>Rake::Task["build"].invoke
</code></pre></li>
<li><p>This first resets the task's already_invoked state, allowing the task to
then be executed again, dependencies and all:</p>
<pre><code>Rake::Task["build"].reenable
Rake::Task["build"].invoke
</code></pre>
<p>(Notice that dependencies already invoked are not re-executed)</p></li>
</ul>
http://stackoverflow.com/questions/1281546/what-shell-am-i-in3What shell am I in?kch2009-08-15T09:45:36Z2009-08-15T12:15:28Z
<p><del>If I'm in a shell script that has no shebang line…</del> <del>Hum, that doesn't matter, because indeed <code>sh</code> is always used.</del> Maybe not so.</p>
<p>Is there a command to identify the name/type of current shell, the path to the shell binary, and the version of the shell?</p>
<p>I don't need all of that, but the more I can get, the better.</p>
<p>I want something that has the same feel of <code>uname</code>, <code>pwd</code>, <code>whoami</code>. Just a plain utility with a simple output. (which so far hasn't showed up :/ )</p>
<h3>re <code>ps</code></h3>
<pre><code>$ ps -o comm $$
COMM
-bash
</code></pre>
<p>Why <code>-bash</code> instead of the full path as it would be with everything else? What's the deal with the dash there?</p>
http://stackoverflow.com/questions/1279953/how-to-execute-the-output-of-a-command-within-the-current-shell1How to execute the output of a command within the current shell?kch2009-08-14T20:13:54Z2009-08-15T05:41:07Z
<p>Hi,</p>
<p>I'm well aware of the <code>source</code> (aka <code>.</code>) utility, which will take the contents from a file and execute them within the current shell.</p>
<p>Now, I'm transforming some text into shell commands, and then running them, as follows:</p>
<pre><code>$ ls | sed ... | sh
</code></pre>
<p><code>ls</code> is just a random example, the original text can be anything. <code>sed</code> too, just an example for transforming text. The interesting bit is <code>sh</code>. I pipe whatever I got to <code>sh</code> and it runs it.</p>
<p>My problem is, that means starting a new sub shell. I'd rather have the commands run within my current shell. Like I would be able to do with <code>source some-file</code>, if I had the commands in a text file.</p>
<p>I don't want to create a temp file because feels dirty.</p>
<p>Alternatively, I'd like to start my sub shell with the exact same characteristics as my current shell.</p>
<h3>update</h3>
<p>Ok, the solutions using backtick certainly work, but I often need to do this while I'm checking and changing the output, so I'd much prefer if there was a way to pipe the result into something in the end.</p>
<h3>sad update</h3>
<p>Ah, the <code>/dev/stdin</code> thing looked so pretty, but, in a more complex case, it didn't work.</p>
<p>So, I have this:</p>
<pre><code>find . -type f -iname '*.doc' | ack -v '\.doc$' | perl -pe 's/^((.*)\.doc)$/git mv -f $1 $2.doc/i' | source /dev/stdin
</code></pre>
<p>Which ensures all <code>.doc</code> files have their extension lowercased.</p>
<p>And which incidentally, can be handled with <code>xargs</code>, but that's besides the point.</p>
<pre><code>find . -type f -iname '*.doc' | ack -v '\.doc$' | perl -pe 's/^((.*)\.doc)$/$1 $2.doc/i' | xargs -L1 git mv
</code></pre>
<p>So, when I run the former, it'll exit right away, nothing happens.</p>
http://stackoverflow.com/questions/1280521/how-can-i-show-the-git-branch-of-a-rails-app-within-that-app/1280538#12805380Answer by kch for How can I show the git branch of a rails app within that app?kch2009-08-14T22:40:08Z2009-08-14T22:40:08Z<p>Actually, as you suggested, shelling out is the right thing to do.</p>
<p>If you're afraid somehow <code>git</code> might not be available to the app, you might try reading the file <code>.git/HEAD</code>.</p>
http://stackoverflow.com/questions/1279681/modrewrite-replace-underscores-with-dashes/1279758#12797582Answer by kch for mod_rewrite: replace underscores with dasheskch2009-08-14T19:33:55Z2009-08-14T21:29:27Z<p>First you must achieve consistency in the existing URLs. Basically, you have to normalize all existing names to always use dashes. Ok, you've done that.</p>
<p>We're starting with the following assumption:</p>
<p>The URL is roughly of the form:</p>
<pre>
http://example.com/articles/what-ever/really-doesnt_matter/faulty_article_name
</pre>
<p>where only URLs under <code>/articles</code> should be rewritten, and only the <code>/faulty_article_name</code> part needs to be sanitized. </p>
<h3>Greatly updated, with something that actually works</h3>
<p>For Apache:</p>
<pre><code>RewriteEngine On
RewriteRule ^(/?articles/.*/[^/]*?)_([^/]*?_[^/]*)$ $1-$2 [N]
RewriteRule ^(/?articles/.*/[^/]*?)_([^/_]*)$ $1-$2 [R=301]
</code></pre>
<p>That's generally inspired by GApple's answer.</p>
<p>The first <code>/?</code> ensures that this code will run on both vhost confs and <code>.htaccess</code> files. The latter does not expect a leading slash.</p>
<p>I then add the <code>articles/</code> part to ensure that the rules only apply for URLs within <code>/articles</code>.</p>
<p>Then, while we have at least two underscores in the URL, we keep looping through the rules. When we end up with only one remaining underscore, the second rule kicks in, replaces it with a dash, and does a permanent redirect.</p>
<p>Phew.</p>
http://stackoverflow.com/questions/1280167/is-there-an-easy-simple-lazy-way-to-test-rules-against-apaches-modrewrite3Is there an easy, simple, lazy way to test rules against Apache's mod_rewrite?kch2009-08-14T20:54:20Z2009-08-14T21:03:02Z
<p>Hi,</p>
<p>I want to test the effects of my <code>RewriteRule</code>s without going through all the trouble of setting up a vhost and a <code>RewriteLog</code> and throwing URLs at the browser (or <code>curl</code>ing them).</p>
<p>But I don't just wanna test regular expressions. I want my URLs to actually go through Apache's mod_rewrite stack, and I want to see the response that would come out of it.</p>
<p>Awesome if I could get some trace of which rules acted on the URL, with which order, and what the interim results were. (I guess most of this appears in the rewrite log, but I wanted to avoid that setup)</p>
<p>Is there any tool for this out there?</p>
<p>I'm ok with it not being able to handle RewriteConds, since those generally rely on the request headers and whatnot.</p>
http://stackoverflow.com/questions/1270990/how-to-remove-two-chars-from-the-beginning-of-a-line/1271029#12710298Answer by kch for How to remove two chars from the beginning of a linekch2009-08-13T09:41:14Z2009-08-13T09:41:14Z<p>Instead of using a for loop, you might be happier with a a list comprehension:</p>
<pre><code>[line[2:] for line in lines]
</code></pre>
<p><hr /></p>
<p>Just as a curiosity, do check the <code>cut</code> unix tool.</p>
<pre><code>$ cut -c2- filename
</code></pre>
<p>The slicing syntax for -c is quite similar to python's.</p>
http://stackoverflow.com/questions/1265323/rails-methods-from-module-included-in-controller-not-available-in-view/1265362#12653622Answer by kch for rails: methods from module included in controller not available in viewkch2009-08-12T10:22:36Z2009-08-12T11:01:42Z<p>If the method were defined directly in the controller, you'd have to make it available to views by calling <code>helper_method :method_name</code>.</p>
<pre><code>class ApplicationController < ActionController::Base
def current_user
# ...
end
helper_method :current_user
end
</code></pre>
<p>With a module, you can do the same, but it's a bit more tricky.</p>
<pre><code>module Authentication
def current_user
# ...
end
def self.included m
return unless m < ActionController::Base
m.helper_method :current_user # , :any_other_helper_methods
end
end
class ApplicationController < ActionController::Base
include Authentication
end
</code></pre>
<p>Ah, yes, if your module is meant to be strictly a helper module, you can do as Lichtamberg said. But then again, you could just name it <code>AuthenticationHelper</code> and put it in the <code>app/helpers</code> folder.</p>
<p>Although, by my own experience with authentication code, you <em>will</em> want to have it be available to both the controller and views. Because generally you'll handle authorization in the controller. Helpers are exclusively available to the view. (I believe them to be originally intended as shorthands for complex html constructs.)</p>
http://stackoverflow.com/questions/1265143/how-to-uninstall-passenger-modrails-from-nginx/1265290#12652902Answer by kch for How to uninstall Passenger (mod_rails) from nginx?kch2009-08-12T10:00:07Z2009-08-12T10:08:43Z<p>IF your only concern is the memory usage, removing the Passenger lines from the webserver config file will cause it to no longer be loaded.</p>
<p>If you want to completely remove it from your system, them you'll have to uninstall the gem too, assuming that's how you initially got it.</p>
<p><em>A tip for the future</em>: I generally keep lots of tiny config files, one for each module that I'm using, so that it's easy to find, edit, and eventually, remove them. This is not the general case, though.</p>
<p><strong>edit</strong>: hum, apparently Passenger compiles a new nginx with support for it, so it's not as simple as removing a module. Well, in that case I'd recommend you wipe your current nginx binary and compile a new one without mod_rails. Notice there may still be lines in the existing config file to be removed.</p>
http://stackoverflow.com/questions/1254599/can-i-get-a-percentage-of-by-how-much-one-file-differs-from-another1Can I get a percentage of by how much one file differs from another?kch2009-08-10T12:31:28Z2009-08-10T13:16:34Z
<p>Hi,</p>
<p>I'm diffing a bunch of binary files, recursively.</p>
<p>Basically, I'm running:</p>
<pre><code>diff --recursive --brief dir_a dir_b
</code></pre>
<p>And this tells me which files differ, and which are only present in one of the locations.</p>
<p>I'd like to get a bit more information, roughly, how much different they are from one another. A percentage would do.</p>
<p>Is there a simple, unixy, relatively fast way to do this?</p>
<h3>Regarding the metric</h3>
<p>So, most responders are wondering about how I want to calculate the percentage, and the answer is, very much, I don't care. I'm thinking something in the lines of diff size over compound size of both files would do. But if there's something else out there that uses a different metric, I'm taking it. I just need a rough value.</p>
<p><code>git</code> tends to show some sort of diff percentage for commits, any idea what the metric would be here?</p>
http://stackoverflow.com/questions/1237939/ruby-how-do-i-get-the-target-of-a-symlink2Ruby: How do I get the target of a symlink?kch2009-08-06T09:45:00Z2009-08-06T09:56:01Z
<p>I have a string containing the file system path to an existing symlink. I want to get the path that this link points to.</p>
<p>Basically I want the same that I'd get through this bit of hackery:</p>
<pre><code>s = "path/to/existing/symlink"
`ls -ld #{s}`.scan(/-> (.+)/).flatten.last
</code></pre>
<p>but I want to do it without shelling out.</p>
http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655648#1655648Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-11-01T00:14:07Z2009-11-01T00:14:07Z@bob I think I got it now. The list is the same plus Narf.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655648#1655648Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T22:01:19Z2009-10-31T22:01:19Z@bob I'm not sure I understand what you're asking.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655642#1655642Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:40:49Z2009-10-31T21:40:49Zcf. sepp2k comment on jonathan's answer.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655642#1655642Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:40:03Z2009-10-31T21:40:03ZAnd looks like you introduced a new misinformation in the last sentence: if you add new methods to a module, the method lookup will work fine on the mixing classes. What you can't do is add new modules to a module and expect its methods to show up on the mixing classes.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655648#1655648Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:36:26Z2009-10-31T21:36:26ZA bit less generic, too.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655645#1655645Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:19:40Z2009-10-31T21:19:40ZYeah, I went with option b. Posted my answer.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-what/1655642#1655642Comment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:18:15Z2009-10-31T21:18:15ZThe fact that ruby is interpreted has little to do with the observed behavior. It's just a matter of how method lookup and the ancestor chain are implemented. Which is seems to be an acceptable compromise for performance.http://stackoverflow.com/questions/1655623/ruby-class-c-includes-module-m-including-module-n-in-m-does-not-affect-c-whatComment by kch on Ruby: class C includes module M; including module N in M does not affect C. What gives?kch2009-10-31T21:14:22Z2009-10-31T21:14:22ZI'm surprised by the quantity of good answers that were written while I copy-reviewed my pre-written one.http://stackoverflow.com/questions/1405274/rails-do-we-have-anything-built-in-to-output-a-ruby-array-as-arguments-to-a-javaComment by kch on Rails: do we have anything built-in to output a ruby array as arguments to a javascript function call?kch2009-09-10T14:18:40Z2009-09-10T14:18:40ZYou know, that counts as an answer, one you could get upvotes for. I like apply, but I don't remember if there's cretaceous browser support for it.
http://stackoverflow.com/questions/1392976/on-a-mac-within-the-shell-how-can-i-tell-that-i-have-a-gui/1393067#1393067Comment by kch on On a Mac, within the shell, how can I tell that I have a GUI?kch2009-09-08T15:14:04Z2009-09-08T15:14:04Zas for grepping for the WindowServer, well, I'm trying to find a problem with it, but I guess if you know you're local, then you're good.http://stackoverflow.com/questions/1392976/on-a-mac-within-the-shell-how-can-i-tell-that-i-have-a-gui/1393067#1393067Comment by kch on On a Mac, within the shell, how can I tell that I have a GUI?kch2009-09-08T15:11:59Z2009-09-08T15:11:59Zcan you assume that you're local just because you're not SSH-ed? (I guess telnet and all that)http://stackoverflow.com/questions/1392976/on-a-mac-within-the-shell-how-can-i-tell-that-i-have-a-gui/1393067#1393067Comment by kch on On a Mac, within the shell, how can I tell that I have a GUI?kch2009-09-08T15:09:27Z2009-09-08T15:09:27Zmate -w actually works (or so I remember), but you can symlink mate as mate_wait and when called as such it'll assume -whttp://stackoverflow.com/questions/1309958/avoiding-applescript-through-ruby-rb-appscript-or-rubyosa/1312966#1312966Comment by kch on Avoiding AppleScript through Ruby: rb-appscript or rubyosa?kch2009-08-21T21:13:33Z2009-08-21T21:13:33ZGreat link. Moar reading.http://stackoverflow.com/questions/1309958/avoiding-applescript-through-ruby-rb-appscript-or-rubyosa/1312888#1312888Comment by kch on Avoiding AppleScript through Ruby: rb-appscript or rubyosa?kch2009-08-21T21:12:55Z2009-08-21T21:12:55ZThat's nice, but now I'm curious about how scripting bridge compares to applescript. I guess I'll have some reading to do.http://stackoverflow.com/questions/1309958/avoiding-applescript-through-ruby-rb-appscript-or-rubyosaComment by kch on Avoiding AppleScript through Ruby: rb-appscript or rubyosa?kch2009-08-21T05:40:22Z2009-08-21T05:40:22Zcan you expand on that?