User cjm - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T17:50:11Zhttp://stackoverflow.com/feeds/user/8355http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1854214/how-do-i-keep-emacs-org-mode-from-splitting-windows/1854647#18546473Answer by cjm for How do I keep Emacs org-mode from splitting windows?cjm2009-12-06T07:31:26Z2009-12-06T07:31:26Z<p>I'm assuming you mean you want to open the link in a new frame. (Emacs terminology is a bit different from other GUI apps, because Emacs predates X11. What would be called a "window" in other apps is called a "frame" in Emacs, because "window" already had a specific meaning in Emacs, and was used in the names of lots of functions.) What's happening now is that you have a frame containing one window, and Emacs is splitting that window to form two windows.</p>
<p>You need to customize <code>org-link-frame-setup</code> to use <code>find-file-other-frame</code> instead of the default <code>find-file-other-window</code>.</p>
<p>You can do this by typing <code>M-x customize-variable <ENTER> org-link-frame-setup <ENTER></code>. Click the <code>Value Menu</code> next to <code>find-file-other-window</code> and select <code>find-file-other-frame</code>, then click <code>Save for future sessions</code>.</p>
http://stackoverflow.com/questions/1757745/how-can-i-debug-a-perl-cgi-script/1758796#17587960Answer by cjm for How can I debug a Perl CGI script?cjm2009-11-18T20:22:37Z2009-11-18T20:22:37Z<p>You might try <a href="http://search.cpan.org/perldoc?CGI%3A%3AInspect" rel="nofollow">CGI::Inspect</a>. I haven't needed to try it myself, but I saw it <a href="http://yapc10.org/yn2009/talk/2012" rel="nofollow">demonstrated at YAPC</a>, and it looked awesome.</p>
http://stackoverflow.com/questions/234075/what-is-your-best-programmer-joke/234170#2341701009Answer by cjm for What is your best programmer joke?cjm2008-10-24T16:04:38Z2009-10-27T07:28:01Z<p><img src="http://i38.tinypic.com/140eo3l.jpg" alt="It's not a bug..." /></p>
http://stackoverflow.com/questions/1533067/what-is-the-best-way-to-gunzip-files-with-perl/1533322#15333220Answer by cjm for What is the best way to gunzip files with Perl?cjm2009-10-07T18:20:59Z2009-10-07T18:20:59Z<p>The last time I tried it, spawning an external <code>gunzip</code> was considerably faster than using a Perl module (just like your benchmarks show). I suspect it's all the method calls involved in tying a filehandle.</p>
<p>I expect <code><$z></code> is slower than <code>$z->getline</code> for a similar reason. There's more magic involved in figuring out that the first needs to be translated into the second.</p>
http://stackoverflow.com/questions/1526859/does-perl-have-something-similar-to-phps-constant/1527419#15274194Answer by cjm for Does Perl have something similar to PHP's constant()?cjm2009-10-06T19:00:10Z2009-10-07T03:10:11Z<p>Here's the <code>constant</code> function you're looking for:</p>
<pre><code>sub constant
{
no strict 'refs';
shift->(); # Call the supplied function by name
} # end constant
</code></pre>
<p>Just add that to the code in your question, and it will do what you asked for. The constants created by the <a href="http://search.cpan.org/perldoc?constant" rel="nofollow">constant</a> pragma are just subroutines, and it's easy to call a subroutine by name.</p>
<p>Here's a more advanced one that still works even if you're calling it from a different package:</p>
<pre><code>sub constant
{
my $constant = shift;
$constant = caller() . "::$constant" unless $constant =~ /::/;
no strict 'refs';
$constant->(); # Call function by name
} # end constant
</code></pre>
http://stackoverflow.com/questions/1518923/how-can-i-create-a-tcp-server-daemon-process-in-perl/1519202#15192021Answer by cjm for How can I create a TCP server daemon process in Perl?cjm2009-10-05T10:07:22Z2009-10-05T18:03:59Z<p>I've never had occasion to try it myself, but I believe <a href="http://poe.perl.org/?What%5FPOE%5FIs" rel="nofollow">POE</a> is highly regarded for that sort of thing.</p>
<p>Here are <a href="http://poe.perl.org/?POE%5FCookbook/TCP%5FServers" rel="nofollow">some examples of TCP servers written with POE.</a></p>
http://stackoverflow.com/questions/1502396/how-can-i-force-perl-to-run-the-module-from-the-test-directory-only/1502476#15024766Answer by cjm for How can I force Perl to run the module from the test directory only?cjm2009-10-01T07:49:41Z2009-10-01T15:53:49Z<p>After you have <code>require</code>d or <code>use</code>d the module, check <code>%INC</code> to see where it came from.</p>
<p>For example:</p>
<pre><code>use Data::Dumper;
print $INC{'Data/Dumper.pm'}."\n";
</code></pre>
<p>Note that "::" becomes "/" and you append ".pm". That might give you a clue.</p>
<p>Remember that the current directory (".") is usually an entry in <code>@INC</code>. But the first step is finding out what directory the module was loaded from.</p>
<p>Another thing to remember is that the directories in <code>@INC</code> are searched in order. <code>use lib</code> prepends to that list (making it the first-searched directory), so you may just need to add the appropriate directory.</p>
http://stackoverflow.com/questions/1495685/how-do-i-start-a-new-perl-module-distribution/1496069#14960692Answer by cjm for How do I start a new Perl module distribution?cjm2009-09-30T04:04:40Z2009-09-30T04:04:40Z<p>Try this structure:</p>
<pre><code>bin/Main.pl
lib/Utils/Util1.pm
lib/Utils/Util2.pm
Makefile.PL
MANIFEST
README
t/Utils1.t
t/Utils2.t
</code></pre>
<p>As ysth said, <code>make</code> does not install your modules, it just builds them in a <code>blib</code> directory. (In your case it just copies them there, but if you had XS code, it would be compiled with a C compiler.) Use <code>make install</code> to install your modules for regular scripts to use.</p>
<p>If you want to run your script between <code>make</code> and <code>make install</code>, you can do:</p>
<pre><code>perl -Mblib bin/Main.pl
</code></pre>
<p>The <code>-Mblib</code> instructs perl to temporarily add the appropriate directories to the search path, so you can try out an uninstalled module. (<code>make test</code> does that automatically.)</p>
http://stackoverflow.com/questions/1456405/setting-access-permissions-on-semaphore/1458446#14584462Answer by cjm for Setting Access permissions on Semaphore?cjm2009-09-22T06:35:09Z2009-09-22T06:35:09Z<p>For the record, I'm the author of <a href="http://search.cpan.org/perldoc?Win32%3A%3ASemaphore" rel="nofollow">Win32::Semaphore</a>. As mobrule and Rob have explained, Windows security is user/group based. It's not possible to have a semaphore that only certain processes can access. If any process belonging to a user can access a semaphore, then <em>any</em> process of that user can access that semaphore.</p>
<p>Normally, the default access allows only the current user to access the semaphore. Nobody's ever requested the ability to have Win32::Semaphore specify a non-default security descriptor, and the associated API is non-trivial. If somebody created a module to manage a SECURITY_ATTRIBUTES structure, I'd be happy to add support for that to Win32::Semaphore and the related IPC modules. <a href="http://search.cpan.org/dist/Win32-Security/" rel="nofollow">Win32-Security</a> does not appear to be that module, although it might be a start.</p>
<p>If you need a semaphore to work across multiple users, your only solution right now is to create the semaphore outside of Win32::Semaphore, passing an appropriate SECURITY_ATTRIBUTES pointer. You could do that with a small helper program written in C, or using <a href="http://search.cpan.org/perldoc?Inline%3A%3AC" rel="nofollow">Inline::C</a>. (Remember that once created, a semaphore exists as long as any process has an open handle to it, so your helper program needs to keep the semaphore handle open until you've called <code>Win32::Semaphore->open</code> on it.)</p>
http://stackoverflow.com/questions/1433744/how-do-i-send-data-to-a-network-printer-with-perl-on-win32/1435330#14353302Answer by cjm for How do I send data to a network printer with Perl on Win32?cjm2009-09-16T20:38:16Z2009-09-16T20:50:34Z<p>If you have a PDF file, and the user has Adobe Reader installed (which is pretty standard), you should be able to print the file to the default printer using the <a href="http://search.cpan.org/perldoc?Win32%3A%3AFileOp#ShellExecute" rel="nofollow">ShellExecute</a> function in <a href="http://search.cpan.org/perldoc?Win32%3A%3AFileOp" rel="nofollow">Win32::FileOp</a>:</p>
<pre><code>use Win32::FileOp 'ShellExecute';
ShellExecute(print => 'A:/Path/to/File.pdf');
</code></pre>
http://stackoverflow.com/questions/1430548/how-can-i-call-a-perl-class-with-a-shorter-name/1430677#143067710Answer by cjm for How can I call a Perl class with a shorter name?cjm2009-09-16T02:43:55Z2009-09-16T04:04:13Z<p>You can suggest that your users use the <a href="http://search.cpan.org/perldoc?aliased" rel="nofollow">aliased</a> module to load yours:</p>
<pre><code>use aliased 'Galaxy::SGE::MakeJobSH';
my $job = MakeJobSH->new();
</code></pre>
<p>Or you could export your class name in a variable named <code>$MakeJobSH</code>;</p>
<pre><code>use Galaxy::SGE::MakeJobSH; # Assume this exports $MakeJobSH = 'Galaxy::SGE::MakeJobSH';
my $job = $MakeJobSH->new();
</code></pre>
<p>Or you could export a MakeJobSH function that returns your class name:</p>
<pre><code>use Galaxy::SGE::MakeJobSH; # Assume this exports the MakeJobSH function
my $job = MakeJobSH->new();
</code></pre>
<p>I'm not sure this is all that great an idea, though. People don't usually have to type the class name all that often.</p>
<p>Here's what you'd do in your class for the last two options:</p>
<pre><code>package Galaxy::SGE::MakeJobSH;
use Exporter 'import';
our @EXPORT = qw(MakeJobSH $MakeJobSH);
our $MakeJobSH = __PACKAGE__;
sub MakeJobSH () { __PACKAGE__ };
</code></pre>
<p>Of course, you'd probably want to pick just one of those methods. I've just combined them to avoid duplicating examples.</p>
http://stackoverflow.com/questions/1413539/how-can-i-test-perl-applications-using-a-changing-system-time/1413633#14136334Answer by cjm for How can I test Perl applications using a changing system time?cjm2009-09-11T22:51:26Z2009-09-15T18:09:05Z<p>I think Hook::LexWrap is overkill for this situation. It's easier to just redefine such a simple function.</p>
<pre><code>use DateTime;
my $offset;
BEGIN {
$offset = 24 * 60 * 60; # Pretend it's tomorrow
no warnings 'redefine';
sub DateTime::now
{
shift->from_epoch( epoch => ($offset + scalar time), @_ )
}
} # end BEGIN
</code></pre>
<p>You can replace <code>my $offset</code> with <code>our $offset</code> if you need to access the <code>$offset</code> from outside the file which contains this code.</p>
<p>You can adjust <code>$offset</code> at any time, if you want to change DateTime's idea of the current time during the run.</p>
<p>The calculation of <code>$offset</code> should probably be more complicated than shown above. For example, to set the "current time" to an absolute time:</p>
<pre><code>my $want = DateTime->new(
year => 2009,
month => 9,
day => 14,
hour => 12,
minute => 0,
second => 0,
time_zone => 'America/Chicago',
);
my $current = DateTime->from_epoch(epoch => scalar time);
$offset = $want->subtract_datetime_absolute($current)->in_units('seconds');
</code></pre>
<p>But you probably do want to calculate a fixed number of seconds to add to the current time, so that time will advance normally after that. The problem with using <code>add( days => 1 );</code> in the redefined <code>now</code> method is that things like DST changes will cause the time to jump at the wrong pseudotime.</p>
http://stackoverflow.com/questions/1424785/good-c-directory-and-file-library/1424798#142479813Answer by cjm for Good C++ directory and file library?cjm2009-09-15T02:12:08Z2009-09-15T02:12:08Z<p>Try the <a href="http://www.boost.org/libs/filesystem/" rel="nofollow">Boost.Filesystem library</a>.</p>
http://stackoverflow.com/questions/1423357/writing-to-shared-memory/1423383#14233832Answer by cjm for Writing to shared memorycjm2009-09-14T19:17:04Z2009-09-14T20:07:53Z<p>The <code>sprintf</code> stores a NUL after <code><output 1></code>, and <code>printf</code> stops at the first NUL.</p>
<p>(Also, it's a bad idea to pass some random file as the format to <code>printf</code>. What if it contained <code>%</code> characters? But that's another issue.)</p>
<blockquote>
<p>I'm writing to the input file when I
call sprintf. But I still don't know
why...</p>
</blockquote>
<p>Because that's what <code>MapViewOfFile</code> <em>does</em>. It associates the file's contents with a block of memory. The current contents of the file appear in the memory block, and any changes you make to that memory are written to the file.</p>
http://stackoverflow.com/questions/1416171/emacs-visual-line-mode-and-fill-paragraph/1416207#14162072Answer by cjm for emacs: visual-line-mode and fill-paragraph...cjm2009-09-12T21:38:35Z2009-09-12T22:17:24Z<pre><code>(defun maybe-fill-paragraph (&optional justify region)
"Fill paragraph at or after point (see `fill-paragraph').
Does nothing if `visual-line-mode' is on."
(interactive (progn
(barf-if-buffer-read-only)
(list (if current-prefix-arg 'full) t)))
(or visual-line-mode
(fill-paragraph justify region)))
;; Replace M-q with new binding:
(global-set-key "\M-q" 'maybe-fill-paragraph)
</code></pre>
<p>Instead of using <code>global-set-key</code>, you can also rebind <code>M-q</code> only in specific modes. (Or, you could change the global binding, and then bind <code>M-q</code> back to <code>fill-paragraph</code> in a specific mode.) Note that many modes are autoloaded, so their keymap may not be defined until the mode is activated. To set a mode-specific binding, I usually use a function like this:</p>
<pre><code>(add-hook 'text-mode-hook
(defun cjm-fix-text-mode ()
(define-key text-mode-map "\M-q" 'maybe-fill-paragraph)
(remove-hook 'text-mode-hook 'cjm-fix-text-mode)))
</code></pre>
<p>(The <code>remove-hook</code> isn't strictly necessary, but the function only needs to run once.)</p>
http://stackoverflow.com/questions/1406291/how-can-i-use-an-array-as-a-hash-value-in-perl/1406390#14063907Answer by cjm for How can I use an array as a hash value in Perl?cjm2009-09-10T16:39:31Z2009-09-10T16:49:15Z<p>As others have mentioned, you're describing an unusual data structure: an array with only one element, which is an arrayref of hashrefs. I'll assume that you really do want that structure for some reason.</p>
<pre><code>my @elements = [
{name => "John Doe", age => 23},
{name => "Jane Doe", age => 24}
];
</code></pre>
<p>is equivalent to</p>
<pre><code>my @elements = [];
push(@{ $elements[0] }, {name => "John Doe", age => 23});
push(@{ $elements[0] }, {name => "Jane Doe", age => 24});
</code></pre>
<p>because you want to push the hashrefs onto the arrayref in <code>$elements[0]</code>, not the <code>@elements</code> array.</p>
<p>But it's unusual to have an array with only one element. Looking at the additional code you've posted, what you really want is this:</p>
<pre><code>my $elementsRef = [];
push(@$elementsRef, {name => "John Doe", age => 23});
push(@$elementsRef, {name => "Jane Doe", age => 24});
</code></pre>
<p>Or this:</p>
<pre><code>my @elements;
push(@elements, {name => "John Doe", age => 23});
push(@elements, {name => "Jane Doe", age => 24});
</code></pre>
<p>and then use <code>\@elements</code> where you currently use <code>@elements</code>.</p>
<p>Either one of those will work. It's up to you to decide which one you prefer. I'd probably go with the second version.</p>
http://stackoverflow.com/questions/1399620/how-do-i-call-a-win32-dll-void-parameter-using-win32api/1401460#14014601Answer by cjm for How do I call a Win32 DLL void** parameter using Win32::API?cjm2009-09-09T19:02:17Z2009-09-09T19:02:17Z<p>The variable associated with a <code>P</code> parameter must be a pre-allocated <em>string</em> variable, not an integer. Try something like:</p>
<pre><code>my $pResult = "\0" x 8; # Just in case we're 64-bit
my $rc = $ dll_func ->Call($data, 0, 0, 9, 0.6, 0.3, $pResult);
</code></pre>
<p><code>$pResult</code> will then contain the pointer to the object. You'll probably need to use <code>unpack</code> to extract it.</p>
<p>You don't say what you need to do with the object. If you need to pass it to other DLL functions as a <code>void*</code>, you'll probably need to unpack it as a <code>long</code> and use <code>N</code> instead of <code>P</code> in the parameter list.</p>
http://stackoverflow.com/questions/1400850/how-can-i-order-tags-in-xmlsimples-output/1401360#14013600Answer by cjm for How can I order tags in XML::Simple's output?cjm2009-09-09T18:42:12Z2009-09-09T18:42:12Z<p>This code will produce the output you asked for in a comment:</p>
<pre><code>use strict;
use warnings;
use XML::Simple;
my $structure = { 'supertag' => [
'value 1',
'value 2',
'value 3',
'value 4',
],
};
my $xml = XMLout($structure, GroupTags => { supertag => 'tag'});
print "The xml generated is:\n";
print $xml;
print "\n";
</code></pre>
<p>It generates:</p>
<pre><code>The xml generated is:
<opt>
<supertag>
<tag>value 1</tag>
<tag>value 2</tag>
<tag>value 3</tag>
<tag>value 4</tag>
</supertag>
</opt>
</code></pre>
http://stackoverflow.com/questions/1391455/how-can-i-select-a-random-listbox-item-with-wwwmechanize/1391525#13915253Answer by cjm for How can I select a random listbox item with WWW::Mechanize?cjm2009-09-08T01:21:09Z2009-09-08T01:26:53Z<p><a href="http://search.cpan.org/perldoc?WWW%3A%3AMechanize" rel="nofollow">WWW::Mechanize</a> uses <a href="http://search.cpan.org/perldoc?HTML%3A%3AForm" rel="nofollow">HTML::Form</a> for processing forms. You can get the HTML::Form object with the <code>form_name</code> or <code>form_number</code> methods. So, use something like this:</p>
<pre><code>my $form = $mech->form_number(1);
my $select = $form->find_input('name_of_select_box');
my @values = $select->possible_values;
$select->value($values[int rand @values]); # Choose a possible value at random
</code></pre>
http://stackoverflow.com/questions/1384398/usr-bin-perl-bad-interpreter-text-file-busy/1384594#13845943Answer by cjm for /usr/bin/perl: bad interpreter: Text file busycjm2009-09-06T00:39:51Z2009-09-06T00:39:51Z<p>I'd guess you encountered <a href="http://dpk.net/2009/03/13/flock-before-execve/" rel="nofollow">this issue</a>.</p>
<p>The Linux kernel will generate a <code>bad interpreter: Text file busy</code> error if your Perl script (or any other kind of script) is open for writing when you try to execute it.</p>
<p>You don't say what the disk-intensive processes were doing. Is it possible one of them had the script open for read+write access (even if it wasn't actually writing anything)?</p>
http://stackoverflow.com/questions/1374802/in-emacs-how-can-i-load-a-certain-file-when-require-x-is-called/1374873#13748733Answer by cjm for In Emacs, how can I load a certain file when (require 'x) is called?cjm2009-09-03T17:40:07Z2009-09-04T09:26:25Z<p>Genehack is probably right; I'm being too literal in answering the question. The best way to handle something like this is to figure out which function(s) are required by external code, and add <code>autoload</code>s for them.</p>
<p>But if <code>autoload</code> won't work in your case, the normal way to do something when a file is loaded is to do</p>
<pre><code>(eval-after-load "semantic" '(load "cedet"))
</code></pre>
<p>But I just noticed that you say that semantic.el fails to load if CEDET hasn't been loaded first. As implied by the name, <code>eval-after-load</code> runs the code <em>after</em> the specified file is loaded.</p>
<p>You can try finding a different file to trigger loading, instead of using semantic.el. (Perhaps some other file that semantic.el requires.)</p>
<p>If necessary, you could hook into <code>require</code>:</p>
<pre><code>(defadvice require (before CEDET-require activate)
(if (eq 'semantic (ad-get-arg 0))
(load "cedet")))
</code></pre>
<p>Although <code>(load "cedet")</code> should probably be <code>(require 'cedet)</code>, or you'll wind up reloading it every time. (I'm not sure if CEDET has a <code>(provide 'cedet)</code>, so I didn't do it that way in my example.)</p>
<p>Note that putting advice on <code>require</code> will not do anything if semantic has already been loaded, so you may need to check <code>(featurep 'semantic)</code> first and load cedet.el immediately if necessary.</p>
http://stackoverflow.com/questions/1360698/representing-a-complex-perl-data-structure-containing-array-references-in-config/1360824#13608244Answer by cjm for Representing a complex Perl data structure containing array references in Config::Generalcjm2009-09-01T06:25:26Z2009-09-01T06:25:26Z<p>I don't believe it's possible with Config::General. For example:</p>
<pre><code>use Config::General qw(SaveConfigString);
my $config = {
'View::Mason' => {
comp_root => [
[ 'teamsite' => 'root/teamsite' ],
[ 'components' => 'root/components' ],
],
},
};
print SaveConfigString($config);
</code></pre>
<p>produces</p>
<pre><code><View::Mason>
comp_root ARRAY(0x94ea168)
comp_root ARRAY(0x94fbc98)
</View::Mason>
</code></pre>
<p>If it can't save it, odds are it can't load it.</p>
<p>Here's what I would do:</p>
<ol>
<li>Figure out what I want my config file to look like.</li>
<li>Find a module capable of loading a config file like that. (Possibly making some changes to the format, if it proves too difficult to load.)</li>
<li>If the result of step 2 is not suitable for direct use by the rest of my program, write some code to convert what the config reader gives me into what my program wants.</li>
</ol>
http://stackoverflow.com/questions/1351852/debug-elisp-major-mode/1352188#13521884Answer by cjm for debug elisp major modecjm2009-08-29T19:26:35Z2009-08-31T21:32:50Z<p>Find the Lisp source of the function you'd like to step through, and type <code>M-x edebug-defun</code> there. Then, whenever that function is executed, you'll automatically be placed into Edebug, where you can step through it if you wish.</p>
<p>Fontification functions can be a bit tricky though, as they can be invoked at odd times. You can use the <code>message</code> function to write messages into the <code>*Messages*</code> buffer. Another trick is to turn off Font Lock (so your function doesn't get invoked automatically), then prep the function you're debugging with <code>edebug-defun</code> and invoke it manually. (Note that you can use <code>M-:</code> (a.k.a. <code>eval-expression</code>) to invoke a non-interactive function.)</p>
http://stackoverflow.com/questions/1353179/how-should-i-promote-perl-warnings-to-fatal-errors-during-development/1353185#135318511Answer by cjm for How should I promote Perl warnings to fatal errors during development?cjm2009-08-30T05:59:07Z2009-08-30T05:59:07Z<p>I think you're looking for <a href="http://search.cpan.org/perldoc?Test%3A%3ANoWarnings" rel="nofollow">Test::NoWarnings</a>.</p>
http://stackoverflow.com/questions/1352651/why-am-i-getting-a-odd-number-of-elements-in-anonymous-hash-warning-in-perl/1352783#13527836Answer by cjm for Why am I getting a "Odd number of elements in anonymous hash" warning in Perl?cjm2009-08-30T01:11:21Z2009-08-30T01:11:21Z<p>While techically valid syntax, it's not doing what you think.</p>
<pre><code>'custom_fields' => {
{ "key" => "height", "value" => 500 },
{ "key" => "width", "value" => 750 }
},
</code></pre>
<p>is roughly equivalent to something like:</p>
<pre><code>'custom_fields' => {
'HASH(0x881a168)' => { "key" => "width", "value" => 750 }
},
</code></pre>
<p>which is certainly not what you want. (The 0x881a168 part will vary; it's actually the address where the hashref is stored.)</p>
<p>I'm not sure what the correct syntax for custom fields is. You can try</p>
<pre><code>'custom_fields' => [
{ "key" => "height", "value" => 500 },
{ "key" => "width", "value" => 750 }
],
</code></pre>
<p>which will set custom_fields to an array of hashes. But that may not be right. It depends on what <code>send_request</code> expects.</p>
http://stackoverflow.com/questions/1347907/real-link-in-html-mode-emacs/1349835#13498351Answer by cjm for real link in html-mode emacscjm2009-08-28T23:14:37Z2009-08-28T23:14:37Z<p>I'm not sure I understand the question. You appear to be saying that Emacs is displaying <code>src="index_new_menus_files/menu_bg_2.gif"</code> in the buffer, but is saving it as <code>src="images/menu_bg_2.gif"</code>. But I find that hard to believe.</p>
<p>In Firefox, when you Save Page As... "Web page, complete", it changes all the <code><img></code> tags to link to the <em>pagename</em><code>_files</code> directory. Once it's done that, there's no way for Emacs to know what the original link looked like. You'd have to Save Page As... "Web page, HTML only" to prevent Firefox from changing all the links. That has nothing to do with Emacs.</p>
http://stackoverflow.com/questions/1344747/how-to-refer-to-the-file-currently-being-loaded-in-emacs-lisp/1344894#13448943Answer by cjm for How to refer to the file currently being loaded in Emacs Lisp?cjm2009-08-28T03:32:53Z2009-08-28T03:45:24Z<p><code>M-x describe-variable load-file-name</code></p>
<pre><code>load-file-name is a variable defined in `C source code'.
Documentation:
Full name of file being loaded by `load'.
</code></pre>
<p>You might also be interested in the <code>symbol-file</code> function, which will tell you the absolute filename in which a specified function or variable was defined.</p>
<p>If you want to get fancy, you can check the <code>load-in-progress</code> variable. If that's <code>nil</code>, then no load is in progress (and you're presumably being <code>eval</code>'d in a buffer). In that case, you could try <code>(buffer-file-name)</code> to get the filename.</p>
http://stackoverflow.com/questions/1325380/perl-variable-scope-question/1325525#13255253Answer by cjm for Perl variable scope questioncjm2009-08-25T00:47:38Z2009-08-25T05:35:26Z<p>You could use <a href="http://search.cpan.org/perldoc?Sub::Identify" rel="nofollow">Sub::Identify</a> to find out the package (which it calls <code>stash_name</code>) associated with the coderef. Then set $a and $b in that package as required. You may need to use <code>no strict 'refs'</code> in your method to get that to work.</p>
<p>Here's Evee's answer modified to work in the general case:</p>
<pre><code>use strict;
use warnings;
package Foo;
use Sub::Identify 'stash_name';
sub sort {
my ($self, $sub) = @_;
my $pkg = stash_name($sub);
my @x = qw(1 6 39 2 5);
print "@x\n";
{
no strict 'refs';
@x = sort {
local (${$pkg.'::a'}, ${$pkg.'::b'}) = ($a, $b);
$sub->();
} @x;
}
print "@x\n";
return;
}
package Sorter;
sub compare { $a <=> $b }
package main;
use strict;
use warnings;
my $foo = {};
bless $foo, 'Foo';
$foo->sort(\&Sorter::compare );
$foo->sort(sub { $b <=> $a });
</code></pre>
http://stackoverflow.com/questions/1314637/using-win32ole-to-execute-macro-in-access-2007/1319742#13197421Answer by cjm for Using Win32::OLE to execute macro in Access 2007cjm2009-08-23T22:24:51Z2009-08-23T22:24:51Z<p>According to <a href="http://msdn.microsoft.com/en-us/library/bb149125.aspx" rel="nofollow">Microsoft's rather confusing documentation</a>, <a href="http://msdn.microsoft.com/en-us/library/bb237480.aspx" rel="nofollow">DoCmd</a> is a <strong>property</strong> of the Application object, and <a href="http://msdn.microsoft.com/en-us/library/bb214052.aspx" rel="nofollow">RunMacro</a> is a <strong>method</strong> of DoCmd. In Win32::OLE, methods use method syntax and properties use hash syntax. (The dot '.' is Visual Basic syntax. In Perl 5, use a '->').</p>
<p>So the last two lines of your code should be (I think):</p>
<pre><code>$oAccess->OpenCurrentDatabase($filename);
$oAccess->{DoCmd}->RunMacro("Macro1");
</code></pre>
<p>I don't have Access 2007 so I can't test this.</p>
<p>Note that <a href="http://msdn.microsoft.com/en-us/library/bb238012.aspx" rel="nofollow">OpenCurrentDatabase</a> does not return anything, which is why you're getting "Can't call method "DoCmd" on an undefined value" when you try to call methods on $oDatabase (which is undef).</p>
<p><em>Links to Microsoft's documentation worked on August 23, 2009, but Microsoft has never read <a href="http://www.w3.org/Provider/Style/URI" rel="nofollow">Cool URIs don't change</a>, so your mileage may vary.</em></p>
http://stackoverflow.com/questions/1316929/how-can-i-check-for-the-existence-of-utf-16-filenames-in-perl/1317015#13170155Answer by cjm for How can I check for the existence of UTF-16 filenames in Perl?cjm2009-08-22T20:47:30Z2009-08-22T20:53:19Z<p>The UTF-16 text is processed by the :encoding layer. By the time it gets into <code>$_</code>, there's no way to tell that it was ever UTF-16. I don't think that's your issue.</p>
<p>My guess would be that you've either got some whitespace in your filename (that you didn't notice when you tried printing it out) or you're not in the directory you think you are.</p>
<p>Try</p>
<pre><code>if (-e $filename) { print "File exists!" }
else { print "File <$filename> not found" }
</code></pre>
<p>and check the filename carefully. You might also <code>use Cwd;</code> and print out the current directory.</p>
http://stackoverflow.com/questions/1742279/with-a-utf8-encoded-perl-script-can-it-open-a-filename-encoded-as-gb2312Comment by cjm on With a utf8-encoded Perl script, can it open a filename encoded as GB2312?cjm2009-11-25T22:51:20Z2009-11-25T22:51:20ZI think you should <code>use utf8;</code> at the top, and then skip the <code>decode</code> step. The utf8 pragma tells Perl that your source code (including string literals) is already UTF-8.http://stackoverflow.com/questions/1777026/perl-regex-replacement-string-special-variable/1780735#1780735Comment by cjm on Perl regex replacement string special variablecjm2009-11-23T05:10:30Z2009-11-23T05:10:30ZThe last $store is redundant, though; assignment returns the value assigned.http://stackoverflow.com/questions/1526859/does-perl-have-something-similar-to-phps-constant/1526892#1526892Comment by cjm on Does Perl have something similar to PHP's constant()?cjm2009-10-06T19:39:25Z2009-10-06T19:39:25ZYour <code>read_constant</code> is doing an awful lot of work to avoid saying <code>no strict 'refs'</code>. See my answer for a shorter version. (<a href="http://stackoverflow.com/questions/1526859/does-perl-have-something-similar-to-phps-constant/1527419#1527419" rel="nofollow" title="does perl have something similar to phps constant">stackoverflow.com/questions/1526859/…</a>)http://stackoverflow.com/questions/1518923/how-can-i-create-a-tcp-server-daemon-process-in-perlComment by cjm on How can I create a TCP server daemon process in Perl?cjm2009-10-05T09:11:36Z2009-10-05T09:11:36ZWhat sort of server? There are modules for implementing HTTP servers, SMTP servers, ...http://stackoverflow.com/questions/1498042/should-a-perl-constructor-return-an-undef-or-a-invalid-object/1498276#1498276Comment by cjm on Should a Perl constructor return an undef or a "invalid" object?cjm2009-09-30T19:18:49Z2009-09-30T19:18:49ZCheck out <code>Exception::Class</code> as a handy way of throwing objects as exceptions. (<a href="http://search.cpan.org/perldoc?Exception::Class" rel="nofollow">search.cpan.org/perldoc?Exception::Class</a>)http://stackoverflow.com/questions/1453333/how-to-make-elements-of-vector-unique-remove-non-adjacent-duplicates/1453380#1453380Comment by cjm on How to make elements of vector unique? (remove non adjacent duplicates)cjm2009-09-21T08:51:55Z2009-09-21T08:51:55ZOther than that (now corrected) thinko, I like this algorithm.http://stackoverflow.com/questions/1453333/how-to-make-elements-of-vector-unique-remove-non-adjacent-duplicates/1453380#1453380Comment by cjm on How to make elements of vector unique? (remove non adjacent duplicates)cjm2009-09-21T08:47:04Z2009-09-21T08:47:04ZUsing <code>find</code> and then <code>insert</code> is inefficient. <code>tmpset.insert(*r).second</code> will be true if the value was inserted, and false if the value was already in the set.http://stackoverflow.com/questions/1450169/how-do-i-emulate-vims-softtabstop-in-emacsComment by cjm on How do I emulate vim's 'softtabstop' in emacs?cjm2009-09-20T06:22:26Z2009-09-20T06:22:26ZThis is complicated by the fact that it looks like you're writing Perl, and cperl-mode (the best Perl mode for Emacs) already binds backspace to <code>cperl-electric-backspace</code>. (Although that function doesn't do anything critical, so you could get by without the behavior it provides.)http://stackoverflow.com/questions/1430548/how-can-i-call-a-perl-class-with-a-shorter-name/1430582#1430582Comment by cjm on How can I call a Perl class with a shorter name?cjm2009-09-16T21:59:30Z2009-09-16T21:59:30ZI think you missed the point that he's writing the module and wants to provide an alias for it. He's not writing the code that uses the module. So while <code>aliased</code> is a pointer in the right direction, it's not really the answer.http://stackoverflow.com/questions/204467/is-there-a-perl-function-to-turn-a-string-into-a-regexp-to-use-that-string-as-pat/204490#204490Comment by cjm on Is there a Perl function to turn a string into a regexp to use that string as pattern?cjm2009-09-16T21:55:04Z2009-09-16T21:55:04ZSee <a href="http://stackoverflow.com/questions/297034/why-are-perl-function-prototypes-bad" rel="nofollow" title="why are perl function prototypes bad">stackoverflow.com/questions/297034/…</a>http://stackoverflow.com/questions/1433965/schaums-code-not-workingComment by cjm on Schaum's code not working!cjm2009-09-16T16:14:37Z2009-09-16T16:14:37ZCan you be more specific about "it didn't work"? What does happen?http://stackoverflow.com/questions/1430548/how-can-i-call-a-perl-class-with-a-shorter-name/1430732#1430732Comment by cjm on How can I call a Perl class with a shorter name?cjm2009-09-16T03:15:55Z2009-09-16T03:15:55ZThat was the third option in my answer.http://stackoverflow.com/questions/1416171/emacs-visual-line-mode-and-fill-paragraph/1416207#1416207Comment by cjm on emacs: visual-line-mode and fill-paragraph...cjm2009-09-12T23:00:49Z2009-09-12T23:00:49ZYes, that will work. I just happen to prefer using a real named function instead of an anonymous one.http://stackoverflow.com/questions/1416171/emacs-visual-line-mode-and-fill-paragraph/1416227#1416227Comment by cjm on emacs: visual-line-mode and fill-paragraph...cjm2009-09-12T22:03:07Z2009-09-12T22:03:07ZRe: "(I love defadvice though because you can also turn it off without rebooting emacs)"
You can also bind M-q back to fill-paragraph (either globally or in a specific mode) without restarting Emacs.http://stackoverflow.com/questions/1416171/emacs-visual-line-mode-and-fill-paragraph/1416227#1416227Comment by cjm on emacs: visual-line-mode and fill-paragraph...cjm2009-09-12T22:01:18Z2009-09-12T22:01:18Z<b>Usage Note:</b> Advice is useful for altering the behavior of existing calls to an existing function. If you want the new behavior for new calls, or for key bindings, you should define a new function (or a new command) which uses the existing function. (<a href="http://www.gnu.org/software/emacs/manual/html_node/elisp/Advising-Functions.html#Advising-Functions" rel="nofollow">gnu.org/software/emacs/…</a>)