User cjm - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T17:50:11Z http://stackoverflow.com/feeds/user/8355 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1854214/how-do-i-keep-emacs-org-mode-from-splitting-windows/1854647#1854647 3 Answer by cjm for How do I keep Emacs org-mode from splitting windows? cjm 2009-12-06T07:31:26Z 2009-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 &lt;ENTER&gt; org-link-frame-setup &lt;ENTER&gt;</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#1758796 0 Answer by cjm for How can I debug a Perl CGI script? cjm 2009-11-18T20:22:37Z 2009-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#234170 1009 Answer by cjm for What is your best programmer joke? cjm 2008-10-24T16:04:38Z 2009-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#1533322 0 Answer by cjm for What is the best way to gunzip files with Perl? cjm 2009-10-07T18:20:59Z 2009-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>&lt;$z&gt;</code> is slower than <code>$z-&gt;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#1527419 4 Answer by cjm for Does Perl have something similar to PHP's constant()? cjm 2009-10-06T19:00:10Z 2009-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-&gt;(); # 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-&gt;(); # 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#1519202 1 Answer by cjm for How can I create a TCP server daemon process in Perl? cjm 2009-10-05T10:07:22Z 2009-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#1502476 6 Answer by cjm for How can I force Perl to run the module from the test directory only? cjm 2009-10-01T07:49:41Z 2009-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#1496069 2 Answer by cjm for How do I start a new Perl module distribution? cjm 2009-09-30T04:04:40Z 2009-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#1458446 2 Answer by cjm for Setting Access permissions on Semaphore? cjm 2009-09-22T06:35:09Z 2009-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-&gt;open</code> on it.)</p> http://stackoverflow.com/questions/1433744/how-do-i-send-data-to-a-network-printer-with-perl-on-win32/1435330#1435330 2 Answer by cjm for How do I send data to a network printer with Perl on Win32? cjm 2009-09-16T20:38:16Z 2009-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 =&gt; 'A:/Path/to/File.pdf'); </code></pre> http://stackoverflow.com/questions/1430548/how-can-i-call-a-perl-class-with-a-shorter-name/1430677#1430677 10 Answer by cjm for How can I call a Perl class with a shorter name? cjm 2009-09-16T02:43:55Z 2009-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-&gt;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-&gt;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-&gt;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#1413633 4 Answer by cjm for How can I test Perl applications using a changing system time? cjm 2009-09-11T22:51:26Z 2009-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-&gt;from_epoch( epoch =&gt; ($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-&gt;new( year =&gt; 2009, month =&gt; 9, day =&gt; 14, hour =&gt; 12, minute =&gt; 0, second =&gt; 0, time_zone =&gt; 'America/Chicago', ); my $current = DateTime-&gt;from_epoch(epoch =&gt; scalar time); $offset = $want-&gt;subtract_datetime_absolute($current)-&gt;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 =&gt; 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#1424798 13 Answer by cjm for Good C++ directory and file library? cjm 2009-09-15T02:12:08Z 2009-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#1423383 2 Answer by cjm for Writing to shared memory cjm 2009-09-14T19:17:04Z 2009-09-14T20:07:53Z <p>The <code>sprintf</code> stores a NUL after <code>&lt;output 1&gt;</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#1416207 2 Answer by cjm for emacs: visual-line-mode and fill-paragraph... cjm 2009-09-12T21:38:35Z 2009-09-12T22:17:24Z <pre><code>(defun maybe-fill-paragraph (&amp;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#1406390 7 Answer by cjm for How can I use an array as a hash value in Perl? cjm 2009-09-10T16:39:31Z 2009-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 =&gt; "John Doe", age =&gt; 23}, {name =&gt; "Jane Doe", age =&gt; 24} ]; </code></pre> <p>is equivalent to</p> <pre><code>my @elements = []; push(@{ $elements[0] }, {name =&gt; "John Doe", age =&gt; 23}); push(@{ $elements[0] }, {name =&gt; "Jane Doe", age =&gt; 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 =&gt; "John Doe", age =&gt; 23}); push(@$elementsRef, {name =&gt; "Jane Doe", age =&gt; 24}); </code></pre> <p>Or this:</p> <pre><code>my @elements; push(@elements, {name =&gt; "John Doe", age =&gt; 23}); push(@elements, {name =&gt; "Jane Doe", age =&gt; 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#1401460 1 Answer by cjm for How do I call a Win32 DLL void** parameter using Win32::API? cjm 2009-09-09T19:02:17Z 2009-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 -&gt;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#1401360 0 Answer by cjm for How can I order tags in XML::Simple's output? cjm 2009-09-09T18:42:12Z 2009-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' =&gt; [ 'value 1', 'value 2', 'value 3', 'value 4', ], }; my $xml = XMLout($structure, GroupTags =&gt; { supertag =&gt; 'tag'}); print "The xml generated is:\n"; print $xml; print "\n"; </code></pre> <p>It generates:</p> <pre><code>The xml generated is: &lt;opt&gt; &lt;supertag&gt; &lt;tag&gt;value 1&lt;/tag&gt; &lt;tag&gt;value 2&lt;/tag&gt; &lt;tag&gt;value 3&lt;/tag&gt; &lt;tag&gt;value 4&lt;/tag&gt; &lt;/supertag&gt; &lt;/opt&gt; </code></pre> http://stackoverflow.com/questions/1391455/how-can-i-select-a-random-listbox-item-with-wwwmechanize/1391525#1391525 3 Answer by cjm for How can I select a random listbox item with WWW::Mechanize? cjm 2009-09-08T01:21:09Z 2009-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-&gt;form_number(1); my $select = $form-&gt;find_input('name_of_select_box'); my @values = $select-&gt;possible_values; $select-&gt;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#1384594 3 Answer by cjm for /usr/bin/perl: bad interpreter: Text file busy cjm 2009-09-06T00:39:51Z 2009-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#1374873 3 Answer by cjm for In Emacs, how can I load a certain file when (require 'x) is called? cjm 2009-09-03T17:40:07Z 2009-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#1360824 4 Answer by cjm for Representing a complex Perl data structure containing array references in Config::General cjm 2009-09-01T06:25:26Z 2009-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' =&gt; { comp_root =&gt; [ [ 'teamsite' =&gt; 'root/teamsite' ], [ 'components' =&gt; 'root/components' ], ], }, }; print SaveConfigString($config); </code></pre> <p>produces</p> <pre><code>&lt;View::Mason&gt; comp_root ARRAY(0x94ea168) comp_root ARRAY(0x94fbc98) &lt;/View::Mason&gt; </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#1352188 4 Answer by cjm for debug elisp major mode cjm 2009-08-29T19:26:35Z 2009-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#1353185 11 Answer by cjm for How should I promote Perl warnings to fatal errors during development? cjm 2009-08-30T05:59:07Z 2009-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#1352783 6 Answer by cjm for Why am I getting a "Odd number of elements in anonymous hash" warning in Perl? cjm 2009-08-30T01:11:21Z 2009-08-30T01:11:21Z <p>While techically valid syntax, it's not doing what you think.</p> <pre><code>'custom_fields' =&gt; { { "key" =&gt; "height", "value" =&gt; 500 }, { "key" =&gt; "width", "value" =&gt; 750 } }, </code></pre> <p>is roughly equivalent to something like:</p> <pre><code>'custom_fields' =&gt; { 'HASH(0x881a168)' =&gt; { "key" =&gt; "width", "value" =&gt; 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' =&gt; [ { "key" =&gt; "height", "value" =&gt; 500 }, { "key" =&gt; "width", "value" =&gt; 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#1349835 1 Answer by cjm for real link in html-mode emacs cjm 2009-08-28T23:14:37Z 2009-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>&lt;img&gt;</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#1344894 3 Answer by cjm for How to refer to the file currently being loaded in Emacs Lisp? cjm 2009-08-28T03:32:53Z 2009-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#1325525 3 Answer by cjm for Perl variable scope question cjm 2009-08-25T00:47:38Z 2009-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-&gt;(); } @x; } print "@x\n"; return; } package Sorter; sub compare { $a &lt;=&gt; $b } package main; use strict; use warnings; my $foo = {}; bless $foo, 'Foo'; $foo-&gt;sort(\&amp;Sorter::compare ); $foo-&gt;sort(sub { $b &lt;=&gt; $a }); </code></pre> http://stackoverflow.com/questions/1314637/using-win32ole-to-execute-macro-in-access-2007/1319742#1319742 1 Answer by cjm for Using Win32::OLE to execute macro in Access 2007 cjm 2009-08-23T22:24:51Z 2009-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-&gt;OpenCurrentDatabase($filename); $oAccess-&gt;{DoCmd}-&gt;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#1317015 5 Answer by cjm for How can I check for the existence of UTF-16 filenames in Perl? cjm 2009-08-22T20:47:30Z 2009-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 &lt;$filename&gt; 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-gb2312 Comment by cjm on With a utf8-encoded Perl script, can it open a filename encoded as GB2312? cjm 2009-11-25T22:51:20Z 2009-11-25T22:51:20Z I 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#1780735 Comment by cjm on Perl regex replacement string special variable cjm 2009-11-23T05:10:30Z 2009-11-23T05:10:30Z The last $store is redundant, though; assignment returns the value assigned. http://stackoverflow.com/questions/1526859/does-perl-have-something-similar-to-phps-constant/1526892#1526892 Comment by cjm on Does Perl have something similar to PHP's constant()? cjm 2009-10-06T19:39:25Z 2009-10-06T19:39:25Z Your <code>read&#95;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/&hellip;</a>) http://stackoverflow.com/questions/1518923/how-can-i-create-a-tcp-server-daemon-process-in-perl Comment by cjm on How can I create a TCP server daemon process in Perl? cjm 2009-10-05T09:11:36Z 2009-10-05T09:11:36Z What 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#1498276 Comment by cjm on Should a Perl constructor return an undef or a "invalid" object? cjm 2009-09-30T19:18:49Z 2009-09-30T19:18:49Z Check 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#1453380 Comment by cjm on How to make elements of vector unique? (remove non adjacent duplicates) cjm 2009-09-21T08:51:55Z 2009-09-21T08:51:55Z Other 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#1453380 Comment by cjm on How to make elements of vector unique? (remove non adjacent duplicates) cjm 2009-09-21T08:47:04Z 2009-09-21T08:47:04Z Using <code>find</code> and then <code>insert</code> is inefficient. <code>tmpset.insert(&#42;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-emacs Comment by cjm on How do I emulate vim's 'softtabstop' in emacs? cjm 2009-09-20T06:22:26Z 2009-09-20T06:22:26Z This 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#1430582 Comment by cjm on How can I call a Perl class with a shorter name? cjm 2009-09-16T21:59:30Z 2009-09-16T21:59:30Z I 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#204490 Comment by cjm on Is there a Perl function to turn a string into a regexp to use that string as pattern? cjm 2009-09-16T21:55:04Z 2009-09-16T21:55:04Z See <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/&hellip;</a> http://stackoverflow.com/questions/1433965/schaums-code-not-working Comment by cjm on Schaum's code not working! cjm 2009-09-16T16:14:37Z 2009-09-16T16:14:37Z Can you be more specific about &quot;it didn't work&quot;? What does happen? http://stackoverflow.com/questions/1430548/how-can-i-call-a-perl-class-with-a-shorter-name/1430732#1430732 Comment by cjm on How can I call a Perl class with a shorter name? cjm 2009-09-16T03:15:55Z 2009-09-16T03:15:55Z That was the third option in my answer. http://stackoverflow.com/questions/1416171/emacs-visual-line-mode-and-fill-paragraph/1416207#1416207 Comment by cjm on emacs: visual-line-mode and fill-paragraph... cjm 2009-09-12T23:00:49Z 2009-09-12T23:00:49Z Yes, 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#1416227 Comment by cjm on emacs: visual-line-mode and fill-paragraph... cjm 2009-09-12T22:03:07Z 2009-09-12T22:03:07Z Re: &quot;(I love defadvice though because you can also turn it off without rebooting emacs)&quot; 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#1416227 Comment by cjm on emacs: visual-line-mode and fill-paragraph... cjm 2009-09-12T22:01:18Z 2009-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/&hellip;</a>)