|

Free SAS on my iPad – better than a fishbowl screensaver

In a Dilbert cartoon, the pointy-haired boss tells Dilbert, We need to give our customers what they want. To which Dilbert replies What our customers want is better products for free. Upon reflection, Dilbert and the boss agree to give them a fish bowl screensaver It has been said before that SAS is just offering…

|

How do non-technical managers evaluate programmers?

When I was an undergraduate, I argued with my professor about the management theory that said it was not necessary to understand the business to be an effective manager but only to understand management. The example he gave (and that I never accepted) was of a carriage in the park. The driver of the carriage…

The hardest errors to find are the things that aren’t there: A PHP example

In my defense, the actual program is longer than this … <?php require ‘connect.php’; // Create variables ; $id = strtoupper(trim($_REQUEST[‘id’])) ; $application_date = $_REQUEST[‘yr_of_apply’] . “-” . $_REQUEST[‘month_of_apply’] .”-“. $_REQUEST[‘day_of_apply’] ; $assessment_date = $_REQUEST[‘yr_of_assess’]. “-” . $_REQUEST[‘month_of_assess’] .”-“. $_REQUEST[‘day_of_assess’] ; $eligibility_date = $_REQUEST[‘yr_eligible’].”-“.$_REQUEST[‘month_eligible’] .”-“. $_REQUEST[‘day_eligible’] ; $ipe_date = $_REQUEST[‘yr_ipe’].”-“.$_REQUEST[‘month_ipe’] .”-“. $_REQUEST[‘day_ipe’] ; $notify_rights =…