User Lucas Oman - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:16:39Z http://stackoverflow.com/feeds/user/6726 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1799427/error-suppression-not-working/1799753#1799753 1 Answer by Lucas Oman for Error Suppression @ Not Working Lucas Oman 2009-11-25T20:31:42Z 2009-11-25T20:31:42Z <p>Since the error involves a string offset of 0, it must not apply to the line of code provided. There is no integer offset; you're using the string 'file_name' there.</p> <p>Also, using '@' is a really terrible idea. Functions can fail, causing the script to exit with absolutely no indication as to where or why. A better way to handle the line of code you've pasted is this:</p> <pre><code>if (isset($File['file_name'])) { $file_name = $File['file_name']; } else { // throw exception, return FALSE, print an error and exit, whatever } </code></pre> http://stackoverflow.com/questions/1772297/tips-for-the-php-beginners/1772381#1772381 1 Answer by Lucas Oman for Tips for the PHP beginners Lucas Oman 2009-11-20T18:26:23Z 2009-11-20T18:26:23Z <p>If you intend to make web applications, please, please, please do some research on secure code, especially user input sanitization and SQL injection.</p> <p>It may seem like a heavy topic for a beginner, but it's better to learn the right way than re-learn later, leaving a trail of insecure, buggy code in your wake.</p> http://stackoverflow.com/questions/253380/how-do-i-insert-text-at-beginning-of-a-multi-line-selection-in-vi-vim/253477#253477 3 Answer by Lucas Oman for How do I insert text at beginning of a multi-line selection in VI/VIM? Lucas Oman 2008-10-31T13:31:55Z 2009-10-29T18:31:38Z <p>If you want to get super fancy about it, put this in your .vimrc:</p> <pre><code>vmap \c :s!^!//!&lt;CR&gt; vmap \u :s!^//!!&lt;CR&gt; </code></pre> <p>Then, whenever in visual mode, you can hit <code>\c</code> to <strong>c</strong>omment the block and <code>\u</code> to <strong>u</strong>ncomment it. Of course, you can change those shortcut keystrokes to whatever.</p> http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764 1 Answer by Lucas Oman for Search query is automatically executed on each load, without clicking the search button Lucas Oman 2009-10-27T15:49:23Z 2009-10-27T16:01:57Z <p>It looks like you're looking for values in <code>$_GET</code> in your <code>Pager</code> class when your form's method is <code>POST</code>. You'll need to change one or the other so that they're using the same.</p> <p>If you want to disable the search until the page has been submitted, you can try adding an <code>if</code> around the code that executes the search:</p> <pre><code>if (isset($_POST['subm'])) { ... } </code></pre> <p>Edit: addressed OP's comment.</p> http://stackoverflow.com/questions/1613184/reading-and-formatting-csv-data-using-explode-and-arrays-in-php/1613322#1613322 2 Answer by Lucas Oman for reading and formatting csv data using explode and arrays in php Lucas Oman 2009-10-23T13:12:46Z 2009-10-23T16:19:24Z <p>Try this:</p> <pre><code>foreach ($csv as $i=&gt;$row) { $rowStr = implode(' - ',$row)."\n"; print($rowStr); if ($i == 0) { print(str_repeat('-',strlen($rowStr))."\n"); } } </code></pre> <p>Edit: fixed syntax error.</p> http://stackoverflow.com/questions/1609985/is-it-possible-to-curry-method-calls-in-php/1610057#1610057 1 Answer by Lucas Oman for Is it possible to curry method calls in PHP? Lucas Oman 2009-10-22T21:24:41Z 2009-10-22T21:24:41Z <p>PHP doesn't have currying per se, but you can do something like that in several ways. In your specific case, something like this may work:</p> <pre><code>class MySoapClient extends SoapClient { ... public function __call($meth,$args) { if (substr($method,0,5) == 'curry') { array_unshift($args,PASSWORD); array_unshift($args,USERNAME); return call_user_func_array(array($this,substr($meth,5)),$args); } else { return parent::__call($meth,$args); } } } $soapClient = new MySoapClient(); ... // now the following two are equivalent $soapClient-&gt;currysomeMethod($additionalArg); $soapClient-&gt;someMethod(USERNAME,PASSWORD,$additionalArg); </code></pre> <p>Although here's a more general solution for currying in PHP >= 5.3:</p> <pre><code>$curriedMethod = function ($additionalArg) use ($soapClient) { return $soapClient-&gt;method(USERNAME,PASSWORD,$additionalArg); } $result = $curriedMethod('some argument'); </code></pre> http://stackoverflow.com/questions/1596221/php-calluserfunc-vs-just-calling-function/1596347#1596347 1 Answer by Lucas Oman for PHP call_user_func vs. just calling function Lucas Oman 2009-10-20T18:05:50Z 2009-10-20T18:13:20Z <p>Although you can call variable function names this way:</p> <pre><code>function printIt($str) { print($str); } $funcname = 'printIt'; $funcname('Hello world!'); </code></pre> <p>there are cases where you don't know how many arguments you're passing. Consider the following:</p> <pre><code>function someFunc() { $args = func_get_args(); // do something } call_user_func_array('someFunc',array('one','two','three')); </code></pre> <p>It's also handy for calling static and object methods, respectively:</p> <pre><code>call_user_func(array('someClass','someFunc'),$arg); call_user_func(array($myObj,'someFunc'),$arg); </code></pre> http://stackoverflow.com/questions/1540353/inserting-something-at-a-particular-line-in-a-text-file-using-php/1540403#1540403 4 Answer by Lucas Oman for Inserting something at a particular line in a text file using PHP Lucas Oman 2009-10-08T20:53:57Z 2009-10-08T20:53:57Z <p>Since you know the exact line number, probably the most accurate way to do this is to use file(), which returns an array of lines:</p> <pre><code>$contents = file('config.php'); $contents[3] = '$config[\'url\'] = "whateva"'."\n"; $outfile = fopen('config.php','w'); fwrite($outfile,implode('',$contents)); fclose($outfile); </code></pre> http://stackoverflow.com/questions/1525921/help-in-getting-hour-and-minute-in-php/1525946#1525946 3 Answer by Lucas Oman for Help in getting Hour and Minute in PHP Lucas Oman 2009-10-06T14:30:00Z 2009-10-06T14:30:00Z <p>Try this:</p> <pre><code>$hourMin = date('H:i'); </code></pre> <p>This will be 24-hour time with an hour that is always two digits. For all options, see the <a href="http://php.net/date" rel="nofollow">PHP docs for date()</a>.</p> http://stackoverflow.com/questions/1422866/using-vi-how-can-i-make-css-rules-into-one-liners/1422878#1422878 4 Answer by Lucas Oman for Using vi, how can I make CSS rules into one liners? Lucas Oman 2009-09-14T17:22:07Z 2009-09-14T17:31:15Z <p>Try something like this:</p> <pre> :%s/{\n/{/g :%s/;\n/;/g :%s/{\s+/{/g :%s/;\s+/;/g </pre> <p>This removes the newlines after opening braces and semicolons ('{' and ';') and then removes the extra whitespace between the concatenated lines.</p> http://stackoverflow.com/questions/1413285/multiple-autocommands-in-vim/1413352#1413352 4 Answer by Lucas Oman for Multiple autocommands in vim Lucas Oman 2009-09-11T21:23:55Z 2009-09-11T21:23:55Z <p>You can call a function, if you like:</p> <pre><code>autocmd Filetype ruby call SetRubyOptions() function SetRubyOptions() setlocal ts=2 ... endfunction </code></pre> http://stackoverflow.com/questions/1407221/where-does-this-session-come-from/1407250#1407250 4 Answer by Lucas Oman for Where does this session come from? Lucas Oman 2009-09-10T19:31:49Z 2009-09-10T19:31:49Z <p>A1. Your session starts when you call <code>session_start()</code>. Although a certain variable may not be set in $_SESSION, the session is still initiated.</p> <p>A2. If you look closely at the code, you'll see that it checks whether <code>$_SESSION['cart'][$sw_id]</code> is set yet. If it is, it uses the <code>++</code> operator. If not, it initializes it with a value of <code>1</code>.</p> <p>As an aside, you can initialize a variable with <code>++</code> in PHP. If the variable or array key is not initialized, PHP assumes it has a starting value of <code>0</code>.</p> http://stackoverflow.com/questions/1406680/fastest-way-to-load-include-php-template/1406843#1406843 2 Answer by Lucas Oman for Fastest way to load/include PHP template? Lucas Oman 2009-09-10T18:10:33Z 2009-09-10T18:19:03Z <p>Although a switch is not the most scalable way to write this code, I'm afraid that includes is the only way to keep your templates in separate files, here.</p> <p>You could, conceivably, encapsulate each template's code in a function, however:</p> <pre><code>/* photoTemplate.php */ &lt;?php function loadPhotoTemplate($id) { ?&gt; &lt;div id="photo"&gt; ... &lt;/div&gt; &lt;?php } ?&gt; /* listing.php */ function display_listing($id,$type) { global $abs_path; switch($type) { case 'photo': include_once($abs_path . '/templates/photo.php'); loadPhotoTemplate($id); break; case 'video': include_once($abs_path . '/templates/video.php'); loadVideoTemplate($id); break; } } </code></pre> <p>This will load each template file at most once, and then just call the function each time you want to display the template with the specific data for that item.</p> <p><strong>Edit</strong></p> <p>It would probably be even better to include all template files at the beginning, then just call the appropriate function in the switch. PHP's *_once() functions are slow, as they must consult the list of previously included/required files every time they are called.</p> http://stackoverflow.com/questions/1405457/php-soap-fread-dynamic-post-size/1405520#1405520 2 Answer by Lucas Oman for PHP SOAP fread() dynamic POST size Lucas Oman 2009-09-10T14:08:59Z 2009-09-10T14:08:59Z <p>You could try the following instead:</p> <pre> $xml = file_get_contents('php://input') </pre> <p>This will get all contents, no matter the length of the data.</p> http://stackoverflow.com/questions/1380049/php-testing-session/1380099#1380099 1 Answer by Lucas Oman for PHP: testing session Lucas Oman 2009-09-04T15:54:47Z 2009-09-04T16:01:02Z <p>You may want to split up your logic:</p> <pre> if (is_logged_in()) { set_login_session(get_original_passhash()); } else { print("Please Log In"); } </pre> <p>Since, in the conditional, you don't want the pass hash. You want to know if they're logged in or not.</p> http://stackoverflow.com/questions/1379780/how-to-get-a-soap-post-in-php/1379806#1379806 1 Answer by Lucas Oman for How to get a SOAP post in PHP? Lucas Oman 2009-09-04T15:00:21Z 2009-09-04T15:00:21Z <p>You can try something like this:</p> <pre> try { if (!($xml = file_get_contents('php://input'))) { throw new Exception('Could not read POST data.'); } } catch (Exception $e) { print('Did not successfully process HTTP request: '.$e->getMessage()); exit; } </pre> <p>This will read the body of the POST request to the $xml variable and print an error if there is one.</p> http://stackoverflow.com/questions/1373841/vim-deleting-backword-tricks/1373969#1373969 2 Answer by Lucas Oman for vim deleting backword tricks Lucas Oman 2009-09-03T15:01:58Z 2009-09-03T15:01:58Z <p>In general, d&lt;motion> will delete from current position to ending position after &lt;motion>. This means that:</p> <ol> <li>d&lt;leftArrow> will delete current and left character</li> <li>d$ will delete from current position to end of line</li> <li>d^ will delete from current backward to first non-white-space character</li> <li>d0 will delete from current backward to beginning of line</li> <li>dw deletes current to end of current word (including trailing space)</li> <li>db deletes current to beginning of current word</li> </ol> <p>Read <a href="http://vimdoc.sourceforge.net/htmldoc/motion.html#motion.txt" rel="nofollow">this</a> to learn all the things you can combine with the 'd' command.</p> http://stackoverflow.com/questions/1358897/autoload-and-multiple-directories/1358917#1358917 0 Answer by Lucas Oman for autoload and multiple directories Lucas Oman 2009-08-31T19:05:33Z 2009-08-31T19:05:33Z <p>Unfortunately, you do have to explicitly add each directory. This can either be done programmatically in a script that recursively traverses your directories, or you can specify a list.</p> <p>Probably the most efficient way is to specify a list of directories and subdirectories to search, and add these to your 'include_path' using ini_set().</p> http://stackoverflow.com/questions/1358493/can-anyone-translate-this-to-plain-english-php-translation/1358532#1358532 1 Answer by Lucas Oman for Can anyone translate this to plain english? PHP translation? Lucas Oman 2009-08-31T17:41:42Z 2009-08-31T17:41:42Z <p>First:</p> <pre> $transactionID = (isset($authNetCodes[4])) ? $authNetCodes[4] : 0; </pre> <p>This means that, if the fifth element of $authNetCodes (remember, arrays are zero-indexed!) has a value, then set $transactionID to that value. Otherwise, set $transactionID to 0.</p> <p>Second:</p> <pre> $transactionMessage = (isset($authNetCodes[3])) ? $authNetCodes[3] : ""; </pre> <p>Likewise, if the fourth element of authNetCodes has a value, set $transactionMessage to that value. Otherwise, set $transactionMessage to an empty string.</p> <p>As far as where $authNetCodes comes from, this code doesn't say.</p> http://stackoverflow.com/questions/1349147/php-mysql-oop-loading-complex-objects-from-sql/1349260#1349260 0 Answer by Lucas Oman for PHP/MySQL OOP: Loading complex objects from SQL Lucas Oman 2009-08-28T20:45:45Z 2009-08-28T20:45:45Z <p>I had to address this issue a while back when I concocted my own MVC framework as an experiment. To limit the layers of data loaded from the DB, I passed an integer to the constructor. Each constructor would decrement this integer before passing it to the constructors of the objects it instantiated. When it got to 0, no more sub-objects would be instantiated. This meant, basically, the int passed was the number of layers loaded.</p> <p>So if I only wanted an attribute of the unit object, I'd do this:</p> <pre> $myUnit = new Unit($unitId,1); </pre> http://stackoverflow.com/questions/1341683/php-too-many-ways-to-skin-a-cat/1341723#1341723 5 Answer by Lucas Oman for PHP - Too many ways to skin a cat? Lucas Oman 2009-08-27T15:10:45Z 2009-08-27T15:10:45Z <p>The PHP community is huge and has been growing for many years. Ruby is a relative newcomer on the scene, so it doesn't have nearly as many options.</p> <p>You have to be careful, here, not to confuse a language with the software written in that language. Cake, CodeIgniter, etc. are written in PHP, just as Rails is written in Ruby. These are not native parts of their respective languages, however.</p> <p>I think any language will have more and more options as the language becomes more popular and the community grows. People begin using the language for different purposes and maintaining public projects because they see that there is an audience for them.</p> http://stackoverflow.com/questions/1330693/php-validate-username-as-alphanumeric-with-underscores/1330719#1330719 1 Answer by Lucas Oman for [PHP] Validate username as alphanumeric with underscores Lucas Oman 2009-08-25T20:17:54Z 2009-08-25T20:17:54Z <p>Looks fine to me. Note that you make no requirement for the placement of the underscore, so "username_" and "___username" would both pass.</p> http://stackoverflow.com/questions/1329887/how-to-model-tags-in-the-database/1329945#1329945 1 Answer by Lucas Oman for How to model tags in the database? Lucas Oman 2009-08-25T18:03:57Z 2009-08-25T18:03:57Z <p>Definitely normalize. A table for tags, a table for your existing objects, and a table of links between them.</p> http://stackoverflow.com/questions/1329712/php-download-file-from-different-web-server-using-basic-authentication/1329743#1329743 0 Answer by Lucas Oman for PHP: Download file from different web server using basic authentication? Lucas Oman 2009-08-25T17:31:57Z 2009-08-25T17:31:57Z <p>I assume that the person means something like HTTPAuth, which is when a username/password box pops up when going to a page in your browser, and you're required to give credentials before the content is loaded.</p> <p>For this, you can use CURL. PHP has a nice set of <a href="http://us.php.net/curl" rel="nofollow">curl functions</a> for handling this. You'll need to configure it with the CURLOPT_NETRC option.</p> http://stackoverflow.com/questions/1323836/hunting-down-php-parse-errors/1323995#1323995 1 Answer by Lucas Oman for Hunting down PHP parse errors Lucas Oman 2009-08-24T18:34:42Z 2009-08-25T14:00:46Z <p>You can also do a frequent syntax check, no matter what editor you use:</p> <pre> php -l file.php </pre> <p>Note that I use the word "frequent". If you use vim, you may find the following useful in your .vimrc file:</p> <pre> map &lt;F12&gt; &lt;ESC&gt;:!php -l %&lt;CR&gt; </pre> <p>Just hit F12 at any time to check syntax on the fly.</p> http://stackoverflow.com/questions/1324087/what-are-the-most-commonly-use-web-development-policies-in-software-companies/1324213#1324213 1 Answer by Lucas Oman for What are the most commonly use web development policies in software companies? Lucas Oman 2009-08-24T19:22:37Z 2009-08-24T19:22:37Z <ul> <li>Code doesn't exist if it's not under version control. More specifically, NOTHING is on a production server unless it's committed to the repository.</li> <li>If a project presents an opportunity to refactor old code, take that opportunity.</li> <li>Maintain a wiki or similar to document procedures, standards and use of library code (when such documentation is too much for code comments)</li> </ul> http://stackoverflow.com/questions/1323516/how-to-extract-citations-from-a-text-php/1323639#1323639 0 Answer by Lucas Oman for How to extract citations from a text (PHP)? Lucas Oman 2009-08-24T17:17:00Z 2009-08-24T17:17:00Z <p>A quotation will always have punctuation--either a comma at the end, to signify that the speaker's name or title is to follow, or the end of the sentence (.!?).</p> http://stackoverflow.com/questions/1308921/storing-items-in-array-by-date-in-php/1308953#1308953 0 Answer by Lucas Oman for Storing items in array by date in PHP Lucas Oman 2009-08-20T21:30:02Z 2009-08-20T21:30:02Z <p>Store an array keyed by Unix time at 12:00:00am on that day. That array will contain all events for that day.</p> <p>It's easy to convert between Unix time and human-readable dates using PHP's strtotime(), time(), and date() functions.</p> http://stackoverflow.com/questions/1307577/how-do-we-as-a-community-help-encourage-programming-in-public-schools-or-stat/1307650#1307650 4 Answer by Lucas Oman for How do we, as a community, help encourage programming in public schools? (Or state Schools for the UKers.) Lucas Oman 2009-08-20T17:20:21Z 2009-08-20T17:20:21Z <p>It's interesting that you mentioned programming exercises in your algebra textbook. As I was reading your post, I was thinking that the easiest way to "sneak" programming into schools is through their math classes.</p> <p>The problem is that if you start a programming class, none of the students will sign up. They don't know what it is, they think it's geeky, or they think it's too hard.</p> <p>If they find that they're able to learn programming while studying another subject, it may actually give them the confidence to and interest in signing up for a real programming course later.</p> http://stackoverflow.com/questions/1294790/tilde-color-in-vim/1294834#1294834 11 Answer by Lucas Oman for Tilde color in vim? Lucas Oman 2009-08-18T15:59:50Z 2009-08-18T15:59:50Z <p>Try this:</p> <pre> :highlight NonText ctermfg=12 </pre> <p>12 is the default color; change as you see fit.</p> http://stackoverflow.com/questions/1808779/php-curl-post-problem-causing-php-to-use-100-cpu Comment by Lucas Oman on PHP Curl POST Problem Causing PHP to use 100% CPU Lucas Oman 2009-11-27T13:31:24Z 2009-11-27T13:31:24Z You're sure that's where it's hanging? For instance, can you print something before the curl_exec and after the curl_exec and never see the second print? http://stackoverflow.com/questions/1799427/error-suppression-not-working/1799753#1799753 Comment by Lucas Oman on Error Suppression @ Not Working Lucas Oman 2009-11-25T21:57:07Z 2009-11-25T21:57:07Z Bizarre. Thanks for the heads-up. http://stackoverflow.com/questions/1796882/php-dealing-with-get-and-post-arrays/1796956#1796956 Comment by Lucas Oman on PHP - Dealing with GET and POST arrays Lucas Oman 2009-11-25T14:06:50Z 2009-11-25T14:06:50Z ... or prepared statements with mysqli. http://stackoverflow.com/questions/1528162/converting-time-in-php/1528184#1528184 Comment by Lucas Oman on Converting time in PHP? Lucas Oman 2009-11-23T17:15:42Z 2009-11-23T17:15:42Z Though not an exact answer to the question (&quot;in PHP&quot;), this would be preferable if, as you stipulated, the OP is using MySQL. More efficient by far. http://stackoverflow.com/questions/1770564/getting-the-difference-between-two-time-dates-using-php/1770579#1770579 Comment by Lucas Oman on Getting the difference between two time/dates using php? Lucas Oman 2009-11-20T14:08:57Z 2009-11-20T14:08:57Z PHP may assume your date is in m-d-Y format when the numbers for month and day make the format ambiguous (the example you give is unambiguous, as there are not 14 months). You may need to parse and swap the day and month. http://stackoverflow.com/questions/1717477/ignore-data-within-a-certain-set-of-characters-with-php/1717544#1717544 Comment by Lucas Oman on Ignore data within a certain set of characters with PHP Lucas Oman 2009-11-11T20:06:46Z 2009-11-11T20:06:46Z You're right, I just noticed the '?'. And stupid markup. http://stackoverflow.com/questions/1717477/ignore-data-within-a-certain-set-of-characters-with-php/1717544#1717544 Comment by Lucas Oman on Ignore data within a certain set of characters with PHP Lucas Oman 2009-11-11T19:41:21Z 2009-11-11T19:41:21Z Note that this regex would be &quot;greedy&quot;, so &quot;this <b>* some text <i></b> is a <b></i> other text *</b> test&quot; would come out as &quot;this test&quot;, rather than &quot;this is a test&quot;, as you may expect. http://stackoverflow.com/questions/1652135/why-did-you-learn-programming Comment by Lucas Oman on Why did you learn programming? Lucas Oman 2009-10-30T20:56:11Z 2009-10-30T20:56:11Z I think it's an interesting question. Programming isn't like flippin' burgers. We're here because something motivated us to be here. http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764 Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search button Lucas Oman 2009-10-27T17:50:13Z 2009-10-27T17:50:13Z You're quite welcome :) You can also &quot;accept&quot; the answer if you'd like. http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764 Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search button Lucas Oman 2009-10-27T17:32:45Z 2009-10-27T17:32:45Z Then I would add a check for the 'page' value: if (isset($_GET['subm']) || isset($_GET['page'])) { ... } http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764 Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search button Lucas Oman 2009-10-27T17:21:43Z 2009-10-27T17:21:43Z That's probably because you haven't changed your form's method to GET instead of POST. If you change your code to use GET (including the above snippet in my post), it should work. http://stackoverflow.com/questions/1631719/search-query-is-automatically-executed-on-each-load-without-clicking-the-search/1631764#1631764 Comment by Lucas Oman on Search query is automatically executed on each load, without clicking the search button Lucas Oman 2009-10-27T16:04:40Z 2009-10-27T16:04:40Z Edited post to address your comment. http://stackoverflow.com/questions/233030/worst-php-practice-found-in-your-experience/233589#233589 Comment by Lucas Oman on Worst PHP practice found in your experience? Lucas Oman 2009-10-21T15:03:43Z 2009-10-21T15:03:43Z I'm an avid vim fan. Can't imagine using anything else. http://stackoverflow.com/questions/1522249/namespace-or-something-else-to-avoid-name-conflict-with-kohanas-image-library/1525104#1525104 Comment by Lucas Oman on Namespace or something else to avoid name conflict with Kohana's Image library Lucas Oman 2009-10-06T14:43:23Z 2009-10-06T14:43:23Z If you were on 5.3+, you could still namespace your helper and use Kohana's absolute namespace path (&quot;\Image_Core&quot; instead of &quot;Image_Core&quot;, for instance). Nothing would break then. http://stackoverflow.com/questions/1439424/will-ruby-ever-be-fast Comment by Lucas Oman on Will Ruby ever be *fast* ? Lucas Oman 2009-09-17T15:54:44Z 2009-09-17T15:54:44Z @dmckee That's such a cop-out. A project is open-source so that it can benefit from the goodwill of contributors, not so that the core devs have an excuse any time someone has a valid suggestion or issue.