User converter42 - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T01:55:02Z http://stackoverflow.com/feeds/user/28974 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1860118/how-do-you-generate-website-navigation/1860868#1860868 3 Answer by converter42 for How do you generate website navigation? converter42 2009-12-07T15:54:00Z 2009-12-07T18:14:04Z <p>You might find one of my modules useful: <a href="http://search.cpan.org/perldoc?CatalystX%3A%3AMenu%3A%3ASuckerfish" rel="nofollow">CatalystX::Menu::Suckerfish</a></p> <p>The menu structure is generated from method attributes. It lacks a way to alter the state of the current page's menu entry, but that shouldn't be difficult to add.</p> <p>The method attributes are arbitrary strings MenuPath and MenuTitle which specify a slash-delimited path for the menu option in the tree and a string that is used as the menu option label and an html title attribute, where applicable.</p> http://stackoverflow.com/questions/520196/how-can-i-check-if-a-filehandle-is-open-in-perl/521931#521931 1 Answer by converter42 for How can I check if a filehandle is open in Perl? converter42 2009-02-06T19:57:29Z 2009-08-29T22:47:28Z <p>Perl provides the <a href="http://perldoc.perl.org/functions/fileno.html" rel="nofollow">fileno</a> function for exactly this purpose.</p> <p><strong>EDIT</strong> I stand corrected on the purpose of <code>fileno()</code>. I do prefer the shorter test</p> <p><code>fileno FILEHANDLE</code></p> <p>over</p> <p><code>tell FH != -1</code></p> http://stackoverflow.com/questions/990622/how-to-make-it-smoother-with-toggle-slow/990886#990886 0 Answer by converter42 for How to make it smoother with toggle ('slow') converter42 2009-06-13T15:40:35Z 2009-06-13T15:40:35Z <p>I'm not sure what's causing the jitter. My guess is it's an effect caused by fitting the paragraph into the div when the div's display attribute is changed from 'none' to 'block'. I've applied stanch's suggestion and come up with a working example that seems to work a little better.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;style type="text/css"&gt; body {width: 660px; margin: 0 auto; } .toppara{ background-color: #FF9; } .morepara { background-color: #fff; } .togglebutn { color: #900; background-color: #FFF; } &lt;/style&gt; &lt;/head&gt; &lt;body&gt; &lt;div id="section1"&gt; &lt;div class="toppara"&gt; &lt;p&gt;Content 1.&lt;/p&gt; &lt;/div&gt; &lt;div class="morepara"&gt; &lt;p&gt; Content 2. &lt;/p&gt; &lt;/div&gt; &lt;p class="togglebutn"&gt; &lt;a&gt;Show/Hide&lt;/a&gt; &lt;/p&gt; &lt;/div&gt; &lt;div id="section2"&gt; &lt;div class="toppara"&gt; &lt;p&gt;Content 3.&lt;/p&gt; &lt;/div&gt; &lt;div class="morepara"&gt; &lt;p&gt; Content 4. &lt;/p&gt; &lt;/div&gt; &lt;p class="togglebutn"&gt; &lt;a&gt;Show/Hide&lt;/a&gt; &lt;/p&gt; &lt;/div&gt; &lt;script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"&gt;&lt;/script&gt; &lt;script language="javascript" type="text/javascript"&gt; $('document').ready( function (){ $('.morepara p').hide(); $('.togglebutn a').click( function(){ var parentpara = $(this).parent().prev().children(); parentpara.toggle('normal'); } ); }); &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/887175/how-can-i-make-a-perl-script-executable-from-everywhere-by-everyone/894907#894907 2 Answer by converter42 for How can I make a Perl script executable from everywhere by everyone? converter42 2009-05-21T20:15:30Z 2009-05-21T20:15:30Z <p>Instead of worrying about log file permissions issues, why not log to the system logger? That's what it's there for. See <a href="http://perldoc.perl.org/Sys/Syslog.html" rel="nofollow">Sys::Syslog</a></p> http://stackoverflow.com/questions/803701/how-do-i-do-webtesting-in-perl-for-pages-that-require-javascript/807986#807986 1 Answer by converter42 for How do I do webtesting in Perl for pages that require JavaScript? converter42 2009-04-30T16:55:50Z 2009-04-30T16:55:50Z <p>You might be able to make use of <a href="http://search.cpan.org/perldoc?JavaScript::SpiderMonkey" rel="nofollow">JavaScript::SpiderMonkey</a>.</p> http://stackoverflow.com/questions/753670/why-cant-my-perl-script-load-a-module-when-run-by-cron/757035#757035 1 Answer by converter42 for Why can't my Perl script load a module when run by cron? converter42 2009-04-16T16:49:47Z 2009-04-16T16:49:47Z <p>Running your program from a wrapper script as others have suggested is probably my preferred method, but there may be a few other solutions:</p> <p>If you're using a modern cron you may be able to do something like this in your crontab entry:</p> <pre><code>* * * * * CARSPATH=/opt/carsi x </code></pre> <p>replacing the asterisks with the appropriate schedule designators.</p> <p>This will set CARSPATH for the x process and allow the use lib statement that passes the environment variable to work.</p> <p>You can also, depending on your shell and cron implementation, store your environment setup in a file and do something like:</p> <pre><code>* * * * * source specialenv.sh &amp;&amp; x </code></pre> <p>Where specialenv.sh contains lines like (for bash)</p> <pre><code>export CARSPATH=/opt/carsi </code></pre> <p>You may also be able to set environment variables directly in the crontab, should you choose to do so.</p> http://stackoverflow.com/questions/726289/how-do-i-convert-a-date-into-epoch-time-in-perl/730251#730251 0 Answer by converter42 for How do I convert a date into epoch time in Perl? converter42 2009-04-08T14:22:34Z 2009-04-08T14:22:34Z <blockquote> <p>Solaris 10 doesn't seem to like me a lot. I am trying to run a simple script to accept date and return epoch of that date</p> </blockquote> <p>Silly question, but what is the source of the input date string? If the string is fetched from the system your code can be a lot more simple.</p> http://stackoverflow.com/questions/616794/why-doesnt-my-variable-interpolate-correctly-when-i-build-up-a-mysql-query/622342#622342 0 Answer by converter42 for Why doesn't my variable interpolate correctly when I build up a Mysql query? converter42 2009-03-07T19:29:41Z 2009-03-07T19:29:41Z <p>It would be helpful if you would include the text of any error messages.</p> <p>Something tells me that</p> <pre><code>for($i=0;$i&lt;$count;$i++){ $where=$where . "'[[:&lt;:]]" . $andkeywords[$i] . "[[:&gt;:]]' "; ... } </code></pre> <p>Could be simplified to</p> <pre><code>for (@andkeywords) { $where .= qq('[[:&lt;:]]${_}[[:&gt;]]' ); ... } </code></pre> <p>Or perhaps</p> <pre><code>$where .= join ' ', map { qq('[[:&lt;:]]${_}[[:&gt;:]]') } @andkeywords; </code></pre> http://stackoverflow.com/questions/515243/why-cant-my-apache-process-write-to-my-world-writeable-file/517894#517894 1 Answer by converter42 for Why can't my apache process write to my world-writeable file? converter42 2009-02-05T21:02:05Z 2009-02-05T21:02:05Z <p>I know that a previous post touched on this, but I think it bears repeating: When discussing a problem of this nature it's helpful to include the relevant code and the output of the exception. If an I/O operation fails, $! should contain the system error message, which would explain why the operation failed. Saying "it didn't work" doesn't really give us anything to go on.</p> http://stackoverflow.com/questions/496702/can-a-shell-script-set-environment-variables-of-the-calling-shell/496777#496777 8 Answer by converter42 for Can a shell script set environment variables of the calling shell? converter42 2009-01-30T19:06:58Z 2009-01-30T19:06:58Z <p>Your shell process has a copy of the parent's environment and no access the parent process's environment whatsoever. When your shell process terminates any changes you've made to its environment are lost. Sourcing a script file is the most commonly used method for configuring a shell environment, you may just want to bite the bullet and maintain one for each of the two flavors of shell.</p> http://stackoverflow.com/questions/401555/how-can-i-handle-non-ascii-characters-when-retrieving-data-from-sql-server-using/401953#401953 2 Answer by converter42 for How can I handle non-ASCII characters when retrieving data from SQL Server using Perl? converter42 2008-12-31T00:40:47Z 2008-12-31T00:40:47Z <p>Oh how many hours I've wasted chasing non-existent bugs based on what I saw or didn't see when I printed data to my terminal. There are several different ways to verify your data that aren't affected by non-printing characters and don't depend on your system's display being able to map the correct glyphs to non-ASCII character codes. If your data don't look right dump them into a file and browse the file with a hex editor or run them through the od utility.</p> http://stackoverflow.com/questions/397817/why-cant-i-find-perl-modules-after-upgrading-to-intrepid-ibex-ubuntu/398123#398123 5 Answer by converter42 for Why can't I find Perl modules after upgrading to Intrepid Ibex Ubuntu? converter42 2008-12-29T17:09:02Z 2008-12-29T17:23:50Z <p>The standard solution is to generate an "autobundle" with CPAN.pm <strong>before</strong> upgrading Perl. A search for <a href="http://stackoverflow.com/search?q=autobundle">autobundle</a> yields links to a handful of existing SO questions discussing Perl module management and several that look like they should provide more information. The <a href="http://search.cpan.org/perldoc?CPAN" rel="nofollow">CPAN.pm manual</a> touches on autobundle, but doesn't include much detail.</p> <p>Since you've already upgraded Perl, one solution for installing your modules would be to generate an autobundle file and use the entries in the generated file as a guide to write a custom autobundle file with entries for your modules (only). The autobundle file format is just <a href="http://search.cpan.org/perldoc?perlpod" rel="nofollow">POD</a>, so this should be easy to do.</p> <p>In the future you should probably make it a habit to generate an autobundle before upgrading Perl. This is not a perfect solution, the autobundle will include entries for core modules that will have to be removed before actually building from it, but at least you'll have a snapshot of installed Perl modules so that you can get your Perl install fixed up after an upgrade.</p> http://stackoverflow.com/questions/371151/how-can-i-set-the-line-length-limit-in-textwrap/371635#371635 4 Answer by converter42 for How can I set the line length limit in Text::Wrap? converter42 2008-12-16T15:26:42Z 2008-12-16T15:26:42Z <p>Your code has a syntax error at line 4:</p> <pre><code>use Text::Wrap </code></pre> <p>should be:</p> <pre><code>use Text::Wrap; # note the semi-colon </code></pre> <p>I don't recommend the use of an empty string as a here-document delimiter. Use something that makes it clear to the reader where the document ends:</p> <pre><code> print &lt;&lt;EOF; This is some text. More text. EOF </code></pre> <p>The error message you listed, "Undefined subroutine &amp;main::wrap called at x.pl line 29," suggests that you were running your code from a file that did not include the 'use Text::Wrap;' statement, otherwise the exported &amp;Text::Wrap::wrap subroutine would have been defined.</p> <p>Learn to simplify problems. With dynamic languages like Perl it's easy to test code on the command line. After a two-minute refresher read of the Text::Wrap documentation I banged this out in an xterm:</p> <pre><code>$ perl -MText::Wrap -le 'print wrap("","",&lt;&lt;EOF) &gt; This is a long line of text. This is a long line of text. This is a long line of text. This is a long line of text. This is a long line of text. &gt; EOF &gt; ' This is a long line of text. This is a long line of text. This is a long line of text. This is a long line of text. This is a long line of text. </code></pre> http://stackoverflow.com/questions/370766/how-can-i-efficiently-manage-perl-modules-for-code-reuse/371539#371539 0 Answer by converter42 for How can I efficiently manage Perl modules for code reuse? converter42 2008-12-16T14:47:43Z 2008-12-16T14:47:43Z <p>If your modules include <a href="http://search.cpan.org/perldoc?perlpod" rel="nofollow">POD documentation</a> and are installed under a common directory or set of directories, it should be relatively easy to use <a href="http://search.cpan.org/perldoc?pod2html" rel="nofollow">pod2html</a> to generate HTML documents. Once you have the HTML documentation, throw in a Full Text Search index (SQLite with fts3, MySQL, Lucene, KinoSearch, whatever) and a simple search form app (CGI or mod_perl) and you're ready to go.</p> <p>If you're using trac, there's a <a href="http://trac.eprints.org/projects/iar/wiki/PerlDocPlugin" rel="nofollow">plugin</a> that will create trac wiki pages pages from your .pod and .pm files, again, making your documentation easy to search.</p> http://stackoverflow.com/questions/361688/how-do-i-serve-an-image-from-the-cgi-directory-under-tomcat/361877#361877 1 Answer by converter42 for How do I serve an image from the cgi directory under Tomcat? converter42 2008-12-12T04:15:47Z 2008-12-12T04:15:47Z <p>Since <a href="http://www.bugzilla.org/docs/tip/en/html" rel="nofollow">the Bugzilla Guide</a> includes <a href="http://www.bugzilla.org/docs/tip/en/html/configuration.html" rel="nofollow">configuration guidelines</a> for only Apache and MS IIS and google doesn't turn up any posts discussing successful deployment, your best bet would probably be to stick with a documented and supported configuration, Apache or IIS.</p> http://stackoverflow.com/questions/355456/how-can-i-print-source-line-number-in-perl/356150#356150 4 Answer by converter42 for How can I print source line number in Perl? converter42 2008-12-10T14:07:02Z 2008-12-10T14:07:02Z <p>The __LINE__ literal is documented in the <a href="http://search.cpan.org/perldoc?perldata#Special_Literals_________" rel="nofollow">Special Literals</a> section of the <a href="http://search.cpan.org/perldoc?perldata" rel="nofollow">perldata man page</a>.</p> http://stackoverflow.com/questions/352870/how-can-i-prevent-windows-from-catching-my-perl-exceptions/353029#353029 0 Answer by converter42 for How can I prevent Windows from catching my Perl exceptions? converter42 2008-12-09T15:03:15Z 2008-12-09T15:03:15Z <p>It's difficult to offer intelligent suggestions without seeing relevant bits of code. If you're getting a dialog box with an exception message the program is most likely using either the <a href="http://www.perltk.org" rel="nofollow">Tk</a> or <a href="http://wxperl.sourceforge.net/" rel="nofollow">wxPerl</a> GUI library, which may complicate things a bit. With that said, my guess would be that it would be pretty easy to modify the exception handling in the program by wrapping the failure point in an eval block and testing $@ after the call. If $@ contains an error message indicating connection failure, then re-establish the connection and go on your way.</p> http://stackoverflow.com/questions/346620/what-are-unit-tests-and-why-should-i-care/346636#346636 1 Answer by converter42 for What are UNIT TESTs and why should I care? converter42 2008-12-06T19:22:33Z 2008-12-06T19:22:33Z <p>A <a href="http://www.google.com/search?q=php+unit+testing" rel="nofollow">google search for "php unit testing"</a> yields a treasure trove of information on this subject. The <a href="http://www.phpunit.de/" rel="nofollow">PHPUnit</a> project looks interesting.</p> http://stackoverflow.com/questions/344460/why-is-1-empty-in-my-substitution/344687#344687 1 Answer by converter42 for Why is $1 empty in my substitution? converter42 2008-12-05T18:04:41Z 2008-12-05T18:04:41Z <p>Fix your pattern, as bart suggested, and consider using the "topic" variable $_ instead of explicitly assigning the data read from the filehandle to another variable.</p> <pre><code>#!/usr/bin/perl use warnings; use strict; my $new_toc_file; { # localizing $_ protects any existing value in the global $_ # you should localize $_ even if you choose to assign it to a variable local $_; while(&lt;DATA&gt;) { # in the absence of the bind operator =~, s/// operates against $_ s!&lt;inlineFig.*?(\.\./pics/ch09_inline99_.*?\.jpg)&lt;/inlineFig&gt;!&lt;img src="$1" alt="" /&gt;!g; $new_toc_file .= $_; } } print $new_toc_file, "\n"; __END__ &lt;inlineFig&gt;../pics/ch09_inline99_00.jpg&lt;/inlineFig&gt; </code></pre> http://stackoverflow.com/questions/339887/how-to-bind-a-key-to-sigkill-in-bash/341363#341363 1 Answer by converter42 for How to bind a key to sigkill in bash? converter42 2008-12-04T17:08:36Z 2008-12-04T17:08:36Z <p>My question to you would be: why is your application not handling SIGINT? Have you defined a handler for SIGINT to set a flag so that any loops can check the flag and break if it's set, or are you spinning in a system call?</p> http://stackoverflow.com/questions/324167/remove-whitespace-from-bash-variable/334619#334619 0 Answer by converter42 for remove whitespace from bash variable converter42 2008-12-02T16:38:57Z 2008-12-02T16:38:57Z <p>flolo's answer is documented in the "Parameter Substitution" section of the bash man page. Another source of documentation is the <a href="http://tldp.org/LDP/abs/html/parameter-substitution.html" rel="nofollow">Parameter Substitution</a> section of the <a href="http://tldp.org/LDP/abs/html/" rel="nofollow">Advanced Bash-Scripting Guide</a>. The ABS guide includes basic documentation with excellent example code.</p> http://stackoverflow.com/questions/331642/how-to-make-ssh-to-kill-remote-process-when-i-interrupt-ssh-itself/334420#334420 2 Answer by converter42 for How to make ssh to kill remote process when I interrupt ssh itself? converter42 2008-12-02T15:53:07Z 2008-12-02T15:53:07Z <p>Do you know what the options you're passing to ssh do? I'm guessing not. The -n option redirects input from /dev/null, so the process you're running on the remote host probably isn't seeing SIGINT from Ctrl-C.</p> <p>Now, let's talk about how bad an idea it is to allow remote root logins:</p> <p>It's a really, really bad idea. Have a look at <a href="http://pkeck.myweb.uga.edu/ssh/" rel="nofollow">HOWTO: set up ssh keys</a> for some suggestions how to securely manage remote process execution over ssh. If you need to run something with privileges remotely you'll probably want a solution that involves a ssh public key with embedded command and a script that runs as root courtesy of sudo.</p> http://stackoverflow.com/questions/330458/how-can-i-determine-the-local-machines-ip-addresses-from-perl/331300#331300 1 Answer by converter42 for How can I determine the local machine's IP addresses from Perl? converter42 2008-12-01T16:16:08Z 2008-12-01T16:16:08Z <p>I've had good success with <a href="http://search.cpan.org/perldoc?IO::Interface" rel="nofollow">IO::Interface</a> on Linux and Solaris, and I think it even worked on AIX but I can't recall for sure. Poking around on search.cpan.org, rt.cpan.org and ActiveState's various sites, it looks like IO::Interface may be experiencing build problems on Windows. I guess the only way to know if it's available is to search for io-interface in PPM.</p> http://stackoverflow.com/questions/330878/how-does-perl-decide-to-treat-a-scalar-as-a-string-or-a-number/331263#331263 5 Answer by converter42 for How does Perl decide to treat a scalar as a string or a number? converter42 2008-12-01T16:01:41Z 2008-12-01T16:01:41Z <p>Data::Dumper's job is to serialize data and you can't tell much about what perl is doing internally with the data based on its output. The <a href="http://search.cpan.org/perldoc?Devel::Peek" rel="nofollow">Devel::Peek</a> module can dump the underlying flags and values stored in the variables. The Devel::Peek POD explains the significance of the flags.</p> <pre><code>#!/usr/bin/perl use warnings; use strict; use Devel::Peek; my $HOURS_PER_DAY = 24.0 * 1.0; my $BSA = 1.7 * 1.0; my $MCG_PER_MG = 1000.0 * 1.0; my $HOURS_DURATION = 20.0 * $HOURS_PER_DAY; my $dummy = $HOURS_PER_DAY * $BSA * $MCG_PER_MG * $HOURS_DURATION; Dump($HOURS_PER_DAY); Dump($BSA); Dump($MCG_PER_MG); Dump($HOURS_DURATION); __END__ SV = PVNV(0xd71ff0) at 0xd87f90 REFCNT = 1 FLAGS = (PADBUSY,PADMY,IOK,NOK,pIOK,pNOK) IV = 24 NV = 24 PV = 0 SV = PVNV(0xd71fc8) at 0xd87f60 REFCNT = 1 FLAGS = (PADBUSY,PADMY,NOK,pIOK,pNOK) IV = 1 NV = 1.7 PV = 0 SV = PVNV(0xd72040) at 0xd87f40 REFCNT = 1 FLAGS = (PADBUSY,PADMY,IOK,NOK,pIOK,pNOK) IV = 1000 NV = 1000 PV = 0 SV = IV(0xd8b408) at 0xd87f30 REFCNT = 1 FLAGS = (PADBUSY,PADMY,IOK,pIOK) IV = 480 # compare the above output to output without the assignment to $dummy: SV = IV(0x7b0eb8) at 0x7adf90 REFCNT = 1 FLAGS = (PADBUSY,PADMY,IOK,pIOK) IV = 24 SV = NV(0x7c7c90) at 0x7adf60 REFCNT = 1 FLAGS = (PADBUSY,PADMY,NOK,pNOK) NV = 1.7 SV = IV(0x7b13d8) at 0x7adf40 REFCNT = 1 FLAGS = (PADBUSY,PADMY,IOK,pIOK) IV = 1000 SV = IV(0x7b1408) at 0x7adf30 REFCNT = 1 FLAGS = (PADBUSY,PADMY,IOK,pIOK) IV = 480 </code></pre> http://stackoverflow.com/questions/141641/what-constitutes-effective-perl-training-for-non-perl-developers/319137#319137 0 Answer by converter42 for What constitutes effective Perl training for non-Perl developers? converter42 2008-11-25T22:37:33Z 2008-11-25T22:37:33Z <p>Based on my experience in the workplace I'd recommend beginning with Perl's documentation (already covered here) and spend some time showing the student how to test code on the command line. It's really surprising how quickly someone can pick up a language when they can try something on the fly and make corrections until they get it right.</p> http://stackoverflow.com/questions/318789/whats-the-best-way-to-open-and-read-a-file-in-perl/318823#318823 5 Answer by converter42 for What's the best way to open and read a file in Perl? converter42 2008-11-25T20:56:16Z 2008-11-25T20:56:16Z <p>The <a href="http://perldoc.perl.org/perlopentut.html" rel="nofollow">perlopentut</a> man page covers most of this issue pretty well.</p> http://stackoverflow.com/questions/313746/is-there-a-cron-like-service-written-in-perl/314510#314510 3 Answer by converter42 for Is there a cron-like service written in Perl? converter42 2008-11-24T15:39:58Z 2008-11-24T16:05:20Z <blockquote> <p>I tried Schedule::Cron. It supports cron-like format but here the arguments to the subs must be simple scalars hence I ruled it out.</p> </blockquote> <p>The Schedule::Cron documentation says that <em>arguments</em> is a <em>Reference to array containing arguments to be used when calling the subroutine</em>. Pass a reference to a named array of your arguments, if you wish. Since the cron entry holds a reference to @data you can add or remove @data elements in your code as needed.</p> <pre><code>$cron-&gt;add_entry( '* * * * *', subroutine =&gt; \&amp;mysub, arguments =&gt; \@data, ); </code></pre> <p>You can also use a closure, as Brian suggested:</p> <pre><code>my $var = 42; my @arr = get_stuff(); $cron-&gt;add_entry( '* * * * *', sub { mysub($var, @arr) }, ); </code></pre> <p>See the <a href="http://perldoc.perl.org/perlref.html" rel="nofollow">perlref</a> man page for more information on closures.</p> http://stackoverflow.com/questions/307709/how-do-you-force-firefox-to-not-cache-or-re-download-a-silverlight-xap-file/309015#309015 1 Answer by converter42 for How do you force Firefox to not cache or re-download a Silverlight XAP file? converter42 2008-11-21T14:57:19Z 2008-11-21T14:57:19Z <p>You might find the <a href="http://www.mnot.net/cache_docs/" rel="nofollow">Caching Tutorial for Web Authors and Webmasters</a> helpful. This document discusses the different caches through which the client and server interact (browser, proxy, gateway) and how caching can be controlled. </p> http://stackoverflow.com/questions/305684/how-can-i-prevent-database-being-written-to-again-when-the-browser-does-a-reload/305779#305779 5 Answer by converter42 for How can I prevent database being written to again when the browser does a reload/back? converter42 2008-11-20T15:57:43Z 2008-11-20T15:57:43Z <p>Using a POST request will cause the browser to try to prevent the user from submitting the same request again, but I'd recommend using session-based transaction tracking of some kind so that if the user ignores the warnings from the browser and resubmits his query your application will prevent duplication of changes to the database. You could include a hidden input in the submission form with value set to a crypto hash and record that hash if the request is submitted and processed without error.</p> http://stackoverflow.com/questions/304471/firefox-sits-on-transferring-data-from-or-read/305751#305751 0 Answer by converter42 for FireFox sits on "Transferring data from..." or "Read...." converter42 2008-11-20T15:50:44Z 2008-11-20T15:50:44Z <p>Try the <a href="http://livehttpheaders.mozdev.org/" rel="nofollow">Live HTTP Headers</a> extension. With this extension you can grab the request and response headers off the wire. You might also try starting Firefox in safe mode for testing. This will disable all installed extensions. Run firefox -h in a dos box to see the command line switch for safe mode.</p> http://stackoverflow.com/questions/990622/how-to-make-it-smoother-with-toggle-slow/991484#991484 Comment by converter42 on How to make it smoother with toggle ('slow') converter42 2009-06-14T01:33:10Z 2009-06-14T01:33:10Z +1 Thanks for filling in that important bit of information. http://stackoverflow.com/questions/808419/what-will-happen-if-perl-tries-to-call-move-on-a-file-that-is-being-uploaded/808474#808474 Comment by converter42 on What will happen if perl tries to call move() on a file that is being uploaded? converter42 2009-04-30T21:15:10Z 2009-04-30T21:15:10Z perl has no 'move' keyword, but it does have the 'rename' keyword. If you're calling something called 'move' it may be the &amp;move subroutine exported by the File::Copy module. If so, a look at the File::Copy documentation would be helpful. http://stackoverflow.com/questions/803808/how-do-i-pass-a-hash-to-a-function-in-perl/803975#803975 Comment by converter42 on How do I pass a hash to a function in Perl? converter42 2009-04-30T19:28:59Z 2009-04-30T19:28:59Z @Chris - prototypes have no effect when a subroutine is invoked as a method, they're awful and confusing and break things. As someone else posted previously, don't use them unless you need to make a sub work like a built-in. http://stackoverflow.com/questions/801949/how-do-i-rename-an-exported-function-in-perl/802345#802345 Comment by converter42 on How do I rename an exported function in Perl? converter42 2009-04-30T18:15:01Z 2009-04-30T18:15:01Z What you want to say is &quot;make baz a subroutine,&quot; but *baz = *Baz is saying &quot;make $baz, @baz, %baz and etc. undefined and &amp;baz a subroutine.&quot; *baz = \&amp;Baz would be more concise and less likely to cause problems. compare: $ perl -le 'sub foo {42}; $bar = 10; *bar = \&amp;foo; print bar(); print $bar' and: perl -le 'sub foo {42}; $bar = 10; *bar = &#42;foo; print bar(); print $bar' http://stackoverflow.com/questions/668452/how-do-you-create-subtypes-in-moose/669149#669149 Comment by converter42 on How do you create subtypes in Moose? converter42 2009-04-25T06:28:58Z 2009-04-25T06:28:58Z @brunov - &amp;Email::Valid::rfc822 uses a regex for validation. http://stackoverflow.com/questions/503769/how-can-i-get-the-file-and-line-number-where-a-perl-subroutine-reference-was-crea Comment by converter42 on How can I get the file and line number where a Perl subroutine reference was created? converter42 2009-02-02T17:35:41Z 2009-02-02T17:35:41Z Perhaps a more detailed explanation of what you're expecting and why would help. It's easy for the casual reader to gloss over the &quot;special&quot; comments in the example without understanding their effect on the line counter. http://stackoverflow.com/questions/474763/does-perl-monkey-patching-allow-you-to-see-the-patched-packages-scope/474829#474829 Comment by converter42 on Does Perl monkey-patching allow you to see the patched package's scope? converter42 2009-01-26T21:05:21Z 2009-01-26T21:05:21Z @cdleary: I think your statement that &quot;lexically scoped variables are not visible outside the current package&quot; is a bit confusing. Lexicals aren't affected by the current package as far as I'm aware. http://stackoverflow.com/questions/436189/how-can-i-read-the-files-in-a-directory-in-sorted-order/436594#436594 Comment by converter42 on How can I read the files in a directory in sorted order? converter42 2009-01-12T19:33:39Z 2009-01-12T19:33:39Z ++ for simplification, but I think someone broke your code markup (the sort block). http://stackoverflow.com/questions/399692/simple-modal-not-working-in-firefox-3-ie-7 Comment by converter42 on Simple Modal Not Working In Firefox 3 & IE 7 converter42 2009-01-01T05:27:59Z 2009-01-01T05:27:59Z &quot;model&quot; or &quot;modal?&quot; http://stackoverflow.com/questions/392135/what-exactly-does-perls-bless-do/392194#392194 Comment by converter42 on What exactly does Perl's "bless" do? converter42 2008-12-26T14:47:36Z 2008-12-26T14:47:36Z Your initial statement is incorrect. Yes, bless takes a reference as its first argument, but it is the referent variable that is blessed, not the reference itself. $ perl -le 'sub Somepackage::foo {42}; %h=(); $h=\%h; bless $h, &quot;Somepackage&quot;; $j = \%h; print $j-&gt;UNIVERSAL::can(&quot;foo&quot;)-&gt;()' 42 http://stackoverflow.com/questions/380817/best-way-to-simulate-group-by-from-bash/380845#380845 Comment by converter42 on Best way to simulate "group by" from bash converter42 2008-12-19T15:28:33Z 2008-12-19T15:28:33Z To further clarify, from the uniq man page: Note: ’uniq’ does not detect repeated lines unless they are adjacent. You may want to sort the input first, or use ‘sort -u’ without ‘uniq’. http://stackoverflow.com/questions/375450/whats-the-efficiency-and-quality-of-this-shuffling-algorithm Comment by converter42 on What's the efficiency and quality of this shuffling algorithm? converter42 2008-12-18T17:15:51Z 2008-12-18T17:15:51Z brian changed the title because this is a very FAQ on Perl mailing lists and #perl on IRC, so frequently asked that perlfaq4 includes the answer. http://stackoverflow.com/questions/372869/get-name-of-a-variable-as-input-and-change-the-variable-with-that-name/372904#372904 Comment by converter42 on Get name of a variable as input and change the variable with that name converter42 2008-12-18T15:31:41Z 2008-12-18T15:31:41Z The syntax is &quot;. scriptname&quot;, not &quot;.scriptname&quot;. The dot command is synonymous with the source command. http://stackoverflow.com/questions/375450/whats-the-efficiency-and-quality-of-this-shuffling-algorithm/375797#375797 Comment by converter42 on What's the efficiency and quality of this shuffling algorithm? converter42 2008-12-17T23:14:21Z 2008-12-17T23:14:21Z Kudos for pointing to Perl's awesome documentation. I might add that perldoc -q shuffle from the command line is another way to find the same information. http://stackoverflow.com/questions/360602/what-gui-toolkit-looks-best-for-a-native-laf-for-python-in-windows-and-linux Comment by converter42 on What GUI toolkit looks best for a native LAF for Python in Windows and Linux? converter42 2008-12-12T04:22:10Z 2008-12-12T04:22:10Z Please try to proofread your posts a little better. The title contains a repeated word, and you tagged it &quot;phyton&quot;. :)