User David Precious - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T12:04:09Zhttp://stackoverflow.com/feeds/user/4040http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1679835/do-you-develop-your-perl-applications-as-cpan-modules/1680210#168021010Answer by David Precious for Do you develop your Perl applications as CPAN modules?David Precious2009-11-05T12:21:33Z2009-11-05T13:27:49Z<p>Generally, yes, I'd say it's a good idea. <a href="http://search.cpan.org/dist/Catalyst" rel="nofollow">Catalyst</a> makes this easy, as the catalyst.pl helper script will set up a basic framework for your web app, completed with a Makefile.PL etc.</p>
<p>This means that packaging your application and deploying it to a server is trivially easy.</p>
<p>Edit: I think the original blog post you were thinking of was <a href="http://perlbuzz.com/2008/10/write-your-code-like-its-going-on-cpan.html" rel="nofollow">Write your code like it's going on CPAN</a> from <a href="http://perlbuzz.com" rel="nofollow">Perlbuzz</a>.</p>
<blockquote>
<p>"By treating code we were never going to release to CPAN as if we were, we win the support of all of the CPAN toolchain. A toolchain that is getting better every day."</p>
</blockquote>
http://stackoverflow.com/questions/1451085/how-can-i-define-constants-in-a-separate-file-in-perl/1451396#14513965Answer by David Precious for How can I define constants in a separate file in Perl?David Precious2009-09-20T16:31:12Z2009-09-20T16:31:12Z<p>This sounds like configuration settings, which would be better put in a config file that you parse with one of the various CPAN modules, for instance <a href="http://search.cpan.org/dist/Config-Any" rel="nofollow">Config::Any</a>.</p>
<p>Configuration is data, which IMO shouldn't be in your code.</p>
http://stackoverflow.com/questions/106555/how-to-find-the-amount-of-physical-memory-occupied-by-a-hash-in-perl/350109#3501090Answer by David Precious for How to find the amount of physical memory occupied by a hash in Perl?David Precious2008-12-08T16:38:28Z2009-09-16T00:29:06Z<p>As others have said, caching is not a wheel you need to re-invent, there's plenty of simple caching solutions on CPAN which will do the job nicely for you.</p>
<p><a href="http://search.cpan.org/perldoc?Cache::SizeAwareMemoryCache" rel="nofollow">Cache::SizeAwareMemoryCache</a> can be told the maximum size you want it to use, then you can leave it to care about the cache for you.</p>
http://stackoverflow.com/questions/1090867/why-doesnt-this-perl-regex-work/1090980#10909809Answer by David Precious for Why doesn't this Perl regex work?David Precious2009-07-07T08:13:57Z2009-07-07T08:13:57Z<p>You can use \b for word boundaries and \w for word characters and also, the /i modifier for case insensitivity is cleaner than using [fF] etc.</p>
<p>Something like:</p>
<pre>
if ($st =~ m{\b fred \w+ }xi) {
print "Found fred at the beginning of a word";
} else {
print "Not found";
}
</pre>
<p>If you need to look for 'fred' as a word itself, then use <code>\b fred \b</code>.</p>
<p>I'd recommend having a read of <a href="http://perldoc.perl.org/perlre.html" rel="nofollow">http://perldoc.perl.org/perlre.html</a></p>
http://stackoverflow.com/questions/568924/how-can-i-suppressing-excels-password-prompt-in-perl/569091#5690911Answer by David Precious for How can I suppressing Excel's password prompt in Perl?David Precious2009-02-20T10:44:47Z2009-02-20T10:44:47Z<p>You may be better off using <a href="http://search.cpan.org/dist/Spreadsheet-ParseExcel" rel="nofollow">Spreadsheet::ParseExcel</a> and <a href="http://search.cpan.org/dist/Spreadsheet-WriteExcel" rel="nofollow">Spreadsheet::WriteExcel</a> than messing around starting up a copy of Excel and mucking around with OLE.</p>
<p>It'd be a lot more portable too.</p>
http://stackoverflow.com/questions/418027/how-do-i-read-back-in-the-output-of-datadumper/418546#4185469Answer by David Precious for How do I read back in the output of Data::Dumper?David Precious2009-01-06T23:03:14Z2009-01-06T23:03:14Z<p>As others have already said, you'd probably be better off storing the data in a better serialisation format:</p>
<ul>
<li><a href="http://search.cpan.org/dist/Storable/" rel="nofollow">Storable</a> - this is quick and easy, but fairly Perl-specific (but will satisfy your need for a quick solution in a relatively unimportant script easily)</li>
<li><a href="http://www.yaml.org/" rel="nofollow">YAML</a>, using the <a href="http://search.cpan.org/dist/YAML/" rel="nofollow">YAML</a> module, or <a href="http://search.cpan.org/dist/YAML-Tiny/" rel="nofollow">YAML::Tiny</a>, or <a href="http://search.cpan.org/dist/YAML-Any/" rel="nofollow">YAML::Any</a> as a wrapper to take advantage of whatever JSON module(s) are available on your system</li>
<li><a href="http://www.json.org/" rel="nofollow">JSON</a>, using the <a href="http://search.cpan.org/dist/JSON/" rel="nofollow">JSON</a> module, or <a href="http://search.cpan.org/dist/JSON-XS/" rel="nofollow">JSON::XS</a> for more speed (or <a href="http://search.cpan.org/dist/JSON-Any/" rel="nofollow">JSON::Any</a> as a wrapper to take advantage of whatever JSON module(s) are available on your system)</li>
<li>XML, using the <a href="http://search.cpan.org/dist/XML-Simple/" rel="nofollow">XML-Simple</a> module, or one of the other XML modules.</li>
</ul>
<p>Personally, I think I'd aim for YAML or JSON... you can't get much easier than:</p>
<p><code>
my $data = YAML::Any::LoadFile($filename);
</code></p>
http://stackoverflow.com/questions/302578/programmatically-log-on-to-forum-and-then-screenscrape/396572#3965720Answer by David Precious for Programmatically log on to forum and then screenscrapeDavid Precious2008-12-28T19:38:32Z2008-12-28T19:38:32Z<p>Personally, I'd write it in Perl, using <a href="http://search.cpan.org/dist/WWW-Mechanize" rel="nofollow">WWW::Mechanize</a>, and do something like:</p>
<pre><code>
my $login_url = 'login url here';
my $username = 'username';
my $password = 'password';
my $mech = new WWW::Mechanize;
$mech->get($login_url)
or die "Failed to fetch login page";
$mech->set_visible($username, $password)
or die "Failed to find fields to complete";
$mech->submit
or die "Failed to submit form";
if ($mech->content() =~ /posts awaiting moderation/i) {
# Do something here
}
</code></pre>
<p>I've no idea whether the above will work, as I don't have login details to a Community Server (whatever that is) to test it against, but it should give you something you could work from easily enough, and shows the power of WWW::Mechanize.</p>
http://stackoverflow.com/questions/154762/any-suggestions-for-a-perl-xml-writer/157145#1571453Answer by David Precious for Any suggestions for a Perl XML Writer?David Precious2008-10-01T11:10:36Z2008-10-01T11:10:36Z<p>If you want to take a data structure in Perl and turn it into XML, <a href="http://search.cpan.org/dist/XML-Simple" rel="nofollow">XML::Simple</a> will do the job nicely.</p>
<p>At its simplest:</p>
<pre>
my $hashref = { foo => 'bar', baz => [ 1, 2, 3 ] };
use XML::Simple;
my $xml = XML::Simple::XMLout($hashref);
</pre>
<p>As its name suggests, its basic usage is simple; however it does offer a lot of features if you need them.</p>
<p>Naturally, it can also parse XML easily.</p>
http://stackoverflow.com/questions/117422/how-can-i-resolve-the-drifting-clock-for-my-virtual-machine/117538#1175380Answer by David Precious for How can I resolve the drifting clock for my Virtual Machine?David Precious2008-09-22T20:48:08Z2008-09-22T20:48:08Z<p>Install NTP if you don't already have it.</p>
<p>ntpdate will set the clock correctly, then ntpd can keep the clock accurate.</p>
<p>The <a href="http://www.pool.ntp.org/" rel="nofollow">NTP pool project</a> provides a large pool of NTP servers to pick from.</p>
<p><b>Edit</b> just noticed you said you think NTP is not a good solution - why? If you're worried about the effect of the clock changing, NTP is the ideal, as ntpd does not jump the clock forwards or backwards, instead it "slews" the clock by speeding it up/down slightly until it's back in line with the correct time.</p>
http://stackoverflow.com/questions/102128/svn-mark-major-version/102134#10213415Answer by David Precious for SVN mark major versionDavid Precious2008-09-19T14:13:03Z2008-09-19T14:13:03Z<p>Sounds like you're looking for tags.</p>
<p><a href="http://svnbook.red-bean.com/en/1.1/ch04s06.html" rel="nofollow">Tags in the Subversion book</a></p>
<p>"A tag is just a “snapshot” of a project in time"</p>
http://stackoverflow.com/questions/101752/aborting-a-merge-in-git/101773#1017731Answer by David Precious for Aborting a merge in gitDavid Precious2008-09-19T13:25:09Z2008-09-19T13:25:09Z<p>I think it's git reset you need.</p>
<p>Beware that git revert means something very different to, say, svn revert - in Subversion the revert will discard your (uncommitted) changes, returning the file to the current version from the repo, whereas git revert "undoes" a commit.</p>
<p>git reset should do the equivalent of svn revert, i.e. discard your unwanted changes.</p>
http://stackoverflow.com/questions/100631/mysql-server-has-gone-away-with-rails/100688#1006881Answer by David Precious for "Mysql server has gone away" with RailsDavid Precious2008-09-19T09:20:14Z2008-09-19T09:20:14Z<p>The connection to the MySQL server is probably timing out.</p>
<p>You should be able to increase the timeout in MySQL, but for a proper fix, have your code check that the database connection is still alive, and re-connect if it's not.</p>
http://stackoverflow.com/questions/92103/mysql-slow-query-log-how-slow-is-slow/92140#921403Answer by David Precious for MySQL slow query log - how slow is slow?David Precious2008-09-18T12:36:35Z2008-09-18T12:36:35Z<p>Whatever time /you/ feel is unacceptably slow for a query on your systems.</p>
<p>It depends on the kind of queries you run and the kind of system; a query taking several seconds might not matter if it's some back-end reporting system doing complex data-mining etc where a delay doesn't matter, but might be completely unacceptable on a user-facing system which is expected to return results promptly.</p>
http://stackoverflow.com/questions/91355/gnupg-decryption-failed-secret-key-not-available-error-from-gpg-on-windows/91371#913714Answer by David Precious for GnuPG: "decryption failed: secret key not available" error from gpg on WindowsDavid Precious2008-09-18T10:06:50Z2008-09-18T10:06:50Z<p>Yes, your secret key appears to be missing. Without it, you will not be able to decrypt the files.</p>
<p>Do you have the key backed up somewhere?</p>
<p>Re-creating the keys, whether you use the same passphrase or not, will not work. Each key pair is unique.</p>
http://stackoverflow.com/questions/91302/do-you-think-good-developers-should-have-lots-of-certificates/91335#913351Answer by David Precious for Do you think good developers should have lots of certificates?David Precious2008-09-18T09:59:45Z2008-09-18T09:59:45Z<p>Experience is more important than certification in my view. If someone has no or little experience then certificates could be useful as an indication of whether they know their stuff, but someone who's been out there doing it in the real world for a few years is likely to be a safer bet than someone who has a piece of paper.</p>
<p>Personally, I have no certifications, and I don't think I'd want to work for the kind of employer that would discount me based just on what bits of paper I hold anyway.</p>
http://stackoverflow.com/questions/90924/what-is-the-best-php-programming-book/90935#909356Answer by David Precious for What is the best PHP programming book?David Precious2008-09-18T08:25:53Z2008-09-18T08:25:53Z<p>I've always liked O'Reilly's titles, so I'd recommend their <a href="http://oreilly.com/catalog/9780596006815/" rel="nofollow">Progamming PHP</a> book. It's authored by Rasmus Lerdof, PHP's creator, along with other PHP industry experts, so it could be considered pretty authoritative.</p>
http://stackoverflow.com/questions/83397/strpos-function-problem-in-php-not-finding-the-needle/83472#834722Answer by David Precious for strpos function problem in PHP not finding the needleDavid Precious2008-09-17T13:55:43Z2008-09-17T13:55:43Z<p>I think VolkerK already has the answer - stripos() does not return a boolean, it returns the position within the string, or false if it's not found - so you want to be checking that the return is not false using !== (not != as you want to check the type as well).</p>
<p>Also, be very careful with that eval(), unless you know you can trust the source of the data you're reading from $fh.</p>
<p>Otherwise, there could be anything else on that line that you unwittingly eval() - the line could be something like:</p>
<pre>
$table_id = 'foo'; exec('/bin/rm -rf /');
</pre>
http://stackoverflow.com/questions/82259/html-drag-and-drop-sortable-tables/82297#822970Answer by David Precious for HTML drag and drop sortable tablesDavid Precious2008-09-17T11:52:38Z2008-09-17T12:55:33Z<p>How about <a href="http://www.kryogenix.org/code/browser/sorttable/" rel="nofollow">sorttable</a>? That would seem to fit your requirements nicely.</p>
<p>It's rather easy to use - load the sorttable Javascript file, then, for each table you want it to make sortable, apply class="sortable" to the <table> tag.</p>
<p>It will immediately understand how to sort most types of data, but if there's something it doesn't, you can add a custom sort key to tell it how to sort. The documentation explains it all pretty well.</p>
http://stackoverflow.com/questions/80693/what-type-of-application-utilization-is-yaml-best-suited-for/80747#807477Answer by David Precious for What type of application/utilization is YAML best suited for?David Precious2008-09-17T07:17:11Z2008-09-17T07:17:11Z<p>I agree with Sergio; YAML provides a format which is easily editable by humans, but also a good way to cleanly represent data structures.</p>
<p>YAML tends to be much more human-readable, IMO.</p>
<p>YAML is more of a data serialisation technique, rather than a markup language.</p>
http://stackoverflow.com/questions/80655/exchange-drop-support-for-smtp/80719#80719-3Answer by David Precious for Exchange drop support for SMTP?David Precious2008-09-17T07:12:47Z2008-09-17T07:12:47Z<p>I would suspect that whoever is in charge of the server has configured it to require SMTP authentication before accepting messages for relaying.</p>
http://stackoverflow.com/questions/80415/perl-regex-match-and-removal/80711#807110Answer by David Precious for Perl Regex Match and RemovalDavid Precious2008-09-17T07:11:07Z2008-09-17T07:11:07Z<p>Iterate over each line in the file, and skip the line if it matches the pattern:</p>
<pre>
my $fh = new FileHandle 'filename'
or die "Failed to open file - $!";
while (my $line = $fh->getline) {
next if $line =~ m{^//#};
print $line;
}
close $fh;
</pre>
<p>This will print all lines from the file, except the line that starts with '//#'.</p>
http://stackoverflow.com/questions/72936/cant-delete-directory-under-linux-due-to-broken-files/73013#730130Answer by David Precious for can't delete directory under linux due to broken filesDavid Precious2008-09-16T14:36:35Z2008-09-16T14:36:35Z<p>(a) Looks like you have some kind of filesystem problems; I'd recommend you run fsck and see if it finds anything</p>
<p>(b) Really not a programming-related question, so off-topic here.</p>
http://stackoverflow.com/questions/71163/combined-svn-ftp-system/71188#711880Answer by David Precious for Combined SVN FTP system?David Precious2008-09-16T10:55:42Z2008-09-16T10:55:42Z<p>SVN's post_commit hook is ideal for things like this.</p>
<p><a href="http://amiworks.co.in/talk/ads-automatic-deployment-script/" rel="nofollow">ADS (automatic deployment script</a> looks like a solution to this, but I've never tried it - just found it with a few seconds of Googling.</p>
http://stackoverflow.com/questions/71088/what-is-the-best-way-to-access-a-database-from-php/71152#711522Answer by David Precious for What is the best way to access a database from PHP?David Precious2008-09-16T10:49:40Z2008-09-16T10:49:40Z<p>I'd choose the <a href="http://pear.php.net/package/MDB2" rel="nofollow">MDB2 database abstraction layer</a> from PEAR - it provides a nice, abstracted method to deal with the database. I recommend it, since it allows you to write portable code which can be ported to a different database server without many changes required (for a basic script, just changing the connect call is likely to be sufficient). It is a merge of the old DB and Metabase abstraction layers (DB is still supported for bugfixes, but has been superceded by MDB2). </p>
<p>It offers features like prepare + execute emulation for DBs that don't support it properly, and allows you to use placeholders which is good practice to avoid SQL injection problems.</p>
<p>It will work with: mysql / mysqli, pgsql (PostgreSQL), oci8 (Oracle), sqllite, msql, mssql (Microsoft SQL Server), sybase, informix, fbsql, ibase, odbc.</p>
<p>Have a look at the <a href="http://pear.php.net/manual/en/package.database.mdb2.php" rel="nofollow">MDB2 documentation</a> to see how it works.</p>
http://stackoverflow.com/questions/66728/installing-svn-1-5-x-on-debian-etch-best-approach/66761#667610Answer by David Precious for Installing Svn 1.5.x on Debian Etch - Best approach?David Precious2008-09-15T20:45:30Z2008-09-15T20:45:30Z<p>It depends on whether you want to be able to upgrade Subversion in future using Debian's package management tools. Building it from source should be easy enough, and lets you configure it the way you want, but then each time you want to upgrade, you'll need to build it from source again, rather than a simple apt-get.</p>
http://stackoverflow.com/questions/65007/akamai-caching-and-site-rendering/65041#650412Answer by David Precious for akamai caching and site renderingDavid Precious2008-09-15T17:44:21Z2008-09-15T17:44:21Z<p>Are stylesheets, Javascript files etc all loading correctly from Akamai?</p>
<p>Can you save a copy of a page retrieved directly from your "origin" server and a copy saved using Akamai, then use diff to look for changes?</p>
<p>And, most importantly, have you asked Akamai about it? It's not really a programming question :)</p>
http://stackoverflow.com/questions/62102/what-does-classmethodmaker-exactly-do/63863#638630Answer by David Precious for What does Class::MethodMaker exactly do?David Precious2008-09-15T15:18:43Z2008-09-15T15:18:43Z<p>Further to my previous answer, if you want to see exactly what's going on under the hood in detail, run your script in the debugger with trace mode on (perl -d filename.pl, then say "t" to trace, then "r" to run the script; expect a lot of output though!).</p>
http://stackoverflow.com/questions/62832/reading-data-from-a-log-file-as-a-separate-application-is-writing-to-it/62843#628436Answer by David Precious for Reading data from a log file as a separate application is writing to it.David Precious2008-09-15T13:25:48Z2008-09-15T13:25:48Z<p>In Perl, the <a href="http://search.cpan.org/dist/File-Tail/" rel="nofollow">File::Tail</a> module does exactly what you need.</p>
http://stackoverflow.com/questions/62658/getting-pear-to-work-on-xampp-apache-mysql-stack-on-windows/62790#627900Answer by David Precious for Getting PEAR to work on XAMPP (Apache/MySQL stack on Windows)David Precious2008-09-15T13:20:06Z2008-09-15T13:20:06Z<p>I suspect the include path should show .;C:\xampplite\php\pear - you show it without the drive letter included.</p>
<p>What does the include_path setting in your php.ini file look like?</p>
http://stackoverflow.com/questions/62618/what-is-the-best-way-to-merge-mp3-files/62762#627628Answer by David Precious for What is the best way to merge mp3 files?David Precious2008-09-15T13:16:27Z2008-09-15T13:16:27Z<p>As Thomas Owens pointed out, simply concatenating the files will leave multiple ID3 headers scattered throughout the resulting concatenated file - so the time/bitrate info will be wildly wrong.</p>
<p>You're going to need to use a tool which can combine the audio data for you.</p>
<p><a href="http://mp3wrap.sourceforge.net/" rel="nofollow">mp3wrap</a> would be ideal for this - it's designed to join together MP3 files, without needing to decode + re-encode the data (which would result in a loss of audio quality) and will also deal with the ID3 tags intelligently.</p>
<p>The resulting file can also be split back into its component parts using the mp3splt tool - mp3wrap adds information to the IDv3 comment to allow this.</p>
http://stackoverflow.com/questions/1703897/implement-a-queue-in-perlComment by David Precious on Implement a queue in Perl?David Precious2009-11-09T22:59:38Z2009-11-09T22:59:38ZIs this a queue held by a single daemon process, or a longer-term queue shared by several processes?http://stackoverflow.com/questions/1679835/do-you-develop-your-perl-applications-as-cpan-modules/1680159#1680159Comment by David Precious on Do you develop your Perl applications as CPAN modules?David Precious2009-11-05T12:16:56Z2009-11-05T12:16:56ZActually publishing the code to CPAN wasn't what was asked - "good practice to develop Perl applications just as you would develop a CPAN module" doesn't imply that you actually release it to CPAN, just that you develop in the same way as you would for a module you were planning to release to CPAN.http://stackoverflow.com/questions/1471002/how-can-i-remove-non-unique-lines-from-a-large-file-with-perl/1477830#1477830Comment by David Precious on How can I remove non-unique lines from a large file with Perl?David Precious2009-09-25T16:04:11Z2009-09-25T16:04:11ZYou're still looking to store the entire contents of the file in RAM though, which is the original problem.http://stackoverflow.com/questions/102128/svn-mark-major-versionComment by David Precious on SVN mark major versionDavid Precious2009-07-14T10:46:45Z2009-07-14T10:46:45ZAny chance of accepting an answer for this rather old question? :)http://stackoverflow.com/questions/1090867/why-doesnt-this-perl-regex-workComment by David Precious on Why doesn't this Perl regex work?David Precious2009-07-14T10:42:33Z2009-07-14T10:42:33ZDon't forget to "accept" an answer :)http://stackoverflow.com/questions/1090867/why-doesnt-this-perl-regex-work/1090980#1090980Comment by David Precious on Why doesn't this Perl regex work?David Precious2009-07-07T21:42:53Z2009-07-07T21:42:53ZGood point Cebjyre. The /x modifier causes whitespace within the regular expression to be ignored, meaning you can use whitespace to make it more readable On long regexes, this can be very valuable, reducing the similarity with line noise.
This is one of the many recommendations from Damian Conway's Perl Best Practices book which I agree with.http://stackoverflow.com/questions/827024/how-do-i-extract-the-domain-out-of-an-url/827044#827044Comment by David Precious on How do I extract the domain out of an URL?David Precious2009-05-06T12:18:04Z2009-05-06T12:18:04ZNo point re-inventing the wheel.http://stackoverflow.com/questions/766397/how-can-i-run-a-perl-script-as-a-system-daemon-in-linux/768448#768448Comment by David Precious on How can I run a Perl script as a system daemon in linux?David Precious2009-04-20T18:07:41Z2009-04-20T18:07:41ZI'd say it's a lot easier to just install Proc::Daemon than to bother hand-rolling it, but it's always good that TMTOWTDI :)http://stackoverflow.com/questions/568924/how-can-i-suppressing-excels-password-prompt-in-perl/569091#569091Comment by David Precious on How can I suppressing Excel's password prompt in Perl?David Precious2009-02-20T15:04:31Z2009-02-20T15:04:31ZFair enough, just wanted to ensure you were aware of those options.
If you have time, it would be well worth contacting the authors and providing a test case which demonstrates this behaviour; if it's a bug in those modules, hopefully the authors will be interested in fixing it :)http://stackoverflow.com/questions/494120/how-can-i-upload-a-document-to-sharepoint-with-perl/494153#494153Comment by David Precious on How can I upload a document to SharePoint with Perl?David Precious2009-01-30T12:58:17Z2009-01-30T12:58:17Z+1 for Web::Mechanize, it makes screen-scraping a breeze.http://stackoverflow.com/questions/491380/should-i-use-perl-or-python-for-network-monitoring/491411#491411Comment by David Precious on Should I use Perl or Python for network monitoring?David Precious2009-01-29T16:09:39Z2009-01-29T16:09:39ZAgreed, Net::Ping is excellent - it gives you the freedom both to do standard ICMP ping as you'd expect, but also pinging via TCP/UDP, and checking that you can connect to a given port, and makes the whole thing dead easy.http://stackoverflow.com/questions/458107/how-do-compare-dates-in-perl/458134#458134Comment by David Precious on How do compare dates in Perl?David Precious2009-01-19T22:59:33Z2009-01-19T22:59:33ZSeconding jrockway's advice - basic comparisons, fine, but don't try to implement date math yourself; there's all sorts of oddness that needs to be taken into account, and that's a wheel that needn't be re-implemented.http://stackoverflow.com/questions/435442/how-can-i-send-a-json-response-from-a-perl-cgi-program/435541#435541Comment by David Precious on How can I send a JSON response from a Perl CGI program?David Precious2009-01-14T12:11:55Z2009-01-14T12:11:55ZAccept the answer then.http://stackoverflow.com/questions/105226/is-perl-still-a-viable-language-for-web-development/106382#106382Comment by David Precious on Is Perl still a viable language for web development?David Precious2009-01-08T21:01:44Z2009-01-08T21:01:44ZIf you don't like Perl's way of handling OO (personally, I do like it), check out Moose (find it on CPAN). PHP "being used as a template engine" is <i>not</i> a good thing IMO; it actively encourages mixing code and presentation, which leads to maintenance pains.http://stackoverflow.com/questions/409496/prevent-direct-access-to-a-php-include-file/409503#409503Comment by David Precious on prevent direct access to a php include file.David Precious2009-01-03T18:56:53Z2009-01-03T18:56:53Z<i>PHP</i> is dangerous if register_globals is on.