User zigdon - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T07:00:16Zhttp://stackoverflow.com/feeds/user/4913http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1652416/how-can-i-enter-a-line-break-in-the-middle-of-a-line/1652551#16525511Answer by zigdon for How can I enter a line break in the middle of a line?zigdon2009-10-30T21:57:48Z2009-10-30T21:57:48Z<p>Seems like the imap lines you have in your .vimrc are messing you up. It seems odd to make a mapping to work in insert mode just to make it do what the normal mode mapping does. Are you sure you actually <em>want</em> that to happen? I'd suggest considering removing the last two imap lines (c-j and c-m), and see if you even notice they're gone.</p>
http://stackoverflow.com/questions/1645308/how-can-i-continuously-inform-the-user-of-progress-from-a-perl-cgi-script/1645390#16453900Answer by zigdon for How can I continuously inform the user of progress from a Perl CGI script?zigdon2009-10-29T17:41:01Z2009-10-29T17:41:01Z<p>Does it do what you expect when you set the content-type to text/plain? Perhaps the HTML parsing in your browser is causing the delay in the output, since you're not actually outputting valid HTML? (no <html> or <body> tags)</p>
http://stackoverflow.com/questions/1627799/regular-expression-for-bounce-email-message/1627856#16278561Answer by zigdon for Regular expression for bounce email messagezigdon2009-10-26T23:10:25Z2009-10-26T23:10:25Z<p>Email servers are too varied for this to work 100%, but you might have better luck if you were looking in the headers of the message, instead of it's body, as the headers are meant to be machine readable, unlike the body.</p>
<p>I'd start by looking for any headers with 'error' in them.</p>
http://stackoverflow.com/questions/1603303/readlines-vi-mode-in-vim-ex-mode/1603448#16034480Answer by zigdon for Readline's vi-mode in vim ex modezigdon2009-10-21T20:34:36Z2009-10-21T20:34:36Z<p>Not sure if I understand what you're trying to do, but it might be something like hitting <code>q:</code> in normal mode?</p>
http://stackoverflow.com/questions/1590937/how-do-i-import-environment-settings-into-my-perl-program/1591043#15910431Answer by zigdon for How do I import environment settings into my Perl program?zigdon2009-10-19T20:44:47Z2009-10-20T05:32:10Z<p>Another option (other than making the changes directly in Perl's <code>%ENV</code>) is to make the changes you want a Perl module, so that you can say:</p>
<pre><code>use MyEnvironment;
</code></pre>
<p>and have it modify your environment in all your scripts. It would make it simple to make changes after the fact that will not require editing every script.</p>
<p>The module itself will be simple, something like this:</p>
<pre><code>package MyEnvironment;
$ENV{LD_LIBRARY_PATH} .= ":/some/path/you/want/appended";
# Any other changes you want here.
1;
</code></pre>
http://stackoverflow.com/questions/1579294/access-denied-when-my-servlet-tries-to-ssh-from-tomcat/1579335#15793350Answer by zigdon for Access denied when my servlet tries to SSH from Tomcatzigdon2009-10-16T17:24:22Z2009-10-16T17:24:22Z<p>It looks like java is getting access denied on port 22 - are you sure you're trying to connect as a client, and not spawn a server? If it was trying to bind a listener to port 22, you're likely to get an error unless you're running as a superuser.</p>
http://stackoverflow.com/questions/1579283/need-help-converting-a-multi-language-regular-expression-to-detect-a-numeric-rang/1579310#15793104Answer by zigdon for Need help converting a multi-language regular expression to detect a numeric rangezigdon2009-10-16T17:19:15Z2009-10-16T17:19:15Z<p>Seems that's really a bad use for a regular expression - a much easier (and simpler to maintain!) approach would be to match any number, and then do a simple comparison in the code to check if it's within the range you want.</p>
<p>As a side note, do you really want to include the spaces in the match? Wouldn't it make more sense to move the \s* outside of the parens?</p>
http://stackoverflow.com/questions/1573782/what-are-your-suggestions-for-an-ideal-vim-configuration-for-perl-development/1574503#15745031Answer by zigdon for What are your suggestions for an ideal Vim configuration for Perl development?zigdon2009-10-15T19:25:05Z2009-10-16T14:25:24Z<p>.vimrc:</p>
<pre><code>" Allow :make to run 'perl -c' on the current buffer, jumping to
" errors as appropriate
" My copy of vimparse: http://irc.peeron.com/~zigdon/misc/vimparse.pl
set makeprg=$HOME/bin/vimparse.pl\ -c\ %\ $*
" point at wherever you keep the output of pltags.pl, allowing use of ^-]
" to jump to function definitions.
set tags+=/path/to/tags
</code></pre>
http://stackoverflow.com/questions/1546264/development-and-production-workflow/1546352#15463522Answer by zigdon for Development and Production Workflowzigdon2009-10-09T22:23:37Z2009-10-09T22:23:37Z<p>One way I've done this in the past is have the production code actually be a live subversion client, pulling out the 'production' branch.</p>
<p>So you do your work as usual on the development branch, and whenever you're ready, you cut a copy to the production branch. Sync the production servers, and you are live. If something goes wrong, you can always resync to the older version.</p>
<p>For extra points, you can add a staging branch, so you can catch all the things that changed that <em>aren't</em> in your code. Then you add them to a deployment script that will adjust the production systems as needed.</p>
http://stackoverflow.com/questions/1546322/whats-the-best-way-to-deep-copy-a-hash-of-hashes-in-perl/1546338#1546338-3Answer by zigdon for What's the best way to deep copy a hash of hashes in Perl?zigdon2009-10-09T22:19:01Z2009-10-09T22:19:01Z<p>Could always store the hash via Storable or Data::Dumper, and reassigned the stored value into a new hash. This should get a full copy without maintaining the referenced links.</p>
<pre><code>use Storable;
my $serialized = freeze \%config;
my %newconfig = %{ thaw($serialized) };
</code></pre>
http://stackoverflow.com/questions/1511359/python-queue-yet-another-question/1511556#15115561Answer by zigdon for Python Queue - yet another questionzigdon2009-10-02T20:09:06Z2009-10-02T20:09:06Z<p>I'm not commenting on the python code in particular, but as far as your queues are designed, it seems you just need one queue in the node 1,2,3 scenario you were describing. Basically, you have one queue, where you have node 1 and node 2 putting messages to, and node 3 reading from.</p>
<p>You should be able to tell node-3 to do a "blocking" get on the queue, so it will just wait until it sees a message for it to process, and leave nodes 1 and 2 to produce their output as fast as possible.</p>
<p>Depending on the processing speed of each node, and the traffic patterns you expect, you will probably want a queue deeper than 2 messages, so that the producing nodes don't have to wait for the queue to be drained.</p>
http://stackoverflow.com/questions/176580/what-was-your-first-programming-language/176593#1765933Answer by zigdon for What was your first programming language?zigdon2008-10-06T23:11:53Z2009-09-28T23:30:46Z<p>Apple BASIC, followed by its assembly. I loved the fact that the Apple ][+ had the built in disassembler, made it very easy to figure out how things worked.</p>
http://stackoverflow.com/questions/1474221/forcing-a-jframe-to-refresh1Forcing a JFrame to refreshzigdon2009-09-24T21:21:32Z2009-09-24T21:36:19Z
<p>I have a UI built inside a JFrame. One of the buttons starts a long running call (still within the same java process), and during it's execution, the UI is frozen. </p>
<p>I figured, to make it clear that things are still running, I can display a progress bar, perhaps in a popup, so that the user can be kept up-to-date as to what the program is doing.</p>
<p>So I'm creating a new JDialog, adding a JProgressBar to it, and updating it as things happen. The problem is that that dialog's content isn't getting updated. Changes I make to it's title show up immediately, and anything I output to the console, but nothing in the UI itself.</p>
<p>Is there a command I can issue to force a repaint?</p>
<p>Here's the core of this section:</p>
<pre><code> killWindow = new JDialog();
killWindow.setUndecorated(true);
killWindow.setTitle("stopping tests - 0 of " + numActive);
killProgress = new JProgressBar(0, numActive);
killWindow.add(killProgress);
killProgress.setStringPainted(true);
killWindow.pack();
killWindow.setLocationRelativeTo(frame);
killWindow.setVisible(true);
</code></pre>
<p>Then, as we progress...:</p>
<pre><code> killProgress.setValue(++killedTests); // not seen!
killProgress.setString("Killing test on " + nickname()); // not seen!
log("Killed another test, " + killedTests + " so far"); // visible in real time
killWindow.setTitle("stopping tests - " + killedTests +
" of " + killProgress.getMaximum()); // visible in real time
</code></pre>
<p>What am I missing? I tried googling and searching here on SO, and haven't really seen anything obvious?</p>
http://stackoverflow.com/questions/86090/openid-providers-what-stops-malicious-providers12OpenID providers - what stops malicious providers?zigdon2008-09-17T18:19:55Z2009-06-25T18:15:50Z
<p>So I like the OpenID idea. I support it on my site, and use it wherever it's possible (like here!). But I am not clear about one thing. </p>
<p>A site that supports OpenID basically accepts any OpenID provider out there, right? How does that work with sites that want to reduce bot-signups? What's to stop a malicious OpenID provider from setting up unlimited bot IDs automatically?</p>
<p>I have some ideas, and will post them as a possible answer, but I was wondering if anyone can see something obvious that I've missed?</p>
http://stackoverflow.com/questions/508289/why-does-perl-complain-when-i-use-a-hash-reference-with-constant-pm/508305#5083050Answer by zigdon for Why does Perl complain when I use a hash reference with constant.pm?zigdon2009-02-03T18:26:01Z2009-02-03T18:26:01Z<p>Works for me. Are you sure you don't have any control characters in that code somewhere?</p>
http://stackoverflow.com/questions/164865/how-can-i-split-a-pipe-separated-string-in-a-list/164892#1648926Answer by zigdon for How can I split a pipe-separated string in a list? zigdon2008-10-02T22:25:08Z2009-01-07T22:50:36Z<p>I'm not sure what you want to put in @list? If the awk pipes one line per entry, you'll have that in $line, and you don't need the for loop on the @list.</p>
<p>That said, if you're going to pipe it into Perl, why bother with the grep and AWK in the first place? </p>
<pre><code>#!/ust/bin/perl -w
use strict;
while (<>) {
next unless / 550 /;
my @tokens = split ' ', $_;
my $addr = $tokens[4];
my $reason = join " ", @tokens[5..$#tokens];
# ... DBI code
}
</code></pre>
<p>Side note about the DBI calls: you should really use placeholders so that a "bad email" wouldn't be able to inject SQL into your database.</p>
http://stackoverflow.com/questions/272457/does-noscript-get-acknowledged-by-javascript-enabled-browsers/272461#2724610Answer by zigdon for Does noscript get acknowledged by javascript enabled browsers?zigdon2008-11-07T15:37:48Z2008-11-07T15:37:48Z<p>You could always use the JS to hide that ad using CSS, if nothing else.</p>
http://stackoverflow.com/questions/52724/mirroring-perforce-with-svk3Mirroring perforce with SVK?zigdon2008-09-09T19:41:33Z2008-10-20T08:23:00Z
<p>Anyone know of a way to use SVK with perforce? The docs <a href="http://svk.bestpractical.com/view/MirrorVCP" rel="nofollow">seem to imply</a> it used to be possible, but some <a href="http://lists.bestpractical.com/pipermail/svk-devel/2007-February/000604.html" rel="nofollow">mailing list messages</a> claim that is no longer the case?</p>
http://stackoverflow.com/questions/206885/do-i-have-to-put-db-connection-initialization-outside-of-the-fcgi-loop-to-take-ad/206896#2068961Answer by zigdon for Do I have to put DB connection/initialization outside of the FCGI loop to take advantage of FastCGI in Perl?zigdon2008-10-15T23:29:26Z2008-10-15T23:29:26Z<p>You would still gain from FCGI even if you do keep your DB connection in the loop - but you would gain even more if you moved it out.</p>
http://stackoverflow.com/questions/206661/what-are-canonical-efficient-or-concise-ways-to-slurp-a-file-into-a-string-in-p/206683#2066834Answer by zigdon for What are canonical, efficient, or concise ways to slurp a file into a string in Perl?zigdon2008-10-15T21:59:55Z2008-10-15T21:59:55Z<pre><code>{
open F, $filename or die "Can't read $filename: $!";
local $/; # enable slurp mode, locally.
$file = <F>;
close F;
}
</code></pre>
http://stackoverflow.com/questions/202610/how-do-i-reuse-a-command-in-bash-with-different-parameters/202637#2026374Answer by zigdon for How do I reuse a command in bash with different parameters?zigdon2008-10-14T20:19:34Z2008-10-14T20:19:34Z<p>You can also use the history substitution feature:</p>
<pre><code>!pop:gs/9241/1234
</code></pre>
<p>Like so:</p>
<pre><code>$ populate.ksh 9241 && check.ksh 9241
...
$ !pop:gs/9241/1234
populate.ksh 1234 && check.ksh 1234
...
</code></pre>
http://stackoverflow.com/questions/199432/i-need-a-tool-to-log-linux-network-traffic-by-ip-address/199442#1994421Answer by zigdon for I need a tool to log Linux network traffic by IP addresszigdon2008-10-13T23:41:38Z2008-10-13T23:41:38Z<p>Not sure how well it logs, but for a real-time display, you might look at <a href="http://etherape.sourceforge.net/" rel="nofollow">EtherApe</a>.</p>
http://stackoverflow.com/questions/198945/how-do-i-use-raw-sockets-in-perl/198954#1989545Answer by zigdon for How do I use raw sockets in Perl?zigdon2008-10-13T20:39:48Z2008-10-13T20:39:48Z<p>Perhaps searching The CPAN might help? <a href="http://search.cpan.org/~gbarr/IO-1.2301/IO/Socket.pm" rel="nofollow">IO::Socket</a> comes to mind.</p>
http://stackoverflow.com/questions/198849/how-do-i-make-my-default-or-any-static-route-permanent-on-linux-fedora-9-speci/198859#1988591Answer by zigdon for How do I make my default (or any static) route permanent on Linux (Fedora 9 specifically)?zigdon2008-10-13T20:09:00Z2008-10-13T20:09:00Z<p>I have not used recent versions of Fedora, but it was often set as a GATEWAY variable in /etc/sysconfig/network.</p>
<p>Of course, if you just wanted it to work, you could just put the commands in /etc/rc.local to be executed when the boot sequence completes.</p>
http://stackoverflow.com/questions/197933/whats-the-best-way-to-clear-the-screen-in-perl/197953#19795310Answer by zigdon for What's the best way to clear the screen in Perl?zigdon2008-10-13T15:17:18Z2008-10-13T15:17:18Z<p>The CPAN is probably the best way to go. Take a look at <a href="http://search.cpan.org/~tpaba/Term-Screen-Uni-0.04/lib/Term/Screen/Uni.pm" rel="nofollow">Term::Screen:Uni</a>:</p>
<pre><code>require Term::Screen::Uni;
my $scr = new Term::Screen::Uni;
$scr->clrscr()
</code></pre>
http://stackoverflow.com/questions/197758/help-with-a-regex-that-matches-something-either-before-or-after-something-else/197804#1978041Answer by zigdon for Help with a regex that matches something either before OR after something elsezigdon2008-10-13T14:38:41Z2008-10-13T14:38:41Z<p>Well, in general, using RE for XML parsing isn't a great idea. But if you really wanted, the easiest way would be to just do it in two lines:</p>
<pre><code>if (/ITC Stone Serif Std Bold/) {
s/italic="true"/italic="false"/g;
}
</code></pre>
http://stackoverflow.com/questions/195886/committing-binaries-to-svn/195891#1958910Answer by zigdon for Committing binaries to SVNzigdon2008-10-12T19:27:19Z2008-10-12T19:27:19Z<p>Not sure why you don't want to put the binaries under the trunk/project1/binaries tree? That said, nothing should stop you from having the tree look like this:</p>
<ul>
<li>trunk
<ul>
<li>project1</li>
<li>project2</li>
</ul></li>
<li>built
<ul>
<li>project1</li>
<li>project2</li>
</ul></li>
<li>tags
<ul>
<li>project1</li>
<li><code><tag id</code>>
<ul>
<li><code><code as usual</code>></li>
<li>binaries</li>
</ul></li>
</ul></li>
</ul>
http://stackoverflow.com/questions/195872/multiple-forms-in-an-html-page-posting-to-itself/195879#1958790Answer by zigdon for Multiple forms in an HTML page posting to itselfzigdon2008-10-12T19:17:35Z2008-10-12T19:17:35Z<p>You could just have a hidden input for each form containing a formid. Then, when the page processes, you can tell which form was submitted.</p>
<p>Or am I misunderstanding your question?</p>
http://stackoverflow.com/questions/194311/change-permissions-upon-uploading-with-scp/194329#1943292Answer by zigdon for Change permissions upon uploading with scpzigdon2008-10-11T17:12:21Z2008-10-11T17:12:21Z<p>If you're copying from a windows machine, you can use <a href="http://winscp.net/eng/index.php" rel="nofollow">WinSCP</a> to copy, and it has an option to set the permissions on the copied files after the upload.</p>
<p>If not, I think your only choice is to execute a chmod on the server after the upload, which you could do remotely with an ssh command:</p>
<pre><code>scp /path/to/file server:/server/path/to/file
ssh server chmod 644 /server/path/to/file
</code></pre>
http://stackoverflow.com/questions/185114/how-do-i-use-a-perl-module-in-a-directory-not-in-inc/185131#1851314Answer by zigdon for How do I 'use' a Perl module in a directory not in @INC?zigdon2008-10-08T22:16:38Z2008-10-08T22:16:38Z<p>'use lib' is the answer, as @ephemient mentioned earlier. One other option is to use require/import instead of use. It means the module wouldn't be loaded at compile time, but instead in runtime.</p>
<p>That will allow you to modify @INC as you tried there, or you could pass require a path to the file instead of the module name. From 'perldoc -f require':</p>
<pre><code>If EXPR is a bareword, the require assumes a ".pm" extension and replaces "::" with "/" in
the filename for you, to make it easy to load standard modules. This form of loading of
modules does not risk altering your namespace.
</code></pre>
http://stackoverflow.com/questions/1573782/what-are-your-suggestions-for-an-ideal-vim-configuration-for-perl-development/1574503#1574503Comment by zigdon on What are your suggestions for an ideal Vim configuration for Perl development?zigdon2009-10-16T18:51:51Z2009-10-16T18:51:51Z@sinan it enables quickfix - all it does is reformat the output of perl -c so that vim parses it as compiler errors. The the usual quickfix commands work.http://stackoverflow.com/questions/1573782/what-are-your-suggestions-for-an-ideal-vim-configuration-for-perl-development/1574503#1574503Comment by zigdon on What are your suggestions for an ideal Vim configuration for Perl development?zigdon2009-10-16T17:22:09Z2009-10-16T17:22:09ZI've never tried using ctags for perl scripts - does it follow the modules used?http://stackoverflow.com/questions/1573782/what-are-your-suggestions-for-an-ideal-vim-configuration-for-perl-development/1574503#1574503Comment by zigdon on What are your suggestions for an ideal Vim configuration for Perl development?zigdon2009-10-16T17:21:33Z2009-10-16T17:21:33ZYeah, I use vimparse quite a bit, and find it very useful. Is the URL not working for you?http://stackoverflow.com/questions/1512008/why-i-cannot-use-my-apache-serverComment by zigdon on Why I cannot use my apache server?zigdon2009-10-02T22:06:17Z2009-10-02T22:06:17ZDo you see an error page, or just a blank page? What happens if you just put a test.txt page?http://stackoverflow.com/questions/1466711/how-can-i-make-twitter-from-the-terminal-display-hebrew-characters-correctlyComment by zigdon on How can I make Twitter from the terminal display Hebrew characters correctly?zigdon2009-09-23T17:11:37Z2009-09-23T17:11:37ZIs hebrew working ok in general IRC channels? Basically, check that your terminal and irssi (and often the screen session you're running in) are set to support unicode.
Does posting updates in hebrew work ok?http://stackoverflow.com/questions/836890/how-do-i-remove-colons-from-a-list-of-mac-addresses/836922#836922Comment by zigdon on How do I remove colons from a list of MAC addresses?zigdon2009-05-07T20:46:24Z2009-05-07T20:46:24ZUsing both -n and -p is pointless. They do the same thing, except -p prints after executing the code, while -n does not.http://stackoverflow.com/questions/508289/why-does-perl-complain-when-i-use-a-hash-reference-with-constant-pm/508305#508305Comment by zigdon on Why does Perl complain when I use a hash reference with constant.pm?zigdon2009-02-03T18:35:23Z2009-02-03T18:35:23ZPossible - I was testing on linux.http://stackoverflow.com/questions/194311/change-permissions-upon-uploading-with-scp/194329#194329Comment by zigdon on Change permissions upon uploading with scpzigdon2008-10-11T17:47:19Z2008-10-11T17:47:19ZRight. scp -r, then ssh chmod -Rhttp://stackoverflow.com/questions/181356/regex-to-match-alphanumeric-and-spaces/181367#181367Comment by zigdon on Regex to match alphanumeric and spaceszigdon2008-10-08T04:39:53Z2008-10-08T04:39:53ZWouldn't that replace all the alphanumerics and spaces with the empty string?http://stackoverflow.com/questions/159331/integrate-svn-and-ontime-with-post-commit-hookComment by zigdon on integrate SVN and OnTime with post-commit hookzigdon2008-10-01T20:22:07Z2008-10-01T20:22:07ZI suggest adding a code block around your code, so that it doesn't show up in one line.http://stackoverflow.com/questions/153644/why-do-you-need-when-accessing-array-and-hash-elements-in-perl/153668#153668Comment by zigdon on Why do you need $ when accessing array and hash elements in Perl?zigdon2008-09-30T15:56:52Z2008-09-30T15:56:52ZThat's a typo in the original question. Since $y = myhash{foo} and $y = myarray[1] are already indicated to the interpreter by the curly and square braces.http://stackoverflow.com/questions/153644/why-do-you-need-when-accessing-array-and-hash-elements-in-perlComment by zigdon on Why do you need $ when accessing array and hash elements in Perl?zigdon2008-09-30T15:51:29Z2008-09-30T15:51:29Zall the myhash lines should be of the form myhash{'foo'} - curly braces for hashes, not square ones.http://stackoverflow.com/questions/150764/are-regexes-really-maintainableComment by zigdon on Are regexes really maintainable?zigdon2008-09-29T21:29:22Z2008-09-29T21:29:22ZIsn't that true of any code construct? s/regex/arrays/ and the question makes just as much sense? Or am I missing something?http://stackoverflow.com/questions/150454/is-there-some-way-to-make-variables-like-a-and-b-in-regard-to-strict/150485#150485Comment by zigdon on Is there some way to make variables like $a and $b in regard to strict?zigdon2008-09-29T20:54:50Z2008-09-29T20:54:50ZUse vars might be obsolete, replaced by 'our', but if you are trying to go for compatibility (which if you're writing a module you probably are), 'use vars' will work more often.http://stackoverflow.com/questions/74625/what-is-the-best-way-to-force-yourself-to-master-vi/74733#74733Comment by zigdon on What is the best way to force yourself to master vi?zigdon2008-09-26T18:20:44Z2008-09-26T18:20:44Zthe :help command is one of the most useful ones you can learn at first - who needs reference books or the web when it's built in to the editor?