User hoyhoy - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T04:20:32Zhttp://stackoverflow.com/feeds/user/3499http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right11On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript?hoyhoy2008-08-30T05:28:40Z2009-12-04T05:07:21Z
<p>I'm trying to make a two-column page using a div-based layout (no tables please!). Problem is, I can't grow the left div to match the height of the right one. My right div typically has a lot of content. </p>
<p>Here's is a paired down example of my template to illustrate the problem.</p>
<pre><code><div style="float:left; width: 150px; border: 1px solid;">
<ul>
<li>nav1</li>
<li>nav2</li>
<li>nav3</li>
<li>nav4</li>
</ul>
</div>
<div style="float:left; width: 250px">
Lorem ipsum dolor sit amet, consectetur adipisicing elit,
sed do eiusmod tempor incididunt ut labore et dolore magna
....
</div>
</code></pre>
<p><img src="http://involution.com/images/divlayout.png" alt="alt text" /></p>
http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash64What is your single most favorite command-line trick using Bash?hoyhoy2008-09-16T00:55:59Z2009-12-02T15:30:43Z
<p>We all know how to use <code><ctrl>-R</code> to reverse search through history, but did you know you can use <code><ctrl>-S</code> to forward search if you set <code>stty stop ""</code>? Also, have you ever tried running bind -p to see all of your keyboard shortcuts listed? There are over 455 on Mac OS X by default. </p>
<p>What is your single most favorite obscure trick, keyboard shortcut or shopt configuration using bash?</p>
http://stackoverflow.com/questions/35563/how-do-i-make-bash-reverse-search-work-in-terminal-app-without-it-displaying-garb4How do I make bash reverse-search work in Terminal.app without it displaying garbled output?hoyhoy2008-08-30T01:48:42Z2009-09-17T03:34:21Z
<p>Using Terminal.app on OS X 10.5, often you see the commands get garbled when you do a reverse-search with Bash. Is there some kind of termcap or perhaps a bash shopt command that can fix this? It is very annoying. </p>
<p>Steps to reproduce: Open Terminal.app, reverse-search to a longish command. Hit <ctrl>-E once you've found the command. The cursor goes to the end of the line, but the display doesn't update. </p>
<p>I'm guessing this is some kind of problem with the readline library on OS X. It's more of a problem with updating the cursor position after a search than anything else. Basically, ctrl-a and ctrl-e tend to break the search output. </p>
<p><img src="http://involution.com/images/osxterminal.png" alt="os x terminal failure image" /></p>
<p>In the above, the first part of the command should be displayed, and the cursor should be at the end of the line, but it isn't. You literally can't see what you're editing when this happens. </p>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/109073#10907310Answer by hoyhoy for What is your single favorite development tool?hoyhoy2008-09-20T19:24:25Z2009-08-21T13:19:48Z<p>My favorite development tool is <a href="http://en.wikipedia.org/wiki/TextMate" rel="nofollow">Textmate</a> also <a href="http://macromates.com/" rel="nofollow">here</a>. </p>
http://stackoverflow.com/questions/33860/is-it-possible-to-call-javascripts-onsubmit-event-programatically-on-a-form3Is it possible to call Javascript's onsubmit event programatically on a form?hoyhoy2008-08-29T02:33:21Z2009-01-26T22:41:08Z
<p>In Ruby on Rails, I'm attempting to update the <code>innerHTML</code> of a div tag using the <code>form_remote_tag</code> helper. This update happens whenever an associated select tag receives an onchange event. The problem is, <code><select onchange="this.form.submit();"></code>; doesn't work. Nor does <code>document.forms[0].submit()</code>. The only way to get the onsubmit code generated in the form_remote_tag to execute is to create a hidden submit button, and invoke the click method on the button from the select tag. Here's a working ERb partial example.</p>
<pre><code><% form_remote_tag :url => product_path, :update => 'content', :method => 'get' do -%>
<% content_tag :div, :id => 'content' do -%>
<%= select_tag :update, options_for_select([["foo", 1], ["bar", 2]]), :onchange => "this.form.commit.click" %>
<%= submit_tag 'submit_button', :style => "display: none" %>
<% end %>
<% end %>
</code></pre>
<p>What I want to do is something like this, but it doesn't work.</p>
<pre><code><% form_remote_tag :url => product_path, :update => 'content', :method => 'get' do -%>
<% content_tag :div, :id => 'content' do -%>
# the following line does not work
<%= select_tag :update, options_for_select([["foo", 1], ["bar", 2]]), :onchange => "this.form.onsubmit()" %>
<% end %>
<% end %>
</code></pre>
<p>So, is there any way to remove the invisible submit button for this use case?</p>
<p>There seems to be some confusion. So, let me explain. The basic problem is that <code>submit()</code> doesn't call the <code>onsubmit()</code> code rendered into the form.</p>
<p>The actual HTML form that Rails renders from this ERb looks like this:</p>
<pre><code><form action="/products/1" method="post" onsubmit="new Ajax.Updater('content', '/products/1', {asynchronous:true, evalScripts:true, method:'get', parameters:Form.serialize(this)}); return false;">
<div style="margin:0;padding:0">
<input name="authenticity_token" type="hidden" value="4eacf78eb87e9262a0b631a8a6e417e9a5957cab" />
</div>
<div id="content">
<select id="update" name="update" onchange="this.form.commit.click">
<option value="1">foo</option>
<option value="2">bar</option>
</select>
<input name="commit" style="display: none" type="submit" value="submit_button" />
</div>
</form>
</code></pre>
<p>I want to axe the invisible submit button, but using a straight form.submit appears to not work. So, I need some way to call the form's onsubmit event code.</p>
<p>Update: Orion Edwards solution would work if there wasn't a <code>return(false);</code> generated by Rails. I'm not sure which is worse though, sending a phantom click to an invisible submit button or calling eval on the <code>getAttribute('onsubmit')</code> call after removing the return call with a javascript string replacement! </p>
http://stackoverflow.com/questions/90374/how-do-i-specify-multiple-data-sets-to-an-xy-scatter-plot-using-the-google-chart0How do I specify multiple data sets to an XY-scatter plot using the Google Chart API?hoyhoy2008-09-18T05:51:57Z2008-12-26T22:48:15Z
<p>Why doesn't this Google Chart API URL render both data sets on this XY scatter plot? </p>
<pre><code>http://chart.apis.google.com/chart?cht=lxy&chd=t:10,20,30,40,50,60,70,80,90,100,110,120,130,140,150,160,170,180,190,200|0.10,0.23,0.33,0.44,0.56,0.66,0.79,0.90,0.99,1.12,1.22,1.33,1.44,1.56,1.68,1.79,1.90,2.02,2.12,2.22|0.28,0.56,0.85,1.12,1.42,1.68,1.97,2.26,2.54,2.84,3.12,3.40,3.84,4.10,4.53,4.80,5.45,6.02,6.40,6.80&chco=3072F3,ff0000,00aaaa&chls=2,4,1&chs=320x240&chds=0,201,0,7&chm=s,FF0000,0,-1,5|s,0000ff,1,-1,5|s,00aa00,2,-1,5
</code></pre>
<p>I've read the <a href="http://code.google.com/apis/chart/" rel="nofollow">documentation</a> over and over again, and I can't figure it out.</p>
http://stackoverflow.com/questions/224297/in-ruby-on-rails-how-do-i-make-a-polymorphic-model-associate-to-a-namespaced-mod1In Ruby on Rails, how do I make a polymorphic model associate to a namespaced model?hoyhoy2008-10-22T02:38:24Z2008-10-23T23:09:52Z
<p>I have the following models.</p>
<pre><code># app/models/domain/domain_object.rb
class Domain::DomainObject < ActiveRecord::Base
has_many :links_from, :class_name => "Link", :as => :from, :dependent => :destroy
end
# app/models/link.rb
class Link < ActiveRecord::Base
belongs_to :from, :polymorphic => true
belongs_to :object_value, :polymorphic => true
end
</code></pre>
<p>Problem is, when I do the following, the from_type doesn't prefix the Domain namespace to the model e.g.</p>
<pre><code> Domain::DomainObject.all(:include=> :links_from )
</code></pre>
<p>That causes the following SELECT:</p>
<pre><code> SELECT `links`.* FROM `links` WHERE (`links`.`from_id` IN (5,6,12,13,18,24,25,27,29,30,31,32,34,35,39) and `links`.`from_type` = 'DomainObject')
</code></pre>
<p>The query should be:</p>
<pre><code> SELECT `links`.* FROM `links` WHERE (`links`.`from_id` IN (5,6,12,13,18,24,25,27,29,30,31,32,34,35,39) and `links`.`from_type` = 'Domain::DomainObject')
</code></pre>
<p>because Rails automatically saves the model with the namespace. </p>
<p>I've seen a few recommendations on Rails sites about doing something like this:</p>
<pre><code> belongs_to :from, :polymorphic => true, :class_name => "Domain::DomainObject"
</code></pre>
<p>However, that doesn't appear to work either. </p>
<p>So, is there a better way to do this? Or is this not supported?</p>
http://stackoverflow.com/questions/224297/in-ruby-on-rails-how-do-i-make-a-polymorphic-model-associate-to-a-namespaced-mod/231901#2319012Answer by hoyhoy for In Ruby on Rails, how do I make a polymorphic model associate to a namespaced model?hoyhoy2008-10-23T23:09:52Z2008-10-23T23:09:52Z<p>To fix this, I did a <code>include Domain</code> in the <code>DomainObject</code> model and set <code>ActiveRecord::Base.store_full_sti_class = true</code> in <code>config/environment.rb</code>.</p>
http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command4How do I use a pipe in the exec parameter for a find command?hoyhoy2008-09-15T09:45:00Z2008-10-12T00:16:57Z
<p>I'm trying to construct a find command to process a bunch of files in a directory using two different executables. Unfortunately, -exec on find doesn't allow to use pipe or even \| because the shell interprets that character first. </p>
<p>Here is specifically what I'm trying to do (which doesn't work because pipe ends the find command):</p>
<pre><code>find /path/to/jpgs -type f -exec jhead -v {} | grep 123 \; -print
</code></pre>
http://stackoverflow.com/questions/47297/whats-the-best-way-to-pass-data-into-a-flex-chart-from-a-ruby-on-rails-applicati3What's the best way to pass data into a Flex chart from a Ruby on Rails application?hoyhoy2008-09-06T06:46:02Z2008-09-23T21:03:00Z
<p>Quite a few methods exist for passing data into a Flex binary from a Rails application. Right now, I'm using the old e4x resultFormat with a xml.erb template. I've done AMF before, but I feel like inlining parameters into the embed itself is a better solution because you don't have to wait for the browser to load a swf binary and the binary to make a web request. </p>
<p>Taking all of that into account, what is the best practice for rendering a Flex widget with a Rails back-end these days?</p>
http://stackoverflow.com/questions/109153/what-is-the-best-way-to-handle-overly-aggressive-reviewers-during-a-code-review/109165#1091658Answer by hoyhoy for What is the best way to handle overly aggressive reviewers during a code review?hoyhoy2008-09-20T19:59:34Z2008-09-20T19:59:34Z<p>If a coworker feels that strongly about an implementation, offer to work with them to refactor the code and then compare the maintainability, performance, and robustness of the new solution over the old one. It totally deflates the argument if you say, "Maybe you're right. Let's do extreme programming tomorrow and see if we can figure out how to make this better."</p>
http://stackoverflow.com/questions/109124/how-do-you-capture-stderr-stdout-and-the-exit-code-all-at-once-in-perl/109150#109150-1Answer by hoyhoy for How do you capture stderr, stdout, and the exit code all at once, in Perl?hoyhoy2008-09-20T19:53:28Z2008-09-20T19:53:28Z<p>There are three basic ways of running external commands:</p>
<pre><code>system $cmd; # using system()
$output = `$cmd`; # using backticks (``)
open (PIPE, "cmd |"); # using open()
</code></pre>
<p>With system(), both STDOUT and STDERR will go the same place as the script's STDOUT and STDERR, unless the system() command redirects them. Backticks and open() read only the STDOUT of your command.</p>
<p>You could also call something like the following with open to redirect both STDOUT and STDERR. </p>
<p>open(PIPE, "cmd 2>&1 |");</p>
<p>The return code is always stored in $? as noted by @Michael Carman.</p>
http://stackoverflow.com/questions/296/should-i-learn-c/109130#1091304Answer by hoyhoy for Should I learn C?hoyhoy2008-09-20T19:43:28Z2008-09-20T19:43:28Z<p>Learning C is important. Every scripting and bytecode-interpreted language in existence was written using C or C++. It is empowering to learn the underlying technology that enables all of these higher-level technologies. </p>
<p>A perfect example is that you can use the C debugging tools to figure out what is wrong in a web application. At my last job, I had a problem with Rails segmentation faulting while loading an external library. I used gdb, nm and strace to solve this. If I hadn't known how to debug native applications using the gnu toolchain, this would have been nearly impossible to solve. </p>
<p>Learning C is important for your development as a programmer. It adds to your skillset and empowers you to understand software at a fundamental level. </p>
http://stackoverflow.com/questions/108938/application-context-in-rails/109119#1091191Answer by hoyhoy for Application Context in Railshoyhoy2008-09-20T19:38:22Z2008-09-20T19:38:22Z<p>Using the stock Rails cache is roughly equivalent to this. </p>
http://stackoverflow.com/questions/108927/what-cs-class-has-helped-you-over-and-over/109114#1091140Answer by hoyhoy for What CS class has helped you over and over?hoyhoy2008-09-20T19:37:13Z2008-09-20T19:37:13Z<p>Data Structures and Algorithms, Database Systems, Software Architecture. Taking electrical engineering courses in C helped a lot as well. </p>
http://stackoverflow.com/questions/109089/what-college-univ-has-the-best-computer-science-software-engineering-program/109099#1090994Answer by hoyhoy for What College/Univ has the best computer science/software engineering program?hoyhoy2008-09-20T19:32:53Z2008-09-20T19:32:53Z<p>Carnegie Mellon and MIT, usually. </p>
http://stackoverflow.com/questions/90715/what-are-the-best-programming-puzzles-you-came-across/109080#1090800Answer by hoyhoy for What are the best programming puzzles you came across?hoyhoy2008-09-20T19:27:57Z2008-09-20T19:27:57Z<p>This is a good one.</p>
<blockquote>
<p>A census taker came to a house where a
man lived with three daughters. "What
are your daughters' ages?" he asked. </p>
<p>The man replied, "The product of their
ages is 72, and the sum of their ages
is my house number."</p>
<p>"But that's not enough information,"
the census taker insisted.</p>
<p>"All right," answered the farmer, "the
oldest loves chocolate.</p>
<p>What are the daughters' ages?</p>
</blockquote>
http://stackoverflow.com/questions/109023/best-algorithm-to-count-the-number-of-set-bits-in-a-32-bit-integer/109036#10903615Answer by hoyhoy for Best algorithm to count the number of set bits in a 32-bit integer?hoyhoy2008-09-20T19:08:27Z2008-09-20T19:08:27Z<p>Brian Kernighan's method goes through as many iterations as there are set bits. So if we have a 32-bit word with only the high bit set, then it will only go once through the loop.</p>
<p>Published in 1988, the C Programming Language 2nd Ed. (by Brian W. Kernighan and Dennis M. Ritchie) mentions this in exercise 2-9. On April 19, 2006 Don Knuth pointed out to him that this method "was first published by Peter Wegner in CACM 3 (1960), 322. (Also discovered independently by Derrick Lehmer and published in 1964 in a book edited by Beckenbach.)"</p>
<pre><code>long count_bits(long n) {
unsigned int c; // c accumulates the total bits set in v
for (c = 0; n; c++)
n &= n - 1; // clear the least significant bit set
return c;
}
</code></pre>
<p>Note that this is an question used during interviews. The interviewer will add the caveat that you have "infinite memory". In that case, you basically create an array of size 2<sup>32</sup> and fill in the bit counts for the numbers at each location. Then, this function becomes O(1). </p>
http://stackoverflow.com/questions/108991/how-important-is-early-exposure-to-computers-for-a-sw-developer/109014#1090142Answer by hoyhoy for How important is early exposure to computers for a SW developer?hoyhoy2008-09-20T19:02:10Z2008-09-20T19:02:10Z<p>Personally, I didn't own a computer until I was 19, and I don't think it hurt anything. Oddly, when I was in high school I did have an unnatural obsession with programming my Casio graphing calculator. </p>
<p>Also remember that Djikstra was famous for <i>not</i> having a computer in his office, ever. </p>
<p>These days, it's probably better to not expose a child to computers too early lest you want him wasting his time on Facebook, Myspace, and Twitter. The Internet is quickly becoming the new television.</p>
<p>Being good at computer science is not the same as being good at screwing around on the Internet. </p>
http://stackoverflow.com/questions/107059/how-much-mathematics-and-physics-should-a-programmer-know/108994#1089943Answer by hoyhoy for How much mathematics and physics should a programmer know?hoyhoy2008-09-20T18:54:14Z2008-09-20T18:54:14Z<p>I live by Richard Feynman's old rule, "Learn how to solve every problem that has been solved.". </p>
http://stackoverflow.com/questions/98566/good-headphones-for-a-noisy-office/108985#1089850Answer by hoyhoy for Good headphones for a noisy officehoyhoy2008-09-20T18:50:43Z2008-09-20T18:50:43Z<p>The QC3s are too small. I'd stick with the QC2s. </p>
http://stackoverflow.com/questions/105604/can-i-revoke-some-database-privileges-from-mediawiki-after-installation/105952#1059521Answer by hoyhoy for Can I revoke some database privileges from MediaWiki after installation?hoyhoy2008-09-19T21:51:52Z2008-09-20T05:02:05Z<p>After the installation, MediaWiki doesn't need to create any more tables. I'd suggest giving the user insert, select, and lock permission.</p>
<pre><code>grant select,lock tables,insert on media_wiki_db.* to 'wiki'@'localhost' identified by 'password';
</code></pre>
http://stackoverflow.com/questions/106387/is-it-possible-to-detect-32-bit-vs-64-bit-in-a-bash-script/106411#1064111Answer by hoyhoy for Is it possible to detect 32 bit vs 64 bit in a bash script?hoyhoy2008-09-19T23:36:33Z2008-09-19T23:36:33Z<p>You could do something like this:</p>
<pre><code>if $(uname -a | grep 'x86_64'); then
echo "I'm 64-bit"
else
echo "I'm 32-bit"
fi
</code></pre>
http://stackoverflow.com/questions/105568/what-rtos-is-best-for-working-on-the-same-pc-with-windows/105975#1059751Answer by hoyhoy for What RTOS is best for working on the same PC with Windows?hoyhoy2008-09-19T21:55:19Z2008-09-19T21:55:19Z<p>QNX is used extensively for aircraft electronics. However, pretty much any OS will run inside of Windows using VMWare or dual-booting though. </p>
http://stackoverflow.com/questions/71199/what-makes-you-lose-motivation/98141#981413Answer by hoyhoy for What makes you lose motivation?hoyhoy2008-09-18T23:56:13Z2008-09-18T23:56:13Z<p>Management theater. Productivity theater. Not having my own office. Loud work environment. You know, everything mentioned in Peopleware. </p>
http://stackoverflow.com/questions/81020/whats-your-development-setup-talking-right-now-to-my-boss/98102#981020Answer by hoyhoy for What's your development setup? (Talking right now to my boss)hoyhoy2008-09-18T23:48:17Z2008-09-18T23:48:17Z<p>Mac book pro, herman miller aeron, 30-inch cinema display. Various Windows and Linux machines scattered around. </p>
http://stackoverflow.com/questions/82432/is-learning-assembly-language-worth-the-effort/98094#980940Answer by hoyhoy for Is learning Assembly Language worth the effort?hoyhoy2008-09-18T23:46:59Z2008-09-18T23:46:59Z<p>In short, yes. Understanding assembly will make you understand the output from a C compiler. You get a better handle on what the computer is actually doing at a very low-level. This helps you write faster and more robust software. </p>
http://stackoverflow.com/questions/95751/what-technologies-inspire-you/98003#980034Answer by hoyhoy for What technologies inspire you?hoyhoy2008-09-18T23:30:29Z2008-09-18T23:30:29Z<p>Microprocessor design. Hard disk innovation. Do you realize how insane it is to have a 3GHz laptop with a 500GB hard drive? That will be the high-end before 2009. </p>
http://stackoverflow.com/questions/95836/what-was-the-most-refreshing-idea-which-benefitted-you-in-your-programming-career/97964#979640Answer by hoyhoy for What was the most refreshing idea which benefitted you in your programming career?hoyhoy2008-09-18T23:23:39Z2008-09-18T23:23:39Z<p>Using different frameworks and working on different technology stacks has helped a lot. You see the advantages and disadvantages of different solutions. In general, it makes you less religious. </p>
http://stackoverflow.com/questions/96137/divs-vs-tables-a-rebuttal-please/97941#979410Answer by hoyhoy for DIVs vs. TABLEs a rebuttal pleasehoyhoy2008-09-18T23:18:02Z2008-09-18T23:18:02Z<p>DIV-based layouts suffer from limitations. Without tables it is essentially <a href="http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-righ">impossible</a> to implement a two column layout that grows properly based on the height of the content.</p>
http://stackoverflow.com/questions/35563/how-do-i-make-bash-reverse-search-work-in-terminal-app-without-it-displaying-garb/464168#464168Comment by hoyhoy on How do I make bash reverse-search work in Terminal.app without it displaying garbled output?hoyhoy2009-09-17T03:37:15Z2009-09-17T03:37:15ZJust got around to trying this, and it works!http://stackoverflow.com/questions/35563/how-do-i-make-bash-reverse-search-work-in-terminal-app-without-it-displaying-garb/766577#766577Comment by hoyhoy on How do I make bash reverse-search work in Terminal.app without it displaying garbled output?hoyhoy2009-09-17T03:32:46Z2009-09-17T03:32:46ZThe problem still exists on 10.6.1 as well. http://stackoverflow.com/questions/68391/how-to-write-a-rails-mixin-that-spans-across-model-controller-and-view/69190#69190Comment by hoyhoy on How to write a Rails mixin that spans across model, controller, and view.hoyhoy2008-09-20T20:24:33Z2008-09-20T20:24:33ZIt's really the same thing. This is a better syntax. http://stackoverflow.com/questions/96501/perks-for-new-programmers/96723#96723Comment by hoyhoy on Perks for new programmershoyhoy2008-09-20T20:21:48Z2008-09-20T20:21:48ZVC funded start-ups are the worst in terms of individual offices. The typical mode of operation is to cram as many programmers as they can hire into one room, and let them fight it out. http://stackoverflow.com/questions/66111/xwindow-ignores-multiple-clentmessages-sent-during-same-secondComment by hoyhoy on XWindow ignores multiple ClentMessage's sent during same secondhoyhoy2008-09-19T22:21:03Z2008-09-19T22:21:03ZYou may want to retitle this as XWindow instead of XWindows.
<a href="http://en.wikipedia.org/wiki/XWindow" rel="nofollow">en.wikipedia.org/wiki/XWindow</a>http://stackoverflow.com/questions/69115/char-to-hex-string-exerciseComment by hoyhoy on char[] to hex string exercisehoyhoy2008-09-16T20:29:39Z2008-09-16T20:29:39Zyou can initialize your _hex2asciiU_value array with the for loop I added. Also, I noticed my answer had a flaw, I specified the length of the mentioned array as 255 instead of 256.http://stackoverflow.com/questions/69115/char-to-hex-string-exerciseComment by hoyhoy on char[] to hex string exercisehoyhoy2008-09-16T07:35:34Z2008-09-16T07:35:34Zthe function as written appears to not work anymorehttp://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68429#68429Comment by hoyhoy on What is your single most favorite command-line trick using Bash?hoyhoy2008-09-16T02:00:24Z2008-09-16T02:00:24ZThat's not little known! :-)http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68576#68576Comment by hoyhoy on What is your single most favorite command-line trick using Bash?hoyhoy2008-09-16T01:36:43Z2008-09-16T01:36:43ZI can never remember ^U for some reason. Isn't there a word delete delete shortcut too?http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68388#68388Comment by hoyhoy on What is your single most favorite command-line trick using Bash?hoyhoy2008-09-16T01:34:58Z2008-09-16T01:34:58ZThe watch command is really cool. I first read about in the Linux Server Hacks book about five years ago. Who knew it existed?http://stackoverflow.com/questions/63617/a-good-free-resource-to-learn-the-fundamentals-of-c-not-c-development/63698#63698Comment by hoyhoy on A good, free resource to learn the fundamentals of C (not C++) development?hoyhoy2008-09-16T00:39:32Z2008-09-16T00:39:32ZBuy the K&R book. It is nearly free if you buy it used on Amazon.http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command/62066#62066Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command?hoyhoy2008-09-15T21:10:58Z2008-09-15T21:10:58ZIndeed that does work. Martin scooped you on the answer though.http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command/62142#62142Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command?hoyhoy2008-09-15T20:11:40Z2008-09-15T20:11:40ZThe problem with using xargs here is that I need the name of the file that matches. This command does find the matches, but I don't know which file matched. http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command/62060#62060Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command?hoyhoy2008-09-15T09:57:11Z2008-09-15T09:57:11ZThat works for me. Thanks.http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command/62054#62054Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command?hoyhoy2008-09-15T09:54:52Z2008-09-15T09:54:52ZThat doesn't work because I need the -print to work. If grep returns a success, then find prints the file name, otherwise it doesn't.