User cowgod - Stack Overflowmost recent 30 from stackoverflow.com2009-12-02T14:56:29Zhttp://stackoverflow.com/feeds/user/6406http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1668694/how-can-i-extract-a-compressed-archive-in-perl2How can I extract a compressed archive in Perl?cowgod2009-11-03T16:58:58Z2009-11-04T02:51:13Z
<p>I need to allow users to upload a zip file via a web form. The server is running Linux with an Apache web server. Are there advantages to using a module like <a href="http://search.cpan.org/perldoc/Archive%3A%3AZip" rel="nofollow">Archive::Zip</a> to extract this archive or should I just execute a system call to <code>unzip</code> with backticks?</p>
http://stackoverflow.com/questions/732173/what-do-i-do-after-printing-html-in-my-perl-cgi-script1What do I do after printing HTML in my Perl CGI script?cowgod2009-04-08T22:39:55Z2009-11-02T19:42:54Z
<p>What should you call after printing HTML from a Perl CGI script? I have seen empty <code>return</code> statements, <code>exit</code> statements, and in some cases nothing at all. Does it matter?</p>
<pre><code>#!perl
print "Content-type: text/html\n\n";
print <<'END_HTML';
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello world!</title>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>
END_HTML
# do anything else here?
# return;
# exit;
</code></pre>
<h1>Update</h1>
<p>Let's suppose you have some tests where you are printing HTML that isn't at the very end of the file. In this case is it more clear to call exit or return to visually show that the script should end at that time? <em>I know this isn't the best way to write this--please just take this at face value for the sake of the question.</em></p>
<pre><code>#!perl
use CGI;
my $q = CGI->new();
my $action = $q->param('action');
my $html_start = "Content-type: text/html\n\n";
$html_start .= <<'END_HTML';
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Hello world!</title>
</head>
<body>
END_HTML
my $html_end = <<'END_HTML';
</body>
</html>
END_HTML
if ($action eq 'foo') {
print $html_start;
print '<p>foo</p>';
print $html_end;
# do anything else here?
}
else {
print $html_start;
print '<p>bar</p>';
print $html_end;
# do anything else here?
}
</code></pre>
http://stackoverflow.com/questions/717026/how-can-i-test-my-webpage-using-different-browsers/1583030#15830301Answer by cowgod for How can I test my webpage using different browsers?cowgod2009-10-17T19:37:37Z2009-10-17T19:37:37Z<p>Just because your website looks terrible in Internet Explorer 6 <em>does not</em> mean you are terrible at CSS. There are <a href="http://www.positioniseverything.net/explorer.html" rel="nofollow">several documented bugs in Internet Explorer's rendering engine</a> in regards to CSS. Web designers and developers have been struggling with these bugs for years. Several well known websites like <a href="http://blog.digg.com/?p=878" rel="nofollow">Digg</a> and <a href="http://www.techcrunch.com/2009/07/14/youtube-will-be-next-to-kiss-ie6-support-goodbye/" rel="nofollow">YouTube</a> are no longer going to support IE6.</p>
<p>You have several options to test your website in multiple browsers. The easiest way is to install all the browsers you want to test against on a local machine. There are 5 major browsers, and they all require different methods to install multiple versions.</p>
<h2>Microsoft Internet Explorer</h2>
<p>If you are using Windows XP, you can use <a href="http://tredosoft.com/Multiple%5FIE" rel="nofollow">Multiple IEs</a> to install Internet Explorer versions 3, 4.01, 5, 5.5 and 6.</p>
<p>If you are using Windows Vista or Windows 7 (or Windows XP for that matter) you can download <a href="http://www.microsoft.com/Downloads/details.aspx?FamilyID=21eabb90-958f-4b64-b5f1-73d0a413c8ef&displaylang=en" rel="nofollow">virtual machine images from Microsoft</a> that contain a fully licensed Windows operating system with Internet Explorer. These virtual machine images expire every 90 to 120 days. They offer the following images:</p>
<ul>
<li>Windows XP SP3 with IE6</li>
<li>Windows XP SP3 with IE7</li>
<li>Windows XP SP3 with IE8</li>
<li>Windows Vista with IE7</li>
<li>Windows Vista with IE8</li>
</ul>
<p>These images can all be used with the free <a href="http://www.microsoft.com/windows/virtual-pc/support/virtual-pc-2007.aspx" rel="nofollow">Virtual PC 2007</a>.</p>
<h2>Mozilla Firefox</h2>
<p>You can install multiple versions of Firefox on the same operating system, but it is highly advised that you create a new profile for each version you are going to install. You can use the steps outlined on <a href="http://cherny.com/webdev/32/new-firefox-2-and-multiple-firefox-version-installations" rel="nofollow">Rob Cherny's blog</a> to set this up (the article is referring to Firefox 2, but it works for Firefox 3 and 3.5 too). Alternatively, you can use <a href="http://www.webmonkey.com/blog/Test%5FMultiple%5FFirefox%5FVersions%5Fwith%5FMultiFirefox" rel="nofollow">MultiFirefox</a>.</p>
<h2>Google Chrome</h2>
<p>There really isn't an easy way to run multiple versions of Google Chrome on the same machine. The fact that updates are applied automatically and silently means that you really shouldn't worry to much about designing your website for older versions of Chrome. If this is unacceptable, you will need to use virtual images as advised for Internet Explorer previously.</p>
<h2>Apple Safari</h2>
<p>Safari is similar to Google Chrome in that there isn't an easy way to run multiple versions on the same machine. Michel Fortin has an article that details <a href="http://michelf.com/weblog/2005/multi-safari/" rel="nofollow">how to get multiple versions running on Mac OS X</a>. You can refer to <a href="http://stackoverflow.com/questions/1199234/multiple-versions-of-safari-on-windows-xp">this Stack Overflow question</a> for the lowdown on Windows. Virtual images, again, seem to be the only way to go.</p>
<h2>Opera</h2>
<p>You can install older versions of Opera without issue, so long as they are installed to different directories.</p>
http://stackoverflow.com/questions/180647/how-to-line-up-html-input-elements/181523#1815237Answer by cowgod for How to line up HTML input elements?cowgod2008-10-08T06:16:18Z2009-10-17T17:59:37Z<p>I tested this out in Internet Explorer 7, Firefox 3 and Safari/Google Chrome. I definitely see the problem with <code><select></code> and <code><input type="file"></code>. My findings showed that if you styled all the inputs at the same width, the <code><select></code> would be about 5 pixels shorter in all browsers.</p>
<p>Using the <a href="http://meyerweb.com/eric/thoughts/2007/05/01/reset-reloaded/" rel="nofollow">Eric Meyer CSS reset script</a> does not help this issue, however if you simply make your <code><select></code> inputs 5 pixels wider you'll get very good (albeit not perfect) alignment in the major browsers. The only one that differs is Safari/Google Chrome, and it appears to be 1 or 2 pixels wider than all the other browsers.</p>
<p>As far as the <code><input type="file"></code> is concerned, you don't have much flexibility with styling there. If JavaScript is an option for you, you can implement the method <a href="http://www.quirksmode.org/dom/inputfile.html" rel="nofollow">shown on quirksmode</a> to achieve greater control over the styling of the file upload control.</p>
<p>See my full working example below in XHTML 1.0 Strict for a typical form with consistent input widths. Note that this does not use the 100% width trick pointed out by others here because it has the same problem with inconsistent widths. Additionally there are no tables used to render the form as tables should only be used for tabular data and not layout.</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Example Form</title>
<style type="text/css">
label, input, select, textarea {
display: block;
width: 200px;
float: left;
margin-bottom: 1em;
}
select {
width: 205px;
}
label {
text-align: right;
width: 100px;
padding-right: 2em;
}
.clear {
clear: both;
}
</style>
</head>
<body>
<form action="#">
<fieldset>
<legend>User Profile</legend>
<label for="fname">First Name</label>
<input id="fname" name="fname" type="text" />
<br class="clear" />
<label for="lname">Last Name</label>
<input id="lname" name="lname" type="text" />
<br class="clear" />
<label for="fav_lang">Favorite Language</label>
<select id="fav_lang" name="fav_lang">
<option value="c#">C#</option>
<option value="java">Java</option>
<option value="ruby">Ruby</option>
<option value="python">Python</option>
<option value="perl">Perl</option>
</select>
<br class="clear" />
<label for="bio">Biography</label>
<textarea id="bio" name="bio" cols="14" rows="4"></textarea>
<br class="clear" />
</fieldset>
</form>
</body>
</html>
</code></pre>
http://stackoverflow.com/questions/1458349/installing-jquery/1458395#14583951Answer by cowgod for Installing JQuery?cowgod2009-09-22T06:17:07Z2009-09-22T06:17:07Z<p>There are two different ways you can utilize JQuery on your website. To start off, you need to have access to your website source, whether it be straight HTML or generated HTML from a programming language. Then you need to insert a <code><script></code> tag that will render in the final output to the web browser.</p>
<p>Because you are new to JQuery, I highly suggest you start reading <a href="http://docs.jquery.com/How%5FjQuery%5FWorks" rel="nofollow">How JQuery works</a>.</p>
<p>As others have mentioned, there are Content Distribution Networks (CDNs) that host JQuery--all you need to do is point your script tag <code>src</code> to a specific URI. <a href="http://code.google.com/apis/ajaxlibs/" rel="nofollow" title="Google AJAX Libraries API">Google</a> and <a href="http://www.asp.net/ajax/cdn/" rel="nofollow" title="Microsoft AJAX CDN">Microsoft</a> both have CDNs that are free for personal and commercial use.</p>
<p>Alternatively, you can <a href="http://docs.jquery.com/Downloading%5FjQuery" rel="nofollow">download JQuery</a> and host it on your own website.</p>
<p>You can also <a href="http://stackoverflow.com/questions/1014203/best-way-to-use-googles-hosted-jquery-but-fall-back-to-my-hosted-library-on-goo">leverage both of these methods together</a>. In the event that the Google or Microsoft CDN is down or blocked in the end user's country/firewall/proxy, you can fallback to your locally hosted copy of JQuery.</p>
http://stackoverflow.com/questions/1457934/simplest-script-for-greasemonkey-or-stylish-to-select-100-results-from-the-res/1458108#14581080Answer by cowgod for Simplest script for Greasemonkey or Stylish to select “100 Results” from the “Results per page:” dropdown menu in Google’s Advanced Search page?cowgod2009-09-22T04:31:01Z2009-09-22T04:31:01Z<p>Here is a <a href="http://www.greasespot.net/" rel="nofollow">Greasemonkey</a> script that works on this URL: <a href="http://www.google.com/advanced%5Fsearch?hl=en" rel="nofollow">http://www.google.com/advanced_search?hl=en</a>. It may work for other languages, but I only tested it with the above URL.</p>
<pre><code>var nums = document.getElementsByName("num");
if(nums.length > 0) {
nums[0].value = 100;
nums[0].selected = "selected";
}
</code></pre>
http://stackoverflow.com/questions/1196170/change-post-date-on-a-wordpress-post/1196184#11961841Answer by cowgod for change post date on a wordpress postcowgod2009-07-28T19:18:47Z2009-07-28T19:18:47Z<p>Using Wordpress 2.8.1, I was able to edit the publish date to a future date. Upon saving, the verbiage changed from "Published on" to "Schedule for" which implies that you can schedule posts to publish on a specified date.</p>
http://stackoverflow.com/questions/415297/is-there-a-difference-between-perls-shift-versus-assignment-from-for-subrouti8Is there a difference between Perl's shift versus assignment from @_ for subroutine parameters?cowgod2009-01-06T02:58:38Z2009-07-24T07:31:46Z
<p>Let us ignore for a moment Damian Conway's best practice of no more than three positional parameters for any given subroutine.</p>
<p>Is there any difference between the two examples below in regards to performance or functionality?</p>
<p>Using <code>shift</code>:</p>
<pre><code>sub do_something_fantastical {
my $foo = shift;
my $bar = shift;
my $baz = shift;
my $qux = shift;
my $quux = shift;
my $corge = shift;
}
</code></pre>
<p>Using <code>@_</code>:</p>
<pre><code>sub do_something_fantastical {
my ($foo, $bar, $baz, $qux, $quux, $corge) = @_;
}
</code></pre>
<p>Provided that both examples are the same in terms of performance and functionality, what do people think about one format over the other? Obviously the example using <code>@_</code> is fewer lines of code, but isn't it more legible to use <code>shift</code> as shown in the other example? Opinions with good reasoning are welcome.</p>
http://stackoverflow.com/questions/473666/does-perl-have-an-enumeration-type7Does Perl have an enumeration type?cowgod2009-01-23T16:57:38Z2009-06-24T12:33:07Z
<p>Does Perl have an enumeration type <em>that adheres to best practices</em>, or maybe more importantly, does it need one?</p>
<p>The project I am working one uses strings all over the place to denote things that would typically use an Enum in a language like C#. For example, we have a set of phone numbers in an array of hashes, each associated with a phone type ("Home", "Work", "Mobile", etc.):</p>
<pre><code>$phone_number->{type} = 'Home';
</code></pre>
<p>Would it be sufficient to use a read-only set of variables here or should an Enum be used? I've found an <a href="http://search.cpan.org/~zenin/enum-1.016/enum.pm" rel="nofollow"><code>enum</code> module on CPAN</a> but it appears to use bare words which violates one of the <a href="http://oreilly.com/catalog/9780596001735/" rel="nofollow">Perl Best Practices</a>. My thinking on using read-only variables goes something like this:</p>
<pre><code>use Readonly;
Readonly my $HOME => 'Home';
Readonly my $WORK => 'Work';
Readonly my $MOBILE => 'Mobile';
$phone_number->{type} = $HOME;
</code></pre>
<p>Is this a good approach or is there a better way?</p>
http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perl5How do I serve a large file for download with Perl?cowgod2009-02-21T00:13:46Z2009-05-29T17:28:36Z
<p>I need to serve a large file (500+ MB) for download from a location that is not accessible to the web server. I found the question <a href="http://stackoverflow.com/questions/432713/serving-large-files-with-php">Serving large files with PHP</a>, which is identical to my situation, but I'm using Perl instead of PHP.</p>
<p>I tried simply printing the file line by line, but this does not cause the browser to prompt for download before grabbing the entire file:</p>
<pre><code>use Tie::File;
open my $fh, '<', '/path/to/file.txt';
tie my @file, 'Tie::File', $fh
or die 'Could not open file: $!';
my $size_in_bytes = -s $fh;
print "Content-type: text/plain\n";
print "Content-Length: $size_in_bytes\n";
print "Content-Disposition: attachment; filename=file.txt\n\n";
for my $line (@file) {
print $line;
}
untie @file;
close $fh;
exit;
</code></pre>
<p>Does Perl have an equivalent to PHP's <code>readfile()</code> function (as suggested with PHP) or is there a way to accomplish what I'm trying to do here?</p>
http://stackoverflow.com/questions/879299/why-is-this-legacy-code-using-cat-on-a-filename-in-a-call-to-open1Why is this legacy code using cat on a filename in a call to open()?cowgod2009-05-18T19:13:47Z2009-05-26T20:49:00Z
<p>I ran across a very strange line of code in a legacy Perl application. The code here is part of a homegrown RSS reader that does some caching to prevent being blacklisted.</p>
<pre><code>open(CAT, "/usr/bin/cat -v /tmp/cat-cache 2>&1|");
</code></pre>
<p>Does it seem likely that the original author ran the results through <code>cat -v</code> to strip out non-printing characters to deal with any number of character sets? Wouldn't this make more sense using a regular expression in Perl itself? Also, I am most perplexed by the pipe on the end.</p>
http://stackoverflow.com/questions/736260/how-do-i-export-readonly-variables-with-modperl1How do I export Readonly variables with mod_perl?cowgod2009-04-09T23:40:59Z2009-04-13T21:59:24Z
<p>I'm trying to make it easier to follow some <a href="http://oreilly.com/catalog/9780596001735/" rel="nofollow">Perl Best Practices</a> by creating a <code>Constants</code> module that exports several of the scalars used throughout the book. One in particular, <code>$EMPTY_STRING</code>, I can use in just about every Perl script I write. What I'd like is to automatically export these scalars so I can use them without defining them explicitly in each script.</p>
<pre><code>#!perl
package Example::Constants;
use Exporter qw( import );
use Readonly;
Readonly my $EMPTY_STRING => q{};
our @EXPORT = qw( $EMPTY_STRING );
</code></pre>
<p>An example usage:</p>
<pre><code>#!perl
use Example::Constants;
print $EMPTY_STRING . 'foo' . $EMPTY_STRING;
</code></pre>
<p>Using the above code produces an error:<br />
Global symbol "$EMPTY_STRING" requires explicit package name</p>
<p>If I change the <code>Readonly</code> declaration to:</p>
<pre><code>Readonly our $EMPTY_STRING => q{}; # 'our' instead of 'my'
</code></pre>
<p>The error becomes:<br />
Attempt to reassign a readonly scalar</p>
<p>Is this just not possible with mod_perl?</p>
http://stackoverflow.com/questions/671219/eclipse-coloring-what-is-the-pref-item-for-background-color-of-all-occurances-o/671248#6712482Answer by cowgod for eclipse coloring : what is the pref item for background color of all occurances of selectioncowgod2009-03-22T16:31:38Z2009-03-22T16:31:38Z<p>There is a section titled <strong>Annotations</strong> that allows you to configure the background color for <strong>Occurrences</strong>. You can find it in Preferences under <em>General</em> -> <em>Editors</em> -> <em>Text Editors</em> -> <em>Annotations</em>.</p>
<p>I had to restart Eclipse to see my changes--a simple <strong>Apply</strong> on the Preferences window wasn't enough (using Eclipse SDK 3.4.1).</p>
http://stackoverflow.com/questions/613906/why-does-programming-perl-use-local-not-my-for-filehandles/614050#61405018Answer by cowgod for Why does Programming Perl use local (not my) for filehandles?cowgod2009-03-05T09:08:45Z2009-03-05T15:36:55Z<p>In your sample code, the call to the built in subroutine <code>open</code> is using a bare word as the file handle, which is the equivalent of a global variable. As <a href="http://stackoverflow.com/questions/613906/why-use-local-not-my-for-filehandle/614007#614007">Nathan Fellman's answer</a> explained, using <code>local</code> will localize this bare word to the current code block, in the event that another global variable with the same name is defined elsewhere in the script or module. This will prevent the previously defined global variable from being wiped out by the new declaration.</p>
<p>This was a very common practice in the old Perl days, but <strong>as of Perl 5.6 it is far better to use a scalar (with the <code>my</code> declaration that you hinted to in your question) to define your file handle</strong> and, additionally, use the three argument call to <code>open</code>. </p>
<pre><code>use Carp;
open my $error_log, '>>', 'error.log' or croak "Can't open error.log: $OS_ERROR";
</code></pre>
<p>As an aside, please note that for standard input/output reading and writing, it is still better to use the two argument <code>open</code>:</p>
<pre><code>use Carp;
open my $stdin, '<-' or croak "Can't open stdin: $OS_ERROR";
</code></pre>
<p>Alternatively, you can use the <a href="http://search.cpan.org/perldoc?IO::File" rel="nofollow"><code>IO::File</code></a> module to bless the file handle to the class:</p>
<pre><code>use IO::File;
my $error_log = IO::File->new('error.log', '>>') or croak "Can't open error.log: $OS_ERROR");
</code></pre>
<p>The majority of credit here goes to <a href="http://books.google.com/books?id=gJf9tI2mytIC&pg=PA207&lpg=PA208&ots=Hk0ghLttcp&dq=perl%2Bbest%2Bpractices%2Bfile%2Bio" rel="nofollow">Damian Conway, author of the excellent book Perl Best Practices</a>. If you are serious about Perl development, you owe it to yourself to purchase this book.</p>
http://stackoverflow.com/questions/599532/how-do-i-get-the-primary-key-of-last-record-in-a-table-if-im-using-postgresql/599545#5995453Answer by cowgod for How do I get the primary key of last record in a table if I'm using POSTGRESQL?cowgod2009-03-01T09:18:24Z2009-03-01T09:18:24Z<p>Use the PostgreSQL function <code>currval(sequence_name)</code>. You can read more about sequence functions <a href="http://www.postgresql.org/docs/8.2/interactive/functions-sequence.html" rel="nofollow">in the PostgreSQL documentation</a>.</p>
http://stackoverflow.com/questions/588981/using-embedded-standard-html-forms-with-asp-net/589046#5890462Answer by cowgod for Using embedded standard HTML forms with ASP.NETcowgod2009-02-26T03:59:07Z2009-02-26T03:59:07Z<p>Nested forms are not possible in HTML <a href="http://www.w3.org/MarkUp/html3/forms.html" rel="nofollow">according to the W3C</a>. You can achieve your intended result using JavaScript or <a href="http://blog.avirtualhome.com/2008/10/01/how-to-create-a-nested-form/" rel="nofollow" title="How to create a nested form">with jQuery</a> as explained by Peter on a blog called My Thoughts.</p>
http://stackoverflow.com/questions/515341/how-to-delegate-within-a-crontab-to-use-another-file-as-a-crontab-aka-crontab-in/589018#5890180Answer by cowgod for How to delegate within a crontab to use another file as a crontab? aka Crontab in SVN/CVS? cowgod2009-02-26T03:49:33Z2009-02-26T03:49:33Z<p>We take a very different approach to this problem on the project I'm working on.</p>
<p>We have a Perl script called <code>crontab.pl</code> that all servers call in their crontab. Doing it this way means the crontab never has to change on successive application deployments and the <code>crontab.pl</code> script can happily live in source control with the rest of the application source files.</p>
<p>We can specify different time intervals to this script with a command line parameter. The crontab looks like this:</p>
<pre><code>*/5 * * * * /usr/local/apache/crontab.pl 5 > /var/log/crontab.log 2>&1 # 5 minute interval
1 * * * * /usr/local/apache/crontab.pl 60 > /var/log/crontab.log 2>&1 # 1 hour interval
1 1 * * * /usr/local/apache/crontab.pl 3600 > /var/log/crontab.log 2>&1 # 1 day interval
</code></pre>
<p>Then it is just a matter of reading in that command line time interval and running the tasks needed for the given interval.</p>
http://stackoverflow.com/questions/548718/what-directory-is-when-i-type-cd/548725#5487252Answer by cowgod for What directory is '~' when I type 'cd ~' ?cowgod2009-02-14T08:04:17Z2009-02-14T08:04:17Z<p>Yes, it is the home directory of the user you logged in as. You can use the command <code>pwd</code> (print working directory) to see where it is located on the file system.</p>
http://stackoverflow.com/questions/509576/how-do-i-get-a-files-last-modified-time-in-perl3How do I get a file's last modified time in Perl?cowgod2009-02-04T00:16:03Z2009-02-12T19:05:31Z
<p>Suppose I have a filehandle <code>$fh</code>. I can check its existence with <code>-e $fh</code> or its file size with <code>-s $fh</code> or <a href="http://perldoc.perl.org/functions/-X.html" rel="nofollow" title="Perl -X operands">a slew of additional information about the file</a>. How can I get its last modified time stamp?</p>
http://stackoverflow.com/questions/542186/why-is-psql-inserting-a-tilde-when-i-press-any-of-the-keys-in-the-home-key-cluste0Why is psql inserting a tilde when I press any of the keys in the Home key cluster?cowgod2009-02-12T16:36:19Z2009-02-12T17:38:32Z
<p>I'm using <strong>psql 8.2.3</strong> on FreeBSD. Every time I press <strong>Insert</strong>, <strong>Home</strong>, <strong>Delete</strong>, <strong>End</strong>, <strong>Page Up</strong> or <strong>Page Down</strong>, a tilde (<code>~</code>) character is inserted instead of performing the expected function of the key. Why does this happen and how can I fix it?</p>
http://stackoverflow.com/questions/542186/why-is-psql-inserting-a-tilde-when-i-press-any-of-the-keys-in-the-home-key-cluste/542477#5424770Answer by cowgod for Why is psql inserting a tilde when I press any of the keys in the Home key cluster?cowgod2009-02-12T17:38:32Z2009-02-12T17:38:32Z<p>As mentioned in <a href="http://stackoverflow.com/questions/542186/why-is-psql-inserting-a-tilde-when-i-press-any-of-the-keys-in-the-home-key-cluste/542350#542350">Endlessdeath's answer</a>, this turned out to be a key mapping problem with the operating system (<strong>FreeBSD</strong>), <em>not</em> <strong>psql</strong>. You can make these keys work as expected by creating or adding to a configuration file for <code>inputrc</code>.</p>
<p>You can create a file named <code>.inputrc</code> in your home directory with the following:</p>
<pre><code>set meta-flag on
set input-meta on
set convert-meta off
set output-meta on
"\e[1~": beginning-of-line
"\e[4~": end-of-line
"\e[5~": beginning-of-history
"\e[6~": end-of-history
"\e[3~": delete-char
"\e[2~": quoted-insert
"\e[5C": forward-word
"\e[5D": backward-word
</code></pre>
<p>Alternatively, you can create a global file for all users. A common practice for this is to create or add to the file at <code>/usr/local/etc/inputrc</code> the same lines as above and then export the variable in <code>/etc/profile</code>:</p>
<pre><code>export INPUTRC=/usr/local/etc/inputrc
</code></pre>
<p>Ensure that <code>/etc/profile</code> is sourced by your shell (most do by default) and you're good to go. Note that the file won't be sourced until you log out and in again.</p>
<p>Here are some other resources for this problem:</p>
<ul>
<li><a href="http://bsdpants.blogspot.com/2007/08/make-home-and-end-keys-work.html" rel="nofollow">http://bsdpants.blogspot.com/2007/08/make-home-and-end-keys-work.html</a></li>
<li><a href="http://www.cyberciti.biz/tips/freebsd-how-to-customized-home-del-insert-keys-for-bash-shell.html" rel="nofollow">http://www.cyberciti.biz/tips/freebsd-how-to-customized-home-del-insert-keys-for-bash-shell.html</a></li>
<li><a href="http://www.ibb.net/~anne/keyboard.html" rel="nofollow">http://www.ibb.net/~anne/keyboard.html</a></li>
</ul>
http://stackoverflow.com/questions/535083/html-menu-help/535210#5352100Answer by cowgod for HTML Menu helpcowgod2009-02-11T02:40:26Z2009-02-11T02:40:26Z<p>Navigation menus should be semantically marked up as lists. Using an unordered list is a very common practice for a menu such as this. See <a href="http://css.maxdesign.com.au/listamatic/horizontal32.htm" rel="nofollow" title="Fat Erik 5s Simple Pipe List">this example on Listamatic</a> for a foundation to biuld from. To get the background color to be larger than the text you will simply need to add padding around the <code><a></code> tag.</p>
http://stackoverflow.com/questions/533140/font-color-not-setting-in-container-on-dotnetnuke/533293#5332932Answer by cowgod for Font Color not setting in Container on DOTNETNUKEcowgod2009-02-10T17:16:54Z2009-02-10T17:16:54Z<p>This could be caused by a variety of problems. Without having a website to view it's going to be difficult for anyone here to answer your question.</p>
<p>One of the easiest ways to diagnose CSS problems like this is to use the Firefox extension <a href="http://getfirebug.com/" rel="nofollow">Firebug</a>. Inspect the text that is appearing gray and see exactly what styles are being applied to it. The styles are shown in a hierarchy from bottom to top.</p>
<p>I don't know if you just formatted your example this way for Stack Overflow, but you should not be including the <code><head></code> or <code><body></code> tags in your container. DotNetNuke will automatically load the CSS file called <code>container.css</code> if it is in the same directory as your container HTML or ASCX file. It will additionally load any CSS file that has the same name as the container being loaded. For example, if you have a container called <code>MyContainer.ascx</code>, DotNetNuke will automatically load <code>container.css</code> and <code>MyContainer.css</code>, provided they exist.</p>
http://stackoverflow.com/questions/521294/what-does-kill-do-in-javascript0What does "kill" do in JavaScript?cowgod2009-02-06T17:37:34Z2009-02-06T18:06:21Z
<p>What does this JavaScript do exactly?</p>
<pre><code>parent.kill = 1;
</code></pre>
<p>This is used in a project I'm working on to do some sort of session expiration but I've never seen it before. It's loaded in an <code>iframe</code> so I'm assuming that it is targeting the DOM <code>document.window</code>.</p>
http://stackoverflow.com/questions/511785/how-do-i-get-the-size-of-a-file-in-megabytes-using-perl5How do I get the size of a file in megabytes using Perl?cowgod2009-02-04T15:18:14Z2009-02-05T16:18:18Z
<p>I want to get the size of a file on disk in megabytes. Using the <code>-s</code> operator gives me the size in bytes, but I'm going to assume that then diving this by a magic number is a bad idea:</p>
<pre><code>my $size_in_mb = (-s $fh) / (1024 * 1024);
</code></pre>
<p>Should I just use a read-only variable to define 1024 or is there a programmatic way to obtain the size of a byte?</p>
<p><strong>EDIT:</strong> Updated the incorrect calculation.</p>
http://stackoverflow.com/questions/510078/how-do-you-deal-with-duplicate-street-suffixes/510101#5101014Answer by cowgod for How do you deal with duplicate street suffixes?cowgod2009-02-04T04:46:23Z2009-02-04T04:46:23Z<p><a href="http://www.usps.com/webtools/htm/Address-Information.htm" rel="nofollow">USPS has an API</a> that can get you properly formatted addresses.</p>
http://stackoverflow.com/questions/509576/how-do-i-get-a-files-last-modified-time-in-perl/509666#5096664Answer by cowgod for How do I get a file's last modified time in Perl?cowgod2009-02-04T00:50:27Z2009-02-04T00:50:27Z<p>You can use the built-in module <code>File::stat</code> (included as of Perl 5.004).</p>
<p>Calling <code>stat($fh)</code> returns an array with the following information about the file handle passed in (from the <a href="http://www.perl.com/doc/manual/html/pod/perlfunc/stat.html" rel="nofollow">perlfunc man page for <code>stat</code></a>):</p>
<pre><code> 0 dev device number of filesystem
1 ino inode number
2 mode file mode (type and permissions)
3 nlink number of (hard) links to the file
4 uid numeric user ID of file's owner
5 gid numeric group ID of file's owner
6 rdev the device identifier (special files only)
7 size total size of file, in bytes
8 atime last access time since the epoch
9 mtime last modify time since the epoch
10 ctime inode change time (NOT creation time!) since the epoch
11 blksize preferred block size for file system I/O
12 blocks actual number of blocks allocated
</code></pre>
<p>The 9th element in this array will give you the last modified time since the epoch (<em>00:00 January 1, 1970 GMT</em>). From that you can determine the local time:</p>
<pre><code>my $epoch_timestamp = (stat($fh))[9];
my $timestamp = localtime($epoch_timestamp);
</code></pre>
<p>To avoid the <strong>magic number</strong> 9 needed in the previous example, additionally use <code>Time::localtime</code>, another built-in module (also included as of Perl 5.004). This requires some (arguably) more legible code:</p>
<pre><code>use File::stat;
use Time::localtime;
my $timestamp = ctime(stat($fh)->mtime);
</code></pre>
http://stackoverflow.com/questions/437785/is-there-a-way-to-use-a-single-file-that-in-turn-uses-multiple-others-in-perl6Is there a way to "use" a single file that in turn uses multiple others in Perl?cowgod2009-01-13T02:31:34Z2009-02-03T12:12:14Z
<p>I'd like to create several modules that will be used in nearly all scripts and modules in my project. These could be <strong>use</strong>d in each of my scripts like so:</p>
<pre><code>#!/usr/bin/perl
use Foo::Bar;
use Foo::Baz;
use Foo::Qux;
use Foo::Quux;
# Potentially many more.
</code></pre>
<p>Is it possible to move all these <strong>use</strong> statements to a new module <code>Foo::Corge</code> and then only have to <code>use Foo::Corge</code> in each of my scripts and modules?</p>
http://stackoverflow.com/questions/477157/how-do-i-fix-this-simple-css-floating-issue-in-ie/477358#4773581Answer by cowgod for How do I fix this simple CSS floating issue in IE?cowgod2009-01-25T08:06:41Z2009-01-25T08:06:41Z<p>I am unsure what your ultimate goal is here, but I would suggest enclosing all four <code><div></code>s inside a container element and applying a width to it, then removing the <code>clear</code> style from <code>#divthree</code>. Doing it this way will allow <code>#divthree</code> and <code>#divfour</code> to move below <code>#divone</code> and <code>#divtwo</code> without clearing them:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>IE Float Test</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<style type="text/css">
#divone, #divtwo, #divthree, #divfour
{
width: 100px;
height: 100px;
color: white;
font-size: 3em;
float: left;
}
#divone
{
background-color: red;
}
#divtwo
{
background-color: blue;
}
#divthree
{
background-color: green;
}
#divfour
{
background-color: purple;
}
#container {
width: 200px;
zoom: 1;
}
</style>
</head>
<body>
<div id="container">
<div id="divone">one</div>
<div id="divtwo">two</div>
<div id="divthree">three</div>
<div id="divfour">four</div>
</div>
</body>
</html>
</code></pre>
<p>The <code>zoom</code> property on <code>#container</code> is necessary to avoid the <a href="http://www.positioniseverything.net/explorer/escape-floats.html" rel="nofollow">IE6/7 Escaping Floats Bug</a>.</p>
<p>If the above solution isn't viable, you can add a <code><br></code> or <code><div></code> after <code>#divtwo</code> with the style <code>clear: left;</code>:</p>
<pre><code><div id="divone">one</div>
<div id="divtwo">two</div>
<br style="clear: left;" />
<div id="divthree">three</div>
<div id="divfour">four</div>
</code></pre>
<p>This is the technique used in <a href="http://www.westciv.com/style_master/house/tutorials/quick/floated_layout/index.html" rel="nofollow">a floated page layout example on westciv.com</a>.</p>
http://stackoverflow.com/questions/467255/graceful-degradation-of-anchor-tags-with-javascript/467357#4673570Answer by cowgod for Graceful degradation of anchor tags with javascriptcowgod2009-01-21T22:41:27Z2009-01-21T22:41:27Z<p>See the Stack Overflow question <a href="http://stackoverflow.com/questions/245868/what-is-the-difference-between-the-different-methods-of-putting-javascript-in-an">What is the difference between the different methods of putting javascript in an <code><a></code></a> and <a href="http://stackoverflow.com/questions/245868/what-is-the-difference-between-the-different-methods-of-putting-javascript-in-an#245898">my answer</a>.</p>
http://stackoverflow.com/questions/1457934/simplest-script-for-greasemonkey-or-stylish-to-select-100-results-from-the-res/1458108#1458108Comment by cowgod on Simplest script for Greasemonkey or Stylish to select “100 Results” from the “Results per page:” dropdown menu in Google’s Advanced Search page?cowgod2009-09-22T06:03:35Z2009-09-22T06:03:35ZYes, you need 15 reputation to cast an upvote. However, you can click the checkmark below the voting block to mark an answer as "accepted." This will give the answerer 15 reputation and the asker 2 reputation. It's a win/win!http://stackoverflow.com/questions/1457934/simplest-script-for-greasemonkey-or-stylish-to-select-100-results-from-the-res/1458108#1458108Comment by cowgod on Simplest script for Greasemonkey or Stylish to select “100 Results” from the “Results per page:” dropdown menu in Google’s Advanced Search page?cowgod2009-09-22T05:08:36Z2009-09-22T05:08:36ZExcellent. Would you mind marking the answer as accepted?http://stackoverflow.com/questions/897409/ie8-compatibility-view-button-is-enabled-even-when-ieemulateie7/898631#898631Comment by cowgod on IE8 Compatibility View Button is enabled even when IE=EmulateIE7cowgod2009-09-08T22:32:57Z2009-09-08T22:32:57ZThanks! This is a fantastic answer and the question author really needs to accept it!http://stackoverflow.com/questions/120621/dark-colorscheme-for-eclipse/1109617#1109617Comment by cowgod on Dark colorscheme for eclipse?cowgod2009-08-27T05:23:02Z2009-08-27T05:23:02ZMost of the other views are controlled by the colors specified by the operating system. For example, on Windows you can head to the Advanced Appearance settings and change the <i>Window</i> item with your desired colors. Of course, this means all your applications change across the entire operating system, which may be good or bad depending on your taste.http://stackoverflow.com/questions/760104/what-should-i-use-instead-of-printf-in-perl/760137#760137Comment by cowgod on What should I use instead of printf in Perl?cowgod2009-04-17T16:22:17Z2009-04-17T16:22:17Z@Greg Hewgill I had no idea you could do this--awesome!http://stackoverflow.com/questions/736260/how-do-i-export-readonly-variables-with-modperl/745543#745543Comment by cowgod on How do I export Readonly variables with mod_perl?cowgod2009-04-15T01:58:28Z2009-04-15T01:58:28ZAwesome! Thank you so much. If it matters, I am also using the Readonly::XS module.http://stackoverflow.com/questions/736260/how-do-i-export-readonly-variables-with-modperl/736405#736405Comment by cowgod on How do I export Readonly variables with mod_perl?cowgod2009-04-10T19:17:47Z2009-04-10T19:17:47ZI'm already doing 1, 3 and 4, I just left them out of the example for brevity. Also, use Exporter qw( import ) is the preferred method, not use base qw( Exporter ). Adding the module to PerlRequire still produces the error, one for each http process started.http://stackoverflow.com/questions/732173/what-do-i-do-after-printing-html-in-my-perl-cgi-script/732201#732201Comment by cowgod on What do I do after printing HTML in my Perl CGI script?cowgod2009-04-08T23:25:47Z2009-04-08T23:25:47ZQuestion updated.http://stackoverflow.com/questions/732173/what-do-i-do-after-printing-html-in-my-perl-cgi-script/732201#732201Comment by cowgod on What do I do after printing HTML in my Perl CGI script?cowgod2009-04-08T22:56:34Z2009-04-08T22:56:34ZThis was a simplified example. Let's say you have a bunch of tests and you are redirecting based on the result of the test. Is it enough to see print "Location: foo.pl\n\n"; and know that's the end of the script in that particular test? I can elaborate in the question if this isn't clear.http://stackoverflow.com/questions/55139/what-is-your-favorite-ide-for-perl-development/340558#340558Comment by cowgod on What is your favorite IDE for Perl development?cowgod2009-03-10T07:30:39Z2009-03-10T07:30:39ZThere are no screen shots on their Sourceforge page, which means it is not worth my time.http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perl/572014#572014Comment by cowgod on How do I serve a large file for download with Perl?cowgod2009-02-23T19:31:13Z2009-02-23T19:31:13ZOut of curiosity, where did 8192 come from?http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perl/573708#573708Comment by cowgod on How do I serve a large file for download with Perl?cowgod2009-02-23T16:41:49Z2009-02-23T16:41:49ZI tried zipping the file and I get the same behavior. The same thing happens with IE, Firefox, and Chrome.http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perlComment by cowgod on How do I serve a large file for download with Perl?cowgod2009-02-21T03:31:48Z2009-02-21T03:31:48ZI think I need to completely redo this question because I'm not getting my point across at all. If I read the entire file into a scalar and then print it, everything works as expected. The problem with this method is that it doesn't work for large files because the server runs out of memory.http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perl/571768#571768Comment by cowgod on How do I serve a large file for download with Perl?cowgod2009-02-21T00:42:33Z2009-02-21T00:42:33ZI tried using a while loop without Tie::Cache first, which behaves the same way. I still don't get a download prompt for the file until the whole thing is downloaded.http://stackoverflow.com/questions/571744/how-do-i-serve-a-large-file-for-download-with-perl/571768#571768Comment by cowgod on How do I serve a large file for download with Perl?cowgod2009-02-21T00:38:22Z2009-02-21T00:38:22ZSorry, I meant to say readfile(), as was suggested in the question I linked. Question updated.