User hoyhoy - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T04:20:32Z http://stackoverflow.com/feeds/user/3499 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/35699/on-a-two-column-page-how-can-i-grow-the-left-div-to-the-same-height-of-the-right 11 On a two-column page, how can I grow the left div to the same height of the right div using CSS or Javascript? hoyhoy 2008-08-30T05:28:40Z 2009-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>&lt;div style="float:left; width: 150px; border: 1px solid;"&gt; &lt;ul&gt; &lt;li&gt;nav1&lt;/li&gt; &lt;li&gt;nav2&lt;/li&gt; &lt;li&gt;nav3&lt;/li&gt; &lt;li&gt;nav4&lt;/li&gt; &lt;/ul&gt; &lt;/div&gt; &lt;div style="float:left; width: 250px"&gt; Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna .... &lt;/div&gt; </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-bash 64 What is your single most favorite command-line trick using Bash? hoyhoy 2008-09-16T00:55:59Z 2009-12-02T15:30:43Z <p>We all know how to use <code>&lt;ctrl&gt;-R</code> to reverse search through history, but did you know you can use <code>&lt;ctrl&gt;-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-garb 4 How do I make bash reverse-search work in Terminal.app without it displaying garbled output? hoyhoy 2008-08-30T01:48:42Z 2009-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 &lt;ctrl&gt;-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#109073 10 Answer by hoyhoy for What is your single favorite development tool? hoyhoy 2008-09-20T19:24:25Z 2009-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-form 3 Is it possible to call Javascript's onsubmit event programatically on a form? hoyhoy 2008-08-29T02:33:21Z 2009-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>&lt;select onchange="this.form.submit();"&gt;</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>&lt;% form_remote_tag :url =&gt; product_path, :update =&gt; 'content', :method =&gt; 'get' do -%&gt; &lt;% content_tag :div, :id =&gt; 'content' do -%&gt; &lt;%= select_tag :update, options_for_select([["foo", 1], ["bar", 2]]), :onchange =&gt; "this.form.commit.click" %&gt; &lt;%= submit_tag 'submit_button', :style =&gt; "display: none" %&gt; &lt;% end %&gt; &lt;% end %&gt; </code></pre> <p>What I want to do is something like this, but it doesn't work.</p> <pre><code>&lt;% form_remote_tag :url =&gt; product_path, :update =&gt; 'content', :method =&gt; 'get' do -%&gt; &lt;% content_tag :div, :id =&gt; 'content' do -%&gt; # the following line does not work &lt;%= select_tag :update, options_for_select([["foo", 1], ["bar", 2]]), :onchange =&gt; "this.form.onsubmit()" %&gt; &lt;% end %&gt; &lt;% end %&gt; </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>&lt;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;"&gt; &lt;div style="margin:0;padding:0"&gt; &lt;input name="authenticity_token" type="hidden" value="4eacf78eb87e9262a0b631a8a6e417e9a5957cab" /&gt; &lt;/div&gt; &lt;div id="content"&gt; &lt;select id="update" name="update" onchange="this.form.commit.click"&gt; &lt;option value="1"&gt;foo&lt;/option&gt; &lt;option value="2"&gt;bar&lt;/option&gt; &lt;/select&gt; &lt;input name="commit" style="display: none" type="submit" value="submit_button" /&gt; &lt;/div&gt; &lt;/form&gt; </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-chart 0 How do I specify multiple data sets to an XY-scatter plot using the Google Chart API? hoyhoy 2008-09-18T05:51:57Z 2008-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&amp;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&amp;chco=3072F3,ff0000,00aaaa&amp;chls=2,4,1&amp;chs=320x240&amp;chds=0,201,0,7&amp;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-mod 1 In Ruby on Rails, how do I make a polymorphic model associate to a namespaced model? hoyhoy 2008-10-22T02:38:24Z 2008-10-23T23:09:52Z <p>I have the following models.</p> <pre><code># app/models/domain/domain_object.rb class Domain::DomainObject &lt; ActiveRecord::Base has_many :links_from, :class_name =&gt; "Link", :as =&gt; :from, :dependent =&gt; :destroy end # app/models/link.rb class Link &lt; ActiveRecord::Base belongs_to :from, :polymorphic =&gt; true belongs_to :object_value, :polymorphic =&gt; 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=&gt; :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 =&gt; true, :class_name =&gt; "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#231901 2 Answer by hoyhoy for In Ruby on Rails, how do I make a polymorphic model associate to a namespaced model? hoyhoy 2008-10-23T23:09:52Z 2008-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-command 4 How do I use a pipe in the exec parameter for a find command? hoyhoy 2008-09-15T09:45:00Z 2008-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-applicati 3 What's the best way to pass data into a Flex chart from a Ruby on Rails application? hoyhoy 2008-09-06T06:46:02Z 2008-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#109165 8 Answer by hoyhoy for What is the best way to handle overly aggressive reviewers during a code review? hoyhoy 2008-09-20T19:59:34Z 2008-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 -1 Answer by hoyhoy for How do you capture stderr, stdout, and the exit code all at once, in Perl? hoyhoy 2008-09-20T19:53:28Z 2008-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>&amp;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#109130 4 Answer by hoyhoy for Should I learn C? hoyhoy 2008-09-20T19:43:28Z 2008-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#109119 1 Answer by hoyhoy for Application Context in Rails hoyhoy 2008-09-20T19:38:22Z 2008-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#109114 0 Answer by hoyhoy for What CS class has helped you over and over? hoyhoy 2008-09-20T19:37:13Z 2008-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#109099 4 Answer by hoyhoy for What College/Univ has the best computer science/software engineering program? hoyhoy 2008-09-20T19:32:53Z 2008-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#109080 0 Answer by hoyhoy for What are the best programming puzzles you came across? hoyhoy 2008-09-20T19:27:57Z 2008-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#109036 15 Answer by hoyhoy for Best algorithm to count the number of set bits in a 32-bit integer? hoyhoy 2008-09-20T19:08:27Z 2008-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 &amp;= 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#109014 2 Answer by hoyhoy for How important is early exposure to computers for a SW developer? hoyhoy 2008-09-20T19:02:10Z 2008-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#108994 3 Answer by hoyhoy for How much mathematics and physics should a programmer know? hoyhoy 2008-09-20T18:54:14Z 2008-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#108985 0 Answer by hoyhoy for Good headphones for a noisy office hoyhoy 2008-09-20T18:50:43Z 2008-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#105952 1 Answer by hoyhoy for Can I revoke some database privileges from MediaWiki after installation? hoyhoy 2008-09-19T21:51:52Z 2008-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#106411 1 Answer by hoyhoy for Is it possible to detect 32 bit vs 64 bit in a bash script? hoyhoy 2008-09-19T23:36:33Z 2008-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#105975 1 Answer by hoyhoy for What RTOS is best for working on the same PC with Windows? hoyhoy 2008-09-19T21:55:19Z 2008-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#98141 3 Answer by hoyhoy for What makes you lose motivation? hoyhoy 2008-09-18T23:56:13Z 2008-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#98102 0 Answer by hoyhoy for What's your development setup? (Talking right now to my boss) hoyhoy 2008-09-18T23:48:17Z 2008-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#98094 0 Answer by hoyhoy for Is learning Assembly Language worth the effort? hoyhoy 2008-09-18T23:46:59Z 2008-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#98003 4 Answer by hoyhoy for What technologies inspire you? hoyhoy 2008-09-18T23:30:29Z 2008-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#97964 0 Answer by hoyhoy for What was the most refreshing idea which benefitted you in your programming career? hoyhoy 2008-09-18T23:23:39Z 2008-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#97941 0 Answer by hoyhoy for DIVs vs. TABLEs a rebuttal please hoyhoy 2008-09-18T23:18:02Z 2008-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#464168 Comment by hoyhoy on How do I make bash reverse-search work in Terminal.app without it displaying garbled output? hoyhoy 2009-09-17T03:37:15Z 2009-09-17T03:37:15Z Just 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#766577 Comment by hoyhoy on How do I make bash reverse-search work in Terminal.app without it displaying garbled output? hoyhoy 2009-09-17T03:32:46Z 2009-09-17T03:32:46Z The 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#69190 Comment by hoyhoy on How to write a Rails mixin that spans across model, controller, and view. hoyhoy 2008-09-20T20:24:33Z 2008-09-20T20:24:33Z It's really the same thing. This is a better syntax. http://stackoverflow.com/questions/96501/perks-for-new-programmers/96723#96723 Comment by hoyhoy on Perks for new programmers hoyhoy 2008-09-20T20:21:48Z 2008-09-20T20:21:48Z VC 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-second Comment by hoyhoy on XWindow ignores multiple ClentMessage's sent during same second hoyhoy 2008-09-19T22:21:03Z 2008-09-19T22:21:03Z You 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-exercise Comment by hoyhoy on char[] to hex string exercise hoyhoy 2008-09-16T20:29:39Z 2008-09-16T20:29:39Z you 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-exercise Comment by hoyhoy on char[] to hex string exercise hoyhoy 2008-09-16T07:35:34Z 2008-09-16T07:35:34Z the function as written appears to not work anymore http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68429#68429 Comment by hoyhoy on What is your single most favorite command-line trick using Bash? hoyhoy 2008-09-16T02:00:24Z 2008-09-16T02:00:24Z That's not little known! :-) http://stackoverflow.com/questions/68372/what-is-your-single-most-favorite-command-line-trick-using-bash/68576#68576 Comment by hoyhoy on What is your single most favorite command-line trick using Bash? hoyhoy 2008-09-16T01:36:43Z 2008-09-16T01:36:43Z I 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#68388 Comment by hoyhoy on What is your single most favorite command-line trick using Bash? hoyhoy 2008-09-16T01:34:58Z 2008-09-16T01:34:58Z The 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#63698 Comment by hoyhoy on A good, free resource to learn the fundamentals of C (not C++) development? hoyhoy 2008-09-16T00:39:32Z 2008-09-16T00:39:32Z Buy the K&amp;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#62066 Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command? hoyhoy 2008-09-15T21:10:58Z 2008-09-15T21:10:58Z Indeed 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#62142 Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command? hoyhoy 2008-09-15T20:11:40Z 2008-09-15T20:11:40Z The 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#62060 Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command? hoyhoy 2008-09-15T09:57:11Z 2008-09-15T09:57:11Z That works for me. Thanks. http://stackoverflow.com/questions/62044/how-do-i-use-a-pipe-in-the-exec-parameter-for-a-find-command/62054#62054 Comment by hoyhoy on How do I use a pipe in the exec parameter for a find command? hoyhoy 2008-09-15T09:54:52Z 2008-09-15T09:54:52Z That 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.