User David McLaughlin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T06:19:56Zhttp://stackoverflow.com/feeds/user/3404http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/115425/how-do-i-get-a-list-of-installed-cpan-modules11How do I get a list of installed CPAN modules?David McLaughlin2008-09-22T15:15:51Z2009-11-14T03:11:11Z
<p>Aside from trying</p>
<pre><code>perldoc <module name>
</code></pre>
<p>individually for any CPAN module that takes my fancy or going through the file system and looking at the directories I have no idea what modules we have installed. </p>
<p>What's the easiest way to just get a big list of every CPAN module installed? From the command line or otherwise.</p>
http://stackoverflow.com/questions/342468/how-can-i-execute-inefficient-code-only-at-compile-time-when-using-modperl5How can I execute inefficient code only at compile time when using mod_perl?David McLaughlin2008-12-04T23:42:29Z2009-07-16T16:14:29Z
<p>I've been benchmarking the performance of a framework I'm writing in Perl and I'm getting a 50% decrease in requests per second over our existing codebase (some hit is understandable, because we're going from procedural spaghetti code to an OOP MVC framework).</p>
<p>The application is running under mod_perl, and I've added <a href="http://search.cpan.org/dist/Moose/" rel="nofollow">Moose</a> and all my framework code into the <a href="http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlPostConfigRequire_" rel="nofollow">startup.pl script</a>, which itself doubled my requests per second amount. I'm looking to further enhance this number to get it as close as possible to the existing amount. The argument is there that this is premature optimisation, but there are a couple of glaring inefficiencies that I'd like to fix and see how it effects performance.</p>
<p>Like most frameworks, I have a configuration file and a dispatcher. The config part is handled by <a href="http://search.cpan.org/dist/Config-General/" rel="nofollow">Config::General</a>, so a bit of IO and parsing is involved to get my config file loaded into the app. The biggest problem I see here is that I'm doing this for EVERY REQUEST that comes in! </p>
<p>Running Devel::Dprof on my app points to Config::General::BEGIN and a bunch of related IO modules as one of the major slow points that isn't Moose. So what I'd like to do, and what makes a lot more sense in hindsight is take advantage of mod_perl's persistence and the startup.pl compilation stuff to only do the work to load in the config file once - when the server starts.</p>
<p>The problem is that I'm not too familiar with how this would work. </p>
<p>Currently each project has a PerlHandler bootstrapping class which is pretty lean and looks like this:</p>
<pre><code>use MyApp;
MyApp->new(config_file => '/path/to/site.config')->run();
</code></pre>
<p>MyApp.pm inherits from the framework Project module, which has this code:</p>
<pre><code>my $config = Config::General->new(
-ConfigFile => $self->config_file,
-InterPolateVars => 1,
);
$self->config({$config->getall});
</code></pre>
<p>To only do this at compile time, both my bootstrap and Project base modules will have to change (I think), but I'm pretty unsure as to what changes to make and still keep the code nice and lean. Can anyone point me in the right direction here? </p>
<p><strong>UPDATE</strong></p>
<p>I tried the BEGIN BLOCK in each project module approach as described by ysth in his answer. So I now have:</p>
<pre><code>package MyApp::bootstrap;
use MyApp;
my $config;
BEGIN
{
$config = {Config::General->new(...)->getall};
}
sub handler { ..etc.
MyApp->new(config => $config)->run();
</code></pre>
<p>This quick change alone gave me a <strong>50%</strong> increase in requests per second, confirming my thoughts that the config file was a major bottleneck worth fixing. The benchmark figure on our crotchety old dev machine is 60rps, and my framework has went from 30rps to 45rps with this change alone. For those who say Moose is slow and has a compile time hit.. I got the same (50%) increase when compiling all my Moose code at start-up as I did from pre-compiling my config file.</p>
<p>The only problem I have now is that this violates the DRY principal since the same Config::General->new code is in every BEGIN block with only the path to the config file differing. I have a few different strategies to limit this, but I just wanted to post the results of this change.</p>
http://stackoverflow.com/questions/233320/cannot-import-sqlite-with-python-2-63Cannot import sqlite with Python 2.6David McLaughlin2008-10-24T12:33:24Z2009-06-05T00:44:48Z
<p>I'm running Python 2.6 on UNIX and when I run the interactive prompt (sqlite is supposed to be preinstalled) I get:</p>
<pre><code>[root@idev htdocs]# python
Python 2.6 (r26:66714, Oct 23 2008, 16:25:34)
[GCC 3.2.2 20030222 (Red Hat Linux 3.2.2-5)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import sqlite
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named sqlite
>>> import sqlite
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named sqlite
>>>
</code></pre>
<p>Can anyone help me resolve this? </p>
http://stackoverflow.com/questions/416156/what-are-the-development-processes-like-where-you-work0What are the development processes like where you work?David McLaughlin2009-01-06T11:19:36Z2009-01-06T11:42:21Z
<p>Where I work we have this really simple system for working on code. We have our live application servers and a development staging server which exactly duplicates the live environment. Every product/site we have exists in version control (CVS) and to develop, you check out a CVS module to your local machine, edit the code.. commit it back into CVS and then update the stage site to see your changes. When your changes have been tested and confirmed by a project manager, one of two people sanity-check the changes and push them over to the live server. It's worked like this since I started. </p>
<p><strong>We know this is bad</strong> and we've known for years now. We're currently planning a major overhaul of all our development processes and I'm handling most of the software stuff (code reviews, unit testing, refactoring, etc.) and the development environment is being handled by someone else (my boss), who so far doesn't seem to have done anything. This issue is going to come to a head soon and I want to be fully prepared for when it does.</p>
<p>So do you do all your work on a local server before commiting the changes back to a central repository? Or do you have sandbox areas on a development server and work on your changes/bugfixes on a new branch of the project? Or something completely different?</p>
<p>I'm interested in the entire workflow from receiving a feature request or bug report from a project manager right through to your change making it into the live code base.</p>
http://stackoverflow.com/questions/368000/what-kind-of-software-development-bores-you-what-do-you-enjoy/368109#3681090Answer by David McLaughlin for What kind of software development bores you? What do you enjoy?David McLaughlin2008-12-15T11:44:13Z2008-12-15T11:44:13Z<p>The kind of software development I enjoy is the kind where I'm presented with a problem and asked to come up with a solution.</p>
<p>The most important part is getting to come up with the solution. Working for a big business with products that generate big profits, very rarely do they just delegate a whole product to our development team (and for good reason). Typically, marketing and sales have a big say in the types of features that they can "sell" to the end user and the way the user interface should look. Then the design team gets to sit and put these ideas into a nice user inteface. By the time it reaches the developers, we have a full spec and we only have to implement other peoples ideas on time. And this is exactly the kind of development that bores me. </p>
<p>I understand this way of building products though. We have very talented guys in marketing and sales who help us create fantastic products that the everyman wants. Trying to do their job would be like them trying to write my code for me. So I've found myself seeking out problems that they don't have expertise in - software construction problems. Unmaintainable code, huge amounts of bugs, speed of development, our high turnover, our outdated architecture and the poor morale of our developers in general. I've reached the level in my career where I've been asked to fix these kinds of problems and I'm loving every second of it.</p>
<p>This isn't all code level stuff, but I just love solving (real) problems no matter if it's code issues like designing the perfect class interface or human issues like convincing management to include developers earlier in the development process so they don't feel like monkeys.</p>
<p>All I know is that implemeting a basic CRUD interface can either be the most boring task in the world or the most exciting, depending on how much input I can have on the solution.</p>
http://stackoverflow.com/questions/290431/orm-solutions-for-multi-database-queries0ORM solutions for multi-database queriesDavid McLaughlin2008-11-14T15:32:37Z2008-11-14T16:12:34Z
<p>In an ORM you can have nice syntax like this:</p>
<pre><code>my $results = Model.objects.all()[10];
</code></pre>
<p>And in the Django ORM it even quite nicely handles foreign key relationships and many to many relationships all through the ORM. </p>
<p>However, in MySQL you can run a query like this:</p>
<pre><code>SELECT t1.column1
, t2.column2
, t3.column3
FROM db1.table AS t1
, db2.table AS t2
, db3.table AS t3
WHERE t1.id = t2.t1_id
AND t1.id = t3.t1_id
LIMIT 0,10
</code></pre>
<p>I'm looking for an ORM that can support these types of query natively but can't really see anything that does.</p>
<p>Are there any existing ORMs that can do this? Or are there alternative strategies for tackling this problem?</p>
<p>Whenever I've used a framework like django to build a site, I've kept everything on the same database because I was aware of the limitation. Now I'm working with data that's spread across many different databases, for no apparent reason other than namespacing.</p>
http://stackoverflow.com/questions/233320/cannot-import-sqlite-with-python-2-6/233540#2335400Answer by David McLaughlin for Cannot import sqlite with Python 2.6David McLaughlin2008-10-24T13:32:01Z2008-10-24T13:32:01Z<p>Still getting an error, but different this time:</p>
<pre><code>>>> import sqlite3
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/python-2.6/lib/python2.6/sqlite3/__init__.py", line 24, in <module>
from dbapi2 import *
File "/usr/local/python-2.6/lib/python2.6/sqlite3/dbapi2.py", line 27, in <module>
from _sqlite3 import *
ImportError: No module named _sqlite3
</code></pre>
http://stackoverflow.com/questions/188726/how-many-rockstar-programmers-have-you-met/188804#1888048Answer by David McLaughlin for How many 'rockstar' programmers have you met?David McLaughlin2008-10-09T19:26:19Z2008-10-09T19:26:19Z<p>I don't think its a myth, I just don't think many of them are working in corporate environments. The whole idea behind being a rockstar is not being a workaholic employee of the month, it's more the raw talent and the <em>attitude</em>. In software this is epitomised by the Open Source, Free software movement. Most of the "rockstars" are guys who did major things and then released them for free to the community rather than try to release them and make a profit from them.</p>
<ul>
<li>Linus Torvalds </li>
<li>Sam Stephenson(Prototype)</li>
<li>John Resig (jQuery)</li>
<li>David Heinemeier Hansson (Rails)</li>
</ul>
<p>There will be so many more examples of this. </p>
<p>Have I worked with anybody like that? Unfortunately not. </p>
http://stackoverflow.com/questions/167233/rsync-ignoring-suffix-option0rsync ignoring --SUFFIX optionDavid McLaughlin2008-10-03T14:45:48Z2008-10-03T14:56:51Z
<pre><code>rsync -auve ssh --backup --suffix='2008-10-03-1514539' --backup-dir='/tmp/' module.pm root@web1:/path/to/module.pm
</code></pre>
<p>I run this command without the --backup-dir option and when it copies the file over, it creates a backup with a current timestamp. When I include the --backup-dir option, it makes the backup into the /tmp/ directory but never attaches my suffix. </p>
<p>There is nothing in the <a href="http://samba.anu.edu.au/ftp/rsync/rsync.html" rel="nofollow">manual</a> to suggest that you can't use both these options together. I've played around with the order also and nothing seems to fix it.</p>
<p>Does anyone have a solution to this?</p>
http://stackoverflow.com/questions/157387/is-the-current-economic-crisis-affecting-your-job-as-software-developer/158188#1581881Answer by David McLaughlin for Is the current economic crisis affecting your job as software developer?David McLaughlin2008-10-01T15:23:30Z2008-10-01T15:39:55Z<p>I've been at a big corporation for a while now and recently half our team just left for new jobs. They are now worried about retaining talented developers and replacing them, so in terms of my office, things are really healthy for anyone looking for work.</p>
<p>But, the reason people have been leaving is because this place is like 10 years behind the times. If I didn't introduce stuff like jQuery and Moose(Perl) we'd be building websites with sticks and stones competing against rival companies with RAD frameworks and the latest and greatest technologies.</p>
<p>I've been trying to leave myself, but the "problem" is these guys pay me pretty well so the only positions that interest me have above market rate salaries. I was never worried, because every time I did a job search for "Senior Developer" there would be at least 5~10 jobs with at least my salary on display. Now those types of jobs seem to have completely disappeared from the market and salaries of available jobs have went down from an average of £35k per year to around £25k. </p>
<p>I'm pretty worried that the average salary will lower and soon I'd have to take a paycut to get better working conditions rather than even a sideways move like I was thinking of doing. Six months ago, the idea of that was laughable.</p>
<p>Edit - BTW, I'm from Scotland. I should mention that here the norm is very much to attach an expected salary to a job listing so it's pretty easy to get a quick overview of the state of salaries being offered.</p>
http://stackoverflow.com/questions/153909/why-is-my-javascript-function-sometimes-not-defined/153937#1539371Answer by David McLaughlin for Why is my javascript function sometimes "not defined"?David McLaughlin2008-09-30T16:47:14Z2008-09-30T16:47:14Z<p>It shouldn't be possible for this to happen if you're just including the scripts on the page. The "copyArray" function should always be available when the JS starts executing no matter if it is declared before or after it -- unless you're loading the JS files in dynamically with a dependency library? There are all sorts of problems with timing if that's the case.</p>
http://stackoverflow.com/questions/136033/how-can-i-get-phps-simplicity-but-perls-power/139363#1393633Answer by David McLaughlin for How can I get PHP's simplicity but Perl's power?David McLaughlin2008-09-26T13:03:31Z2008-09-26T13:09:36Z<p>Stuff like Catalyst and CGI::Application are more equivalents of Zend Framework rather than PHP itself. In order to replicate the basic functionality for creating web pages that PHP offers "out the box" then you need two CPAN modules that should be available in every base Perl installation:</p>
<pre><code>use CGI;
use DBI;
</code></pre>
<p>Is all you really need. Now instead of:</p>
<pre><code>$_POST['param']
$_GET['param']
</code></pre>
<p>you have:</p>
<pre><code>my $q = new CGI;
$q->param('param'); # same for post or get
</code></pre>
<p>And instead of:</p>
<pre><code>$dbh = mysql_connect('localhost', 'mysql_user', 'mysql_password');
$sth = mysql_query("SELECT 1 FROM table", $dbh);
while($row = mysql_fetch_assoc($sth))
{
// do something with $row
}
</code></pre>
<p>You have:</p>
<pre><code>my $dbh = DBI->connect('DBI:mysql:host=localhost;', 'mysql_user', 'mysql_password');
my $sth = $dbh->prepare("SELECT 1 FROM table");
$sth->execute();
while(my $row = $sth->fetchrow_hashref)
{
# do stuff with row
}
</code></pre>
<p>The DBI code is slightly more complicated because it offers prepared statments and bound variables so that you don't need to worry about SQL injections. PHP doesn't offer this so you need to use something like PDO or write your own database class.</p>
<p>The only thing left is if you wanted HTML output in a script. But you don't want that do you? You use HTML::Template or Template::Toolkit for that, the same way you should be using Smarty or native templates in PHP.</p>
http://stackoverflow.com/questions/133420/how-do-you-handle-small-sets-of-data4How do you handle small sets of data?David McLaughlin2008-09-25T13:42:49Z2008-09-25T23:10:01Z
<p>With really small sets of data, the policy where I work is generally to stick them into text files, but in my experience this can be a development headache. Data generally comes from the database and when it doesn't, the process involved in setting it/storing it is generally hidden in the code. With the database you can generally see all the data available to you and the ways with which it relates to other data.</p>
<p>Sometimes for really small sets of data I just store them in an internal data structure in the code (like A Perl hash) but then when a change is needed, it's in the hands of a developer. </p>
<p>So how do you handle small sets of infrequently changed data? Do you have set criteria of when to use a database table or a text file or..? </p>
<p>I'm tempted to just use a database table for absolutely everything but I'm not sure if there are any implications to this.</p>
<p><strong>Edit:</strong> For context:</p>
<p>I've been asked to put a new contact form on the website for a handful of companies, with more to be added occasionally in the future. Except, companies don't have contact email addresses.. the users inside these companies do (as they post jobs through their own accounts). Now though, we want a "speculative application" type functionality and the form needs an email address to send these applications to. But we also don't want to put an email address as a property in the form or else spammers can just use it as an open email gateway. So clearly, we need an ID -> contact_email type relationship with companies. </p>
<p>SO, I can either add a column to a table with millions of rows which will be used, literally, about 20 times OR create a new table that at most is going to hold about 20 rows. Typically how we handle this in the past is just to create a nasty text file and read it from there. But this creates maintenance nightmares and these text files are frequently looked over when data that they depend on changes. Perhaps this is a fault with the process, but I'm just interested in hearing views on this.</p>
http://stackoverflow.com/questions/133556/best-programming-novel-to-take-on-holiday/133631#13363148Answer by David McLaughlin for Best programming novel to take on holidayDavid McLaughlin2008-09-25T14:21:11Z2008-09-25T14:21:11Z<p>Microserfs by Douglas Coupland. </p>
<p>Good reminder that, at the end of the day, programming is just a job and you need to make the most of the rest of your life too. </p>
http://stackoverflow.com/questions/132734/presentations-on-switching-from-perl-to-python/132808#1328085Answer by David McLaughlin for Presentations on switching from Perl to PythonDavid McLaughlin2008-09-25T11:52:05Z2008-09-25T11:52:05Z<p>If you can't change a nontechnical manager's mind about how to change from one language to another then you're just not qualified to be suggesting the change or leading the change. </p>
<p>You have to have valid reasons why its better than what already exists - and "I prefer the syntax" or "google uses it" are just not valid reasons financially or even technically.</p>
<p>This is such a massive switch that you need to know in your own mind why it makes sense to do it. </p>
http://stackoverflow.com/questions/132520/good-excuses-not-to-use-version-control/132789#13278931Answer by David McLaughlin for Good excuses NOT to use version controlDavid McLaughlin2008-09-25T11:47:51Z2008-09-25T11:47:51Z<p>You hate your company and want to see them fail.</p>
http://stackoverflow.com/questions/130771/what-tips-do-you-have-to-keep-developers-happy/132567#1325670Answer by David McLaughlin for What tips do you have to keep developers happy?David McLaughlin2008-09-25T10:48:44Z2008-09-25T10:48:44Z<p>I think the key to keeping a developer happy is the 20% rule - give them the time to keep themselves relevant and allow them to experiment with new skills, try a fun project, solve a difficult problem in the company, WHATEVER. Just a break from the day to day shit that drags us all down.</p>
<p>It's a no-brainer to implement this: </p>
<ol>
<li>It's constant practical training</li>
<li>It will make them better developers</li>
<li>It will keep your company relevant in the future</li>
</ol>
http://stackoverflow.com/questions/127765/php-optimization-tips/127866#1278664Answer by David McLaughlin for PHP Optimization TipsDavid McLaughlin2008-09-24T15:26:18Z2008-09-24T15:26:18Z<p>If you really need to optimise "the PHP" code then using a "<a href="http://en.wikipedia.org/wiki/Alternative_PHP_Cache#Alternative_PHP_Cache" rel="nofollow">PHP accelerator</a>" is probably the best bang for your buck - it basically just caches the compiled bytecode of scripts so this operation doesn't have to be done repeatedly. Useful for OOP with lots of different files, etc.</p>
http://stackoverflow.com/questions/120228/php-running-scheduled-jobs-cron-jobs/122168#1221681Answer by David McLaughlin for PHP: running scheduled jobs (cron jobs)David McLaughlin2008-09-23T16:36:36Z2008-09-23T16:36:36Z<p>If you have a cPanel host, you can add cron jobs through the web interface.Go to Advanced -> Cron Jobs and use the non-advanced form to set up the cron frequency. You want a command like this:</p>
<pre><code>/usr/bin/php /path/to/your/php/script.php
</code></pre>
http://stackoverflow.com/questions/120314/rubyonrails-newbie-question-which-version-of-rails-should-i-start-with/120325#1203257Answer by David McLaughlin for RubyOnRails newbie question- Which version of rails should i start with?David McLaughlin2008-09-23T10:59:21Z2008-09-23T10:59:21Z<p>I would definitely go with v2.x.</p>
<p>The documentation and tutorials are definitely sparse at the moment (which was pretty surprising given how hyped and popular the framework is) and most of the 1.2 tutorials do not work with v2.x </p>
<p>However I followed <a href="http://www.akitaonrails.com/2007/12/12/rolling-with-rails-2-0-the-first-full-tutorial" rel="nofollow">this tutorial</a> for Rails 2.0 and managed to get my first Rails app set up successfully. Once you get past that, a lot of the basics are easy to figure out. </p>
<p>There are plenty of communities (or even here) where you can ask specific questions also. </p>
http://stackoverflow.com/questions/120164/how-to-work-in-untestable-legacy-code-in-bug-fixing/120221#1202211Answer by David McLaughlin for How to work in untestable legacy code- in bug fixingDavid McLaughlin2008-09-23T10:25:33Z2008-09-23T10:25:33Z<p>You adapt to the problem and get on with it. </p>
<p>If more bugs arise out of fixing the bugs you need to explain to your employer exactly why this occured and why it would be better to NEVER let that mess happen again. This is how change occurs in a corporate environment. What you shouldn't do is go in there and do an absolutely perfect job without raising the problems you're having (your low morale counts as a problem) working with that code. If you want stuff like Unit Testing to become a de facto standard, you need to explain the benefits - technical and business.</p>
<p>People had to refactor and bug fix without unit testing for decades before all this Unit Testing stuff came along, just find the bugs and fix them as best as you can. Then cross your fingers. </p>
http://stackoverflow.com/questions/119949/when-to-use-test-scripts-over-unit-testing/119975#1199754Answer by David McLaughlin for When to use test scripts over unit testing?David McLaughlin2008-09-23T09:06:09Z2008-09-23T09:06:09Z<p>One of the answers on SO to the question of 'the limitations of Unit Testing' was that a unit testing becomes convoluted when it's used to test anything to do with INTEGRATION rather than function. Connecting to and using external services (database, SSH'ing to a another server, etc.) and User Interfaces were two of the examples used. </p>
<p>It's not that you CANT use Unit Testing for these things, its just that the difficulty involved in covering all the bases makes using this method of testing not worth it except in cases where reliability is paramount.</p>
<p>I use "script tests" for all my custom JavaScript UI code (template engine, effects and animations, etc.) and I find it quick and reliable if done right. </p>
http://stackoverflow.com/questions/110933/how-should-i-choose-between-get-and-post-methods-in-html-forms/110939#11093921Answer by David McLaughlin for How should I choose between GET and POST methods in HTML forms?David McLaughlin2008-09-21T12:48:01Z2008-09-21T12:48:01Z<p>To choose between them I use this simple rule:</p>
<p>GET for reads. (reading data and displaying it)</p>
<p>POST for anything that writes (i.e updating a database table, deleting an entry, etc.)</p>
<p>The other consideration is that GET is subjected to the maximum URI length and of course can't handle file uploads. </p>
<p><a href="http://www.cs.tut.fi/~jkorpela/forms/methods.html" rel="nofollow">This page has a good summary</a>.</p>
http://stackoverflow.com/questions/103281/what-happens-if-mysql-connections-continually-arent-closed-on-php-pages/103293#10329312Answer by David McLaughlin for What happens if MySQL connections continually aren't closed on PHP pages?David McLaughlin2008-09-19T16:06:51Z2008-09-19T16:06:51Z<p>From: <a href="http://us3.php.net/manual/en/mysqli.close.php" rel="nofollow">http://us3.php.net/manual/en/mysqli.close.php</a></p>
<blockquote>
<p>"Open connections (and similar resources) are automatically destroyed at the end of script execution. However, you should still close or free all connections, result sets and statement handles as soon as they are no longer required. This will help return resources to PHP and MySQL faster."</p>
</blockquote>
http://stackoverflow.com/questions/102929/how-is-ajax-implemented-and-how-does-it-help-web-dev/103030#1030301Answer by David McLaughlin for How is AJAX implemented, and how does it help web dev?David McLaughlin2008-09-19T15:40:50Z2008-09-19T15:40:50Z<p>Every website can benefit from AJAX, but in my opinion the biggest benefit to AJAX comes in data entry sections - forms basically. I have done entire sites where the front end - the part the user sees had almost no AJAX functionality in it. All the AJAX stuff was in the administration control panel for assisting in (correct!) data entry. </p>
<p>There is nothing worse than submitting a form and getting back an error, using AJAX you can pretty much prevent this for everything but file uploads.</p>
http://stackoverflow.com/questions/102785/what-single-url-should-every-web-developer-have-bookmarked/102970#1029704Answer by David McLaughlin for What single URL should every web developer have bookmarked?David McLaughlin2008-09-19T15:36:05Z2008-09-19T15:36:05Z<p><a href="http://www.reddit.com/r/programming/" rel="nofollow">http://www.reddit.com/r/programming/</a></p>
http://stackoverflow.com/questions/101893/how-to-combine-requests-for-multiple-javascript-files-into-one-http-request/101941#1019416Answer by David McLaughlin for How to combine requests for multiple javascript files into one http request?David McLaughlin2008-09-19T13:46:40Z2008-09-19T13:53:50Z<p>There are various ways, the two most obvious would be:</p>
<ol>
<li>Build a tool like YUI which builds a bespoke, unique version based on the components you ticked as required so that you can still serve the file as static. MooTools and jQuery UI all provide package-builders like this when you download their package to give you the most streamlined and effecient library possible. I'm sure a generic all purpose tool exists out there.</li>
<li>Create a simple Perl/PHP/Python/Ruby script that serves a bunch of JavaScript files based on the request. So "onerequest.js?load=ui&load=effects" would go to a PHP script that loads in the files and serves them with the correct content-type. There are many examples of this but personally I'm not a fan. </li>
</ol>
<p>I prefer not to serve static files through any sort of script, but I also like to develop my code with 10 or so seperate small class files without the cost of 10 HTTP requests. So I came up with a custom build process that combines all the most common classes and functions and then minifies them into a single file like project.min.js and have a condition in all my views/templates that includes this file on production. </p>
<p>Edit - The "custom build process" is actually an extremely simple perl script. It reads in each of the files that I've passed as arguments and writes them to a new file, optionally passing the entire thing through <a href="http://www.crockford.com/javascript/jsmin.html" rel="nofollow">JSMIN</a> (available in all your favourite languages) automatically. </p>
<p>At the command like it looks like:</p>
<pre><code>perl build-project-master.pl core.js class1.js etc.js /path/to/live/js/file.js
</code></pre>
http://stackoverflow.com/questions/101719/useful-perl-modules/101736#10173613Answer by David McLaughlin for Useful Perl modulesDavid McLaughlin2008-09-19T13:18:07Z2008-09-19T13:28:31Z<p>DBI is pretty useful too. </p>
<p>It's "the best" because it provides an interface for all your Database connection needs. DBI is so good that I've actually never connected to a database using Perl without it. For a language whose motto is "There's More than One Way to Do it" that's pretty damn impressive.</p>
http://stackoverflow.com/questions/100876/how-do-you-refactor-your-old-php-code/100982#1009826Answer by David McLaughlin for How do you refactor your old PHP code?David McLaughlin2008-09-19T10:29:57Z2008-09-19T10:29:57Z<p>This article really highlights the dangers of refactoring/redeveloping old ugly code:</p>
<p><a href="http://www.1729.com/blog/EconomicsOfTestingUglyCode.html" rel="nofollow">http://www.1729.com/blog/EconomicsOfTestingUglyCode.html</a></p>
<p>My approach is generally to tackle one small problem at a time, which starts with hiding much of the old code behind an interface where it can be dealt with "later" without affecting any new code. This way anything that I write can be well-designed and have a solid structure, but I don't have to waste too much time trying to refactor and then test weeks/months/years worth of bad code. </p>
http://stackoverflow.com/questions/94920/what-are-some-good-performance-goals-for-a-software-engineer/95429#954290Answer by David McLaughlin for What are some good performance goals for a software engineer?David McLaughlin2008-09-18T18:36:05Z2008-09-18T18:36:05Z<p>Here is some of the "targets" that I have used in my yearly reviews:</p>
<ul>
<li>Read at least X technical books during the year. </li>
<li>Attend at least one conference in my field. </li>
<li>Complete at least one training course in area I think I'm weak in.</li>
<li>Contribute a new tool to the team library that improves or simplifies the existing workflow </li>
<li>Introduce at least one new up and coming "technology" and become the technical lead on that service</li>
</ul>
<p>Anything that gives you more experience, more knowledge and a fresh perspective can only help but make you a better software engineer.</p>
http://stackoverflow.com/questions/41424/how-do-you-implement-a-did-you-mean/255590#255590Comment by David McLaughlin on How do you implement a "Did you mean"?David McLaughlin2009-04-07T16:12:11Z2009-04-07T16:12:11Zperfect, thanks!http://stackoverflow.com/questions/45470/suggest-some-good-mvc-framework-in-perl/45474#45474Comment by David McLaughlin on Suggest some good MVC framework in perlDavid McLaughlin2009-01-06T11:22:21Z2009-01-06T11:22:21ZIf you're not sure of the reasons to move to a framework then personally I don't think you should be doing that. Try the framework out on a personal project and make sure you fully understand it first.http://stackoverflow.com/questions/342468/how-can-i-execute-inefficient-code-only-at-compile-time-when-using-modperl/342482#342482Comment by David McLaughlin on How can I execute inefficient code only at compile time when using mod_perl?David McLaughlin2008-12-05T15:04:39Z2008-12-05T15:04:39ZI never really considered having one huge config file because of how hard it would be to maintain when you have hundreds of projects... but there are actually a lot of benefits in doing something like since we share database connections across all the projects except in a handful of cases. Thanks.http://stackoverflow.com/questions/342468/how-can-i-execute-inefficient-code-only-at-compile-time-when-using-modperl/343821#343821Comment by David McLaughlin on How can I execute inefficient code only at compile time when using mod_perl?David McLaughlin2008-12-05T13:54:43Z2008-12-05T13:54:43ZRead the question? I mentioned startup.pl several times. <a href="http://perl.apache.org/docs/2.0/user/config/config.html#C_PerlPostConfigRequire_" rel="nofollow">perl.apache.org/docs/2.0/…</a>http://stackoverflow.com/questions/342468/how-can-i-execute-inefficient-code-only-at-compile-time-when-using-modperl/343788#343788Comment by David McLaughlin on How can I execute inefficient code only at compile time when using mod_perl?David McLaughlin2008-12-05T13:51:20Z2008-12-05T13:51:20ZOf course. This is one of the first things you learnt to do when using Moose. http://stackoverflow.com/questions/342468/how-can-i-execute-inefficient-code-only-at-compile-time-when-using-modperl/342482#342482Comment by David McLaughlin on How can I execute inefficient code only at compile time when using mod_perl?David McLaughlin2008-12-05T10:53:10Z2008-12-05T10:53:10ZThe problem with this solution is that you have to create this BEGIN block with that code for every project module(each project has its own config file).
I did put this in quickly and I got a 50% increase in requests per second, so I'm upvoting the answer anyway, because it does answer my questionhttp://stackoverflow.com/questions/290431/orm-solutions-for-multi-database-queries/290589#290589Comment by David McLaughlin on ORM solutions for multi-database queriesDavid McLaughlin2008-11-14T17:18:19Z2008-11-14T17:18:19ZThanks, that's a pretty good suggestion. http://stackoverflow.com/questions/188726/how-many-rockstar-programmers-have-you-met/188804#188804Comment by David McLaughlin on How many 'rockstar' programmers have you met?David McLaughlin2008-10-09T22:03:25Z2008-10-09T22:03:25ZI listed some guys I would consider "rockstar" programmers. Guys who didn't settle for the status quo and did something amazing for the community as a whole. The reason no one has worked with those guys is because they are so rare. Not every rock band is full of rockstars.http://stackoverflow.com/questions/167233/rsync-ignoring-suffix-option/167248#167248Comment by David McLaughlin on rsync ignoring --SUFFIX optionDavid McLaughlin2008-10-03T15:10:54Z2008-10-03T15:10:54Zyeah i did, as i mentioned in the question.http://stackoverflow.com/questions/167233/rsync-ignoring-suffix-optionComment by David McLaughlin on rsync ignoring --SUFFIX optionDavid McLaughlin2008-10-03T14:56:06Z2008-10-03T14:56:06Zwhy did you add the linux tag? rsync is a UNIX tool. http://stackoverflow.com/questions/167233/rsync-ignoring-suffix-option/167248#167248Comment by David McLaughlin on rsync ignoring --SUFFIX optionDavid McLaughlin2008-10-03T14:54:35Z2008-10-03T14:54:35ZFrom what I can see, the manual is saying that the --suffix option defaults to "~" without a --backup-dir (which it does). When you specify a backup-dir, then it "defaults" to an empty string, but you should still be able to specify a custom one.http://stackoverflow.com/questions/44629/why-continue-writing-legacy-systems/44658#44658Comment by David McLaughlin on Why continue writing legacy systems?David McLaughlin2008-09-26T10:28:05Z2008-09-26T10:28:05ZGreat answer. I'd back it up with this: <a href="http://www.1729.com/blog/EconomicsOfTestingUglyCode.html" rel="nofollow">1729.com/blog/EconomicsOfTestingUglyCode.html/…</a>http://stackoverflow.com/questions/133420/how-do-you-handle-small-sets-of-data/133448#133448Comment by David McLaughlin on How do you handle small sets of data?David McLaughlin2008-09-25T14:01:25Z2008-09-25T14:01:25ZThanks, this is an interesting idea! http://stackoverflow.com/questions/115425/how-do-i-get-a-list-of-installed-cpan-modules/115439#115439Comment by David McLaughlin on How do I get a list of installed CPAN modules?David McLaughlin2008-09-22T15:35:44Z2008-09-22T15:35:44ZI don't install the modules. I'm just the software dev in a pretty tightly controlled enterprise perl set-up.http://stackoverflow.com/questions/115425/how-do-i-get-a-list-of-installed-cpan-modules/115439#115439Comment by David McLaughlin on How do I get a list of installed CPAN modules?David McLaughlin2008-09-22T15:23:19Z2008-09-22T15:23:19ZThanks for the link to the FAQ. Unfortunately not all the modules I know are installed are returning. Date::Calc doesn't even show up there.