User Chris Kloberdanz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-03T20:54:40Z http://stackoverflow.com/feeds/user/28714 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1466737/cant-get-sftp-to-work-in-php 0 Can't get SFTP to work in PHP Chris Kloberdanz 2009-09-23T15:27:55Z 2009-11-23T03:55:41Z <p>I am writing a simple SFTP client in PHP because we have the need to programatically retrieve files via n remote servers. I am using the PECL SSH2 extension.</p> <p>I have run up against a road block, though. The documentation on php.net suggests that you can do this:</p> <pre><code>$stream = fopen("ssh2.sftp://$sftp/path/to/file", 'r'); </code></pre> <p>However, I have an ls method that attempts to something similar</p> <pre><code>public function ls($dir) { $rd = "ssh2.sftp://{$this-&gt;sftp}/$dir"; $handle = opendir($rd); if (!is_resource($handle)) { throw new SFTPException("Could not open directory."); } while (false !== ($file = readdir($handle))) { if (substr($file, 0, 1) != '.'){ print $file . "\n"; } } closedir($handle); } </code></pre> <p>I get the following error:</p> <pre><code>PHP Warning: opendir(): Unable to open ssh2.sftp://Resource id #5/outgoing on remote host </code></pre> <p>This makes perfect sense because that's what happens when you cast a resource to string. Is the documentation wrong? I tried replacing the resource with host, username, and host and that didn't work either. I know the path is correct because I can run SFTP from the command line and it works fine.</p> <p>Has anyone else tried to use the SSH2 extenstion with SFTP? Am I missing something obvious here?</p> <p><strong>UPDATE:</strong></p> <p>I setup sftp on another machine in-house and it works just fine. So, there must be something about the server I am trying to connect to that isn't working.</p> http://stackoverflow.com/questions/1770993/php-finding-last-entry-in-a-foreach-process/1771021#1771021 1 Answer by Chris Kloberdanz for [PHP] Finding last entry in a foreach() process Chris Kloberdanz 2009-11-20T15:02:28Z 2009-11-20T15:02:28Z <pre><code>print implode(',',$xml-&gt;actors-&gt;actor); </code></pre> http://stackoverflow.com/questions/1765303/php-script-problem/1765371#1765371 4 Answer by Chris Kloberdanz for Php script problem Chris Kloberdanz 2009-11-19T18:10:42Z 2009-11-19T18:10:42Z <p>Try </p> <pre><code>putenv("TNS_ADMIN='C:\Programy\OracleDeveloper10g\NETWORK\ADMIN\'"); </code></pre> <p>If you look at the docs for <a href="http://us3.php.net/manual/en/function.putenv.php" rel="nofollow">putenv()</a> it shows everything in quotes.</p> http://stackoverflow.com/questions/1713429/remote-mysql-access/1713434#1713434 1 Answer by Chris Kloberdanz for Remote Mysql access Chris Kloberdanz 2009-11-11T06:30:55Z 2009-11-11T06:30:55Z <pre><code>GRANT ALL ON test.* TO 'root'@'192.168.1.15' IDENTIFIED BY ''; </code></pre> http://stackoverflow.com/questions/1711861/tables-were-deprecated-and-javascript-has-libraries-help-me-catch-up/1711893#1711893 0 Answer by Chris Kloberdanz for Tables were deprecated? And JavaScript has libraries? Help me catch up! Chris Kloberdanz 2009-11-10T23:06:54Z 2009-11-10T23:06:54Z <p>You might want to check out <a href="http://w3schools.com/" rel="nofollow">w3schools</a>.</p> http://stackoverflow.com/questions/1708631/how-to-send-mail-to-hundreds-of-receivers/1708655#1708655 0 Answer by Chris Kloberdanz for How to send mail to hundreds of receivers? Chris Kloberdanz 2009-11-10T15:09:09Z 2009-11-10T15:09:09Z <p>You say you don't want to install a framework, but I don't think PHP's mail is really built for sending out massive amounts of email quickly and efficiently. I would try Pear's <a href="http://pear.php.net/package/Mail%5FQueue/" rel="nofollow">Mail_Queue</a> or <a href="http://pear.php.net/package/Mail" rel="nofollow">Mail</a>.</p> http://stackoverflow.com/questions/1706077/is-there-any-function-faster-than-fopen/1706089#1706089 0 Answer by Chris Kloberdanz for Is there any function faster than fopen() ?? Chris Kloberdanz 2009-11-10T07:01:39Z 2009-11-10T07:01:39Z <p>I don't know if it's faster, but <a href="http://php.net/manual/en/function.file-get-contents.php" rel="nofollow">file_get_contents()</a> is more succinct. With a binary file like an image you will probably want to use the FILE_BINARY flag.</p> http://stackoverflow.com/questions/1705029/php-conditional/1705043#1705043 3 Answer by Chris Kloberdanz for PHP & Conditional Chris Kloberdanz 2009-11-10T01:06:12Z 2009-11-10T01:06:12Z <p>It is the <a href="http://www.php.net/manual/en/language.operators.bitwise.php" rel="nofollow">bitwise</a> and operator.</p> http://stackoverflow.com/questions/1421450/delay-when-using-php-mail-function-to-send-email-through-exchange-using-sendma/1704627#1704627 0 Answer by Chris Kloberdanz for Delay when using PHP mail() function to send email through Exchange (using sendmail as a relay) Chris Kloberdanz 2009-11-09T23:17:47Z 2009-11-09T23:17:47Z <p>An alternative might be to use PEAR's <a href="http://pear.php.net/package/Mail" rel="nofollow">Mail</a>. I have used it to send emails to qmail and Exchange SMTP servers.</p> http://stackoverflow.com/questions/1699028/is-there-a-better-place-to-store-large-amounts-of-unused-data-than-a-the-database/1699038#1699038 2 Answer by Chris Kloberdanz for Is there a better place to store large amounts of unused data than a the database? Chris Kloberdanz 2009-11-09T04:05:27Z 2009-11-09T04:05:27Z <p>I don't know what kind of data these XML streams contain, but maybe you can parse it and store only the pertinent info in a table or set of tables that way you can eliminate some of the XML's bloat.</p> http://stackoverflow.com/questions/1678368/create-thumbnail-from-adobe-illustrator-file/1678406#1678406 0 Answer by Chris Kloberdanz for Create thumbnail from Adobe Illustrator file? Chris Kloberdanz 2009-11-05T04:47:27Z 2009-11-05T05:01:40Z <p>If you can save it in PDF, PS, or EPS format you may be able to manipulate it in things like <a href="http://www.imagemagick.org/script/index.php" rel="nofollow">ImageMagick</a> or <a href="http://pages.cs.wisc.edu/~ghost/" rel="nofollow">Ghostscript</a>.</p> <p>EDIT:</p> <p>I think you can actually use ImageMagick's <a href="http://www.imagemagick.org/script/convert.php" rel="nofollow">convert</a> with *.ai files as well.</p> http://stackoverflow.com/questions/1461020/looking-for-some-ooad-advice-for-reporting 0 Looking for some OOAD advice for Reporting Chris Kloberdanz 2009-09-22T16:06:28Z 2009-11-02T00:00:01Z <p>I have the need to create an arbitrary amount of reports in many different file formats. Most of the formats I am able to use Smarty to template the output. However, outputting to Excel and PDF complicate things and require the use of FPDF or TCPDF and PHPExcel.</p> <p>I am trying to figure out the best way to organize my classes via one or more design patterns (if possible).</p> <p>Output formats: Text - Smarty Text (w/PCL formatting) - Smarty CSV - Smarty HTML - Smarty Excel - PHPExcel PDF - FPDF / TCPDF</p> <p>These formats need to be able to be in memory for streaming or written to file for later use.</p> <p>The only thing that is consistent across all reports is that they need data and up until the addition of PDF and Excel support, a template. Currently I have a Report class that has an abstract method called getData(). Each subclass (e.g. SpecificReport) gets the data it needs and stores it in a class property for binding to a template etc.</p> <p>Each report needs to be available in all formats.</p> <p>The Report class handles the output at the moment, but adding support for Excel and PDF is making that impossible. There is a lot more than just binding the data to a template like with Smarty. Each report requires specific code. I suppose I could just overload those methods in each report subclass.</p> <p>Has anyone encountered a similar task? Any advice is welcome.</p> http://stackoverflow.com/questions/1653032/yet-another-regular-expression/1653053#1653053 5 Answer by Chris Kloberdanz for Yet Another Regular Expression Chris Kloberdanz 2009-10-31T01:12:40Z 2009-10-31T01:12:40Z <p>You would be much better served by something like an XML/HTML parser. See <a href="http://stackoverflow.com/questions/292926/robust-mature-html-parser-for-php">here</a>.</p> http://stackoverflow.com/questions/1652964/php-how-to-check-a-script-version/1652996#1652996 2 Answer by Chris Kloberdanz for PHP - How to check a script version Chris Kloberdanz 2009-10-31T00:46:32Z 2009-10-31T00:55:20Z <p>If the file is just the version number then I would suggest trying: </p> <p><a href="http://us.php.net/manual/en/function.file-get-contents.php" rel="nofollow">file_get_contents()</a></p> <pre><code>$version = file_get_contents('http://wwww.example.com'); if (VERSION != trim($version)) { } </code></pre> http://stackoverflow.com/questions/363038/whats-the-best-to-way-to-manage-a-singleton 1 What's the best to way to manage a singleton? Chris Kloberdanz 2008-12-12T15:11:36Z 2009-10-30T09:49:12Z <p>I am messing around with different PHP logging frameworks. I am currently trying PEAR::Log. I figured that I would use its <code>singleton</code> function to make sure there was only one instance of the class around.</p> <p>I have a small daemon-like script I wanted to add logging to because it was probably the simplest script in the system to test. This script has several functions. I will probably want to log things inside the functions.</p> <p>The question I have is how do I best manage this singleton? </p> <p>To me calling this:</p> <pre><code>&amp;Log::singleton($handler, $name, $ident, $conf, $maxLevel); </code></pre> <p>in every function doesn't seem ideal especially since I already specified all of the options in the initial call. Pear::Log serializes this info, but from what it looks like you still have to provide all of those variables to get the instance.</p> <p>Another alternative is passing the instance into every function. Again, seems like it's less than ideal.</p> <p>I suppose you could make the instance a 'global' as well.</p> <p>What do you in this situation? Are there better solutions? </p> http://stackoverflow.com/questions/1638636/vb-net-index-was-out-of-range-error/1638659#1638659 1 Answer by Chris Kloberdanz for vb.net: index was out of range error Chris Kloberdanz 2009-10-28T17:07:19Z 2009-10-28T17:07:19Z <p>Looks like it could be an off by one error. What is i initialized to? 0 or 1?</p> http://stackoverflow.com/questions/232228/whats-the-best-method-to-use-store-encryption-keys-in-mysql 3 What's the best method to use / store encryption keys in MySQL Chris Kloberdanz 2008-10-24T01:43:14Z 2009-10-28T11:51:41Z <p>I plan on using MySQL and it's built-in encryption functionality to encrypt / decrypt certain columns in certain tables. The concern I have is that I need to store the key somewhere. I could certainly store the key in a file and control the permissions of that file and the permissions of the application that accesses it, but is that enough? I could also create a web service to get the key or something.</p> <p>I am in a small shop where I would be the only one (possibly one other person) that would have access to the machine that the application was on. <strong>Edit: I should add that there is a web facing part of this application that would need to decrypt the data unless I added a tier.</strong> </p> <p>I have looked ad nauseum, but no one seems to have a bulletproof answer.</p> <p>Is this one of those problems where you have to settle for good enough? Given that I am using MySQL and PHP (possibly Python) is there a better way to approach this?</p> http://stackoverflow.com/questions/1635324/how-can-i-identify-and-remove-redundant-code-in-perl/1635379#1635379 0 Answer by Chris Kloberdanz for How can I identify and remove redundant code in Perl? Chris Kloberdanz 2009-10-28T05:42:16Z 2009-10-28T05:42:16Z <p>If you are on Linux you might use <code>grep</code> to help you make list all of the functions in your codebase. You will probably need to do what Ether suggests and really go through the code to understand it if you haven't already.</p> <p>Here's an over-simplified example:</p> <pre><code>grep -r "sub " codebase/* &gt; function_list </code></pre> <p>You can look for duplicates this way too. This idea may be less effective if you are using Perl's OOP capability.</p> <p>It might also be worth mentioning <a href="http://naturaldocs.org/" rel="nofollow">NaturalDocs</a>, a code documentation tool. This will help you going forward.</p> http://stackoverflow.com/questions/1635186/software-that-listens-to-http-posts/1635200#1635200 0 Answer by Chris Kloberdanz for software that listens to http posts Chris Kloberdanz 2009-10-28T04:28:48Z 2009-10-28T04:28:48Z <p>Also check out <a href="https://addons.mozilla.org/en-US/firefox/addon/966" rel="nofollow">Tamper Data</a> for Firefox.</p> http://stackoverflow.com/questions/1635100/php-function-construct-question-involving-this-get-get/1635167#1635167 0 Answer by Chris Kloberdanz for php function __construct() question involving this->get = $_GET Chris Kloberdanz 2009-10-28T04:16:36Z 2009-10-28T04:24:46Z <p>You can do pretty much anything you want in the constructor. Having said that, it doesn't mean you should. Many would argue that anything meaningful or that could throw an exception should not be in a constructor. Anyways, If you are going to use this class you could do something like this:</p> <pre><code>class qwerty { private $get; public function __construct($params) { $this-&gt;get = $this-&gt;sanitize($params); } public function sanitize($params) { $sanitized = $params; foreach ($sanitized as $key =&gt; $value) { $sanitized[$key] = strip_tags($value); } return $sanitized; } public function getField($field) { if (array_key_exists($field,$this-&gt;get)) { return $this-&gt;get[$field]; } else { return null; } } } $q = new qwerty($_GET); $q-&gt;getField('id'); </code></pre> http://stackoverflow.com/questions/1628699/test-if-a-directory-is-a-sub-directory-of-another-folder/1628749#1628749 -2 Answer by Chris Kloberdanz for Test if a directory is a sub directory of another folder Chris Kloberdanz 2009-10-27T04:14:47Z 2009-10-27T18:18:25Z <p>Is it as easy as this?</p> <pre><code>const UPLOAD_DIR = '/var/www/site/uploads/'; </code></pre> <p>Every time you need to use it you just use the constant since it sounds like there is only one place you can upload. That way you can't screw up as easily.</p> <pre><code>if ($dir != UPLOAD_DIR) { // No access; Error } </code></pre> <p>Sometimes to protect you from yourself you just have to be vigilant. Just make sure to call your is_sub_dir() before all file access.</p> <p><strong>EDIT:</strong></p> <p>Now that the question is more clear I see my answer makes no sense. =) My only other advice is to reiterate what others have said: sanitize, sanitize, sanitize.</p> http://stackoverflow.com/questions/1629005/in-php-what-is-a-tick/1629021#1629021 3 Answer by Chris Kloberdanz for In PHP, what is a Tick? Chris Kloberdanz 2009-10-27T06:18:41Z 2009-10-27T06:29:51Z <p>I found a decent explanation <a href="http://www.phpdig.net/ref/rn62.html" rel="nofollow">here</a>. I have used them in writing daemons.</p> <p>I think declare() might be planned for deprecation. I know it was at one point.</p> <p><strong>EDIT:</strong> It was the ticks directive that was planned for deprecation.</p> http://stackoverflow.com/questions/1628646/calling-a-system-command-and-bringing-back-the-results/1628684#1628684 0 Answer by Chris Kloberdanz for Calling a system() command and bringing back the results Chris Kloberdanz 2009-10-27T03:52:58Z 2009-10-27T03:58:03Z <p>if you stick with <a href="http://php.net/manual/en/function.system.php" rel="nofollow">system()</a> then the best you can do is get the return code back from the process. Find out what the return code is for success. Use it to determine if your operation was, in fact, successful. </p> <p>If you use <a href="http://www.php.net/manual/en/function.exec.php" rel="nofollow">exec()</a> or <a href="http://www.php.net/manual/en/function.passthru.php" rel="nofollow">passthru()</a> you can get the output of the command as well.</p> <p>You might be able to get the progress bar using some magic with <a href="http://us3.php.net/manual/en/function.popen.php" rel="nofollow">popen()</a>, but I am not sure. </p> http://stackoverflow.com/questions/1616231/php-combining-url-with-variable/1616252#1616252 1 Answer by Chris Kloberdanz for php combining url with variable Chris Kloberdanz 2009-10-23T22:26:18Z 2009-10-23T22:26:18Z <p>Alternate way:</p> <pre><code>$url = "www.example.com/{$link}"; </code></pre> http://stackoverflow.com/questions/1615657/smtp-php-help-me-please/1615764#1615764 1 Answer by Chris Kloberdanz for SMTP php help me please Chris Kloberdanz 2009-10-23T20:39:08Z 2009-10-23T20:39:08Z <p>Your $from might be your problem. That isn't exactly a valid email address. Try either changing it to a real address or omitting altogether.</p> http://stackoverflow.com/questions/131729/best-it-programming-technology-related-acronym/1603935#1603935 0 Answer by Chris Kloberdanz for Best IT/Programming/Technology related Acronym Chris Kloberdanz 2009-10-21T22:06:57Z 2009-10-21T22:06:57Z <p>I always got a kick out of this one:</p> <p>SATAN: Security Administrator's Tool for Analyzing Networks</p> <p>I have the old book sitting on a shelf in my office and everyone gives me a strange look when they see it for the first time.</p> http://stackoverflow.com/questions/1601872/corrupt-image-file-after-uploading-it-using-ftp-command-from-linux-with-type-asc/1601881#1601881 1 Answer by Chris Kloberdanz for Corrupt image file after uploading it using ftp command from linux, with type ASCII Chris Kloberdanz 2009-10-21T16:07:44Z 2009-10-21T16:07:44Z <p>Try transferring it using binary mode.</p> http://stackoverflow.com/questions/1591350/how-can-i-make-two-textboxes-appear-as-one/1591431#1591431 0 Answer by Chris Kloberdanz for How can I make two textboxes appear as one? Chris Kloberdanz 2009-10-19T22:14:59Z 2009-10-19T22:14:59Z <p>I guess I am curious as to why you would want to do this. As Thomas mentioned, it seems to go against usability. Are you looking for something like <a href="http://www.w3schools.com/TAGS/tag%5Ftextarea.asp" rel="nofollow">TextArea</a> </p> http://stackoverflow.com/questions/1589107/keep-shell-open-with-php-to-allow-multiple-calls/1589281#1589281 1 Answer by Chris Kloberdanz for Keep shell open with PHP to allow multiple calls? Chris Kloberdanz 2009-10-19T15:15:15Z 2009-10-19T15:15:15Z <p>It seems like this could be a job for PHP's built-in <a href="http://php.net/manual/en/book.ftp.php" rel="nofollow">FTP</a> functionality or <a href="http://php.net/manual/en/book.expect.php" rel="nofollow">Expect</a>. </p> http://stackoverflow.com/questions/248478/can-callback-methods-in-phps-sessionsetsavehandler-be-private 2 Can callback methods in PHP's session_set_save_handler be private? Chris Kloberdanz 2008-10-29T21:26:25Z 2009-10-13T17:01:59Z <p>I am writing a custom session handler in PHP and trying to make the methods defined in session_set_save_handler private.</p> <pre><code>session_set_save_handler( array('Session','open'), array('Session','close'), array('Session','read'), array('Session','write'), array('Session','destroy'), array('Session','gc') ); </code></pre> <p>For example I can set the open function to be private without any errors, but when I make the write method private it barks at me.</p> <blockquote> <p>Fatal error: Call to private method Session::write() from context '' in Unknown on line 0</p> </blockquote> <p>I was just wondering if this was a bug or there is a way around this. Barring that I can certainly just make it public, but I'd rather not. There was a post from last year on php.net eluding to a similar thing, but just want to know if anyone had any ideas. Does it really matter? I am using PHP 5.2.0 on my development box, but could certainly upgrade. </p> http://stackoverflow.com/questions/1798741/subversion-command-line-commit-does-nothing/1798750#1798750 Comment by Chris Kloberdanz on Subversion command line commit does nothing Chris Kloberdanz 2009-11-25T18:05:55Z 2009-11-25T18:05:55Z I know it seems obvious, but did you edit the correct copy of the file? Also try svn diff myFile.txt. My guess is that will return nothing too. http://stackoverflow.com/questions/1798741/subversion-command-line-commit-does-nothing/1798757#1798757 Comment by Chris Kloberdanz on Subversion command line commit does nothing Chris Kloberdanz 2009-11-25T17:56:01Z 2009-11-25T17:56:01Z Wouldn't it say that myFile.txt is not under version control, though? http://stackoverflow.com/questions/1770974/best-practice-to-send-secure-information-over-e-mail/1771015#1771015 Comment by Chris Kloberdanz on Best practice to send secure information over e-mail? Chris Kloberdanz 2009-11-20T15:16:23Z 2009-11-20T15:16:23Z +1 for running the other way. I can't think of a reason why you would NEED to send an SSN over email. Sounds like a HIPAA nightmare. http://stackoverflow.com/questions/1767117/how-to-sftp-upload-files-from-php/1767145#1767145 Comment by Chris Kloberdanz on How to SFTP upload files from PHP Chris Kloberdanz 2009-11-20T14:45:40Z 2009-11-20T14:45:40Z This probably isn't available by default. You need the PECL ssh2 extension with libssh2. http://stackoverflow.com/questions/1732285/960-header-left-sidebar-main-with-4-rows-and-right-sidebar Comment by Chris Kloberdanz on 960 - header, left-sidebar, main with 4 rows and right-sidebar Chris Kloberdanz 2009-11-13T22:27:52Z 2009-11-13T22:27:52Z Please be more specific and/or post the problem code. http://stackoverflow.com/questions/1731333/how-do-i-tell-what-type-of-value-is-in-a-perl-variable/1731356#1731356 Comment by Chris Kloberdanz on How do I tell what type of value is in a Perl variable? Chris Kloberdanz 2009-11-13T20:20:19Z 2009-11-13T20:20:19Z @Adam: I guess I was thinking in more in general, but the OP did say $x (as opposed to @x or %x). So, you're right. http://stackoverflow.com/questions/1731333/how-do-i-tell-what-type-of-value-is-in-a-perl-variable/1731356#1731356 Comment by Chris Kloberdanz on How do I tell what type of value is in a Perl variable? Chris Kloberdanz 2009-11-13T19:33:17Z 2009-11-13T19:33:17Z I thought ref() would only tell you what type of reference it is and return nothing if it isn't one. http://stackoverflow.com/questions/1720398/software-development-for-browser Comment by Chris Kloberdanz on software development for browser Chris Kloberdanz 2009-11-12T07:01:03Z 2009-11-12T07:01:03Z There are several well-established browsers out there. Is this a need or a desire? http://stackoverflow.com/questions/1719139/why-does-my-xsd-file-fail-to-parse-with-xmllibxml Comment by Chris Kloberdanz on Why does my XSD file fail to parse with XML::LibXML? Chris Kloberdanz 2009-11-12T00:50:45Z 2009-11-12T00:50:45Z Could you post the error message and possibly some code? http://stackoverflow.com/questions/1713429/remote-mysql-access/1713434#1713434 Comment by Chris Kloberdanz on Remote Mysql access Chris Kloberdanz 2009-11-11T17:04:02Z 2009-11-11T17:04:02Z You should probably ask that question on serverfault.com. http://stackoverflow.com/questions/1713429/remote-mysql-access/1713434#1713434 Comment by Chris Kloberdanz on Remote Mysql access Chris Kloberdanz 2009-11-11T06:52:45Z 2009-11-11T06:52:45Z I completely agree. I was just using the OP's example. http://stackoverflow.com/questions/1711861/tables-were-deprecated-and-javascript-has-libraries-help-me-catch-up/1711893#1711893 Comment by Chris Kloberdanz on Tables were deprecated? And JavaScript has libraries? Help me catch up! Chris Kloberdanz 2009-11-10T23:39:43Z 2009-11-10T23:39:43Z @Breton and @aehiilrs: Good points http://stackoverflow.com/questions/1711861/tables-were-deprecated-and-javascript-has-libraries-help-me-catch-up/1711893#1711893 Comment by Chris Kloberdanz on Tables were deprecated? And JavaScript has libraries? Help me catch up! Chris Kloberdanz 2009-11-10T23:19:56Z 2009-11-10T23:19:56Z I have only been there a few times and the info was right. So, I guess that wasn't a good enough litmus test. http://stackoverflow.com/questions/1652946/how-many-tables-are-recommended-in-a-sql-server-express-database Comment by Chris Kloberdanz on How many tables are recommended in a SQL Server Express database? Chris Kloberdanz 2009-10-31T00:29:47Z 2009-10-31T00:29:47Z Without knowing anything about the application you are writing this question is very difficult to answer. http://stackoverflow.com/questions/1635211/what-is-a-good-programming-related-senior-quote/1635221#1635221 Comment by Chris Kloberdanz on What is a Good Programming Related Senior Quote? Chris Kloberdanz 2009-10-28T04:39:32Z 2009-10-28T04:39:32Z This is the first thing I learned in my Pascal class in High School. Then it was Murphy's Law.