User dsm - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T08:09:21Zhttp://stackoverflow.com/feeds/user/7780http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1770290/how-can-i-list-all-function-prototypes-used-in-a-given-c-file-with-perl/1770328#17703281Answer by dsm for How can I list all function prototypes used in a given C file with Perl?dsm2009-11-20T13:07:04Z2009-11-20T13:07:04Z<pre><code># Quick & dirty regexp - won't work with pointers or arrays...
/^(\w+\s+\w+\s*\((\s*\w+\s+\w+\s*(,?))*\))(\{|;)\s*$/ && print $1;
</code></pre>
http://stackoverflow.com/questions/1766873/collection-of-solved-lisp-problems/1769471#17694711Answer by dsm for Collection of solved Lisp problemsdsm2009-11-20T09:57:27Z2009-11-20T09:57:27Z<p>The <a href="http://rosettacode.org/wiki/Main%5FPage" rel="nofollow">Rosetta Code</a> project contains hundreds of solved problems in a variety of languages and dialects, including Lisp, Scheme, Clojure, etc.</p>
http://stackoverflow.com/questions/1750069/how-does-perls-iofile-getlines-read-lines/1750096#17500962Answer by dsm for How does Perl's IO:File->Getlines read lines?dsm2009-11-17T16:33:26Z2009-11-17T16:33:26Z<pre><code>my @arr = split /\n/, $string;
</code></pre>
http://stackoverflow.com/questions/1722210/linux-api-ext3-file-information/1722246#17222461Answer by dsm for Linux API - EXT3 file informationdsm2009-11-12T13:41:16Z2009-11-12T13:41:16Z<p>I think you are looking for <a href="http://en.wikipedia.org/wiki/Stat%5F%28Unix%29" rel="nofollow"><code>stat()</code></a></p>
http://stackoverflow.com/questions/1589543/why-does-this-map-return-a-single-number/1589568#15895684Answer by dsm for Why does this map return a single number? dsm2009-10-19T15:59:53Z2009-10-20T11:14:34Z<p>Try this:</p>
<pre><code>join $separator,
map { $query->param($_) }
("name", "last-name", "first-name", "phone");
</code></pre>
<p>To answer the reason you get '4', it is because you are assigning the resulting arrays' cardinality to a scalar.</p>
http://stackoverflow.com/questions/1536867/flops-intel-core-and-testing-it-with-c-innerproduct/1537001#15370011Answer by dsm for FLOPS Intel core and testing it with C (innerproduct)dsm2009-10-08T10:37:20Z2009-10-08T10:37:20Z<p>A <a href="http://en.wikipedia.org/wiki/FLOPS" rel="nofollow">FLOP</a> stands for Floating Point Operation.</p>
<p>It means the same in any architecture that supports floating point operations, and is usually measured as the ammount of operations that can take place in any one second (as in FLOPS; floating point operations per second).</p>
<p><a href="http://linux.maruhn.com/sec/flops.html" rel="nofollow">here</a> you can find tools to measure your computer's FLOPS.</p>
http://stackoverflow.com/questions/1520900/what-is-the-perlish-way-to-iterate-from-item-n-to-the-end-of-an-array/1520936#15209365Answer by dsm for What is the Perlish way to iterate from item n to the end of an array?dsm2009-10-05T16:00:02Z2009-10-05T16:23:38Z<p>You can use a <a href="http://www.devshed.com/c/a/Perl/Array-Manipulation-in-Perl/7/" rel="nofollow">slice</a> to extract the 2nd. to last items, for example:</p>
<pre><code>[dsm@localhost:~]$ perl -le 'print join ", ", @ARGV[2..$#ARGV];' 1 2 3 4 5 6 7 8 9 10 00
3, 4, 5, 6, 7, 8, 9, 10, 00
[dsm@localhost:~]$
</code></pre>
<p>however, you should probably be using <a href="http://perldoc.perl.org/functions/shift.html" rel="nofollow"><code>shift</code></a> (or even better, <a href="http://search.cpan.org/~jv/Getopt-Long-2.38/lib/Getopt/Long.pm" rel="nofollow"><code>GetOpt::Long</code></a>)</p>
http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/233271#2332718Answer by dsm for What is the best way to do Gui in Clojure?dsm2008-10-24T12:21:42Z2009-10-02T07:49:23Z<p>From this <a href="http://blog.thinkrelevance.com/2008/8/12/java-next-2-java-interop" rel="nofollow">page</a>:</p>
<pre><code>(import '(javax.swing JFrame JButton JOptionPane)) ;'
(import '(java.awt.event ActionListener)) ;'
(let [frame (JFrame. "Hello Swing")
button (JButton. "Click Me")]
(.addActionListener button
(proxy [ActionListener] []
(actionPerformed [evt]
(JOptionPane/showMessageDialog nil,
(str "<html>Hello from <b>Clojure</b>. Button "
(.getActionCommand evt) " clicked.")))))
(.. frame getContentPane (add button))
(doto frame
(.setDefaultCloseOperation JFrame/EXIT_ON_CLOSE)
.pack
(.setVisible true)))
print("code sample");
</code></pre>
<p>And, of course, it would be worth looking at the <a href="http://clojure.org/java%5Finterop" rel="nofollow">interoperability</a> section of clojure's website.</p>
http://stackoverflow.com/questions/1466709/improve-my-password-generation-script/1466814#14668140Answer by dsm for Improve my password generation scriptdsm2009-09-23T15:37:58Z2009-09-23T15:59:15Z<p>you could just use <a href="http://linux.die.net/man/1/uuidgen" rel="nofollow"><code>uuidgen</code></a> or <a href="http://linux.die.net/man/1/pwgen" rel="nofollow"><code>pwgen</code></a> to generate your random passwords, maybe later shuffling some letters around or something of the sort</p>
http://stackoverflow.com/questions/1459250/bash-strip-new-line-character-from-string-read-line/1459421#14594210Answer by dsm for BASH: Strip new-line character from string (read line)dsm2009-09-22T11:05:35Z2009-09-22T11:05:35Z<p>The following script works (at least for me):</p>
<pre><code>#!/bin/bash
while read I ; do if [ "$I" ] ; then $I ; fi ; done ;
</code></pre>
http://stackoverflow.com/questions/1438282/how-do-i-fork-a-new-process-and-get-back-its-pid-in-perl/1438324#143832413Answer by dsm for How do I fork a new process and get back its PID in Perl?dsm2009-09-17T11:39:48Z2009-09-17T11:39:48Z<p>yes, <a href="http://perldoc.perl.org/functions/fork.html" rel="nofollow"><code>fork</code></a></p>
<p>Quoting from that page:</p>
<blockquote>
<p><strong>It returns the child pid to the parent
process</strong>, <code>0 </code> to the child process, or
<code>undef</code> if the fork is unsuccessful.</p>
</blockquote>
http://stackoverflow.com/questions/1422382/how-to-search-for-a-pattern-inside-a-file-and-delete-the-lines-in-unix-on-the-com/1422475#14224753Answer by dsm for How to search for a pattern inside a file and delete the lines in Unix on the command line?dsm2009-09-14T16:01:04Z2009-09-14T16:01:04Z<p>Something like this should do the trick... you may want to parse the time if this is not how you have the field formatted</p>
<pre><code>perl -ne '/^([^!]+!){6}([^!]+).*/; print if $2 < time && /!D!/;'
</code></pre>
http://stackoverflow.com/questions/1421144/how-can-i-get-list-of-mirrors-in-newest-cpan-pm/1421315#14213151Answer by dsm for How can I get list of mirrors in newest CPAN.pm?dsm2009-09-14T12:42:08Z2009-09-14T12:47:59Z<p>According to the <a href="http://search.cpan.org/~andk/CPAN-1.9402/lib/CPAN.pm#15" rel="nofollow">documentation</a>, you have to set this manually. A list of mirrors is avaliable <a href="http://www.cpan.org/SITES.html" rel="nofollow">here</a></p>
http://stackoverflow.com/questions/1405611/extracting-first-two-characters-of-a-string-shell-scripting/1405719#14057190Answer by dsm for Extracting first two characters of a string (Shell Scripting)dsm2009-09-10T14:44:53Z2009-09-10T14:44:53Z<pre><code>perl -ple 's/^(..).*/$1/'
</code></pre>
http://stackoverflow.com/questions/1366751/how-can-i-use-expect-to-enter-a-password-for-a-perl-script/1366802#13668027Answer by dsm for How can I use Expect to enter a password for a Perl script?dsm2009-09-02T09:59:55Z2009-09-03T08:18:50Z<p>use <a href="http://perldoc.net/Expect.pod" rel="nofollow">Expect.pm</a>.</p>
<p>This module is especially tailored for programatic control of applications which require user feedback</p>
<pre><code>#!/usr/bin/perl
use strict;
use warnings;
use Expect;
my $expect = Expect->new;
my $command = 'install.sh';
my @parameters = qw(-f my_conf -p my_ip -s my_server);
my $timeout = 200;
my $password = "W31C0m3";
$expect->raw_pty(1);
$expect->spawn($command, @parameters)
or die "Cannot spawn $command: $!\n";
$expect->expect($timeout,
[ qr/Enter password for the packagekey:/i, #/
sub {
my $self = shift;
$self->send("$password\n");
exp_continue;
}
]);
</code></pre>
http://stackoverflow.com/questions/1362615/how-to-find-files-containing-a-string-using-egrep/1362650#13626502Answer by dsm for how to find files containing a string using egrepdsm2009-09-01T13:59:20Z2009-09-01T14:07:02Z<p>try:</p>
<pre><code>find . -name '*.txt' | xargs egrep mystring
</code></pre>
<p>There are two problems with your version:</p>
<p><strong>Firstly</strong>, <code>*.txt</code> will first be expanded by the shell, giving you a listing of files in the current directory which end in <code>.txt</code>, so for instance, if you have the following:</p>
<pre><code>[dsm@localhost:~]$ ls *.txt
test.txt
[dsm@localhost:~]$
</code></pre>
<p>your <code>find</code> command will turn into <code>find . -name test.txt</code>. Just try the following to illustrate:</p>
<pre><code>[dsm@localhost:~]$ echo find . -name *.txt
find . -name test.txt
[dsm@localhost:~]$
</code></pre>
<p><strong>Secondly</strong>, <code>egrep</code> does not take filenames from <code>STDIN</code>. To convert them to arguments you need to use <code>xargs</code></p>
http://stackoverflow.com/questions/1362215/lisp-parser-c/1362243#13622433Answer by dsm for LISP Parser C++dsm2009-09-01T12:35:11Z2009-09-01T12:35:11Z<p>Lisp is just a tree structure, any tree parser will parse lisp readily... you can try <a href="http://www.cs.man.ac.uk/~pjj/cs212/ho/node8.html" rel="nofollow">this one</a> which google gave me.</p>
http://stackoverflow.com/questions/1328498/what-would-you-put-on-a-modern-perl-t-shirt/1328550#13285500Answer by dsm for What would you put on a "Modern Perl" t-shirt?dsm2009-08-25T14:13:24Z2009-08-25T14:13:24Z<p>I'd put <a href="http://www.perlmonks.org/index.pl?node%5Fid=45213" rel="nofollow">a Camel</a>.</p>
http://stackoverflow.com/questions/1292442/does-the-posix-module-in-the-standard-perl-distribution-work-in-win32-64/1292466#12924664Answer by dsm for Does the POSIX module in the standard Perl distribution work in Win32/64?dsm2009-08-18T08:07:37Z2009-08-18T08:07:37Z<p>The <a href="http://www.xav.com/perl/lib/POSIX.html" rel="nofollow">documentation</a> says it does</p>
http://stackoverflow.com/questions/1238858/can-a-compiled-language-be-homoiconic/1238882#12388825Answer by dsm for Can a compiled language be homoiconic?dsm2009-08-06T13:26:23Z2009-08-06T13:26:23Z<p>yes. lisp can be compiled to a native binary</p>
http://stackoverflow.com/questions/1232860/need-of-prbs-pattern-generating-c-c-api/1232883#12328830Answer by dsm for Need of PRBS Pattern Generating C/C++ APIdsm2009-08-05T12:17:33Z2009-08-05T12:17:33Z<p><a href="http://en.wikipedia.org/wiki/PRBS" rel="nofollow">Wikipedia does</a></p>
http://stackoverflow.com/questions/1106789/lisp-elegant-way-to-strip-trailing-nils-from-a-list-review/1108275#11082752Answer by dsm for Lisp: Elegant way to strip trailing nil's from a list? (Review)dsm2009-07-10T07:54:25Z2009-08-04T15:30:58Z<pre><code>(defun strip-tail (ls)
(labels ((strip-car (l)
(cond ((null l) nil)
((null (car l)) (strip-car (cdr l)))
(t l))))
(reverse (strip-car (reverse ls)))))
</code></pre>
<p>Sample run (against your test cases):</p>
<pre><code>[1]> (assert (eq nil (strip-tail nil)))
NIL
[2]> (assert (eq nil (strip-tail '(nil)))) ;'
NIL
[3]> (assert (equal '(a b) (strip-tail '(a b nil nil))))
NIL
[4]> (assert (equal '(a nil b) (strip-tail '(a nil b nil))))
NIL
[5]> (assert (equal '(a b) (strip-tail '(a b))))
NIL
[6]>
</code></pre>
http://stackoverflow.com/questions/1205605/value-of-global-variable-doesnt-change-in-bash/1205641#12056410Answer by dsm for Value of global variable doesn't change in BASH.dsm2009-07-30T10:04:23Z2009-07-31T07:48:10Z<p>There is a spelling mistake in that variable assignment (inside the function). Once fixed it will work:</p>
<pre><code>[dsm@localhost:~]$ var=3
[dsm@localhost:~]$ echo $var
3
[dsm@localhost:~]$ function xxx(){ let var=4 ; }
[dsm@localhost:~]$ xxx
[dsm@localhost:~]$ echo $var
4
[dsm@localhost:~]$
</code></pre>
<p>And run as a script:</p>
<pre><code>[dsm@localhost:~]$ cat test.sh
#!/bin/bash
var=
echo "var is '$var'"
function xxx(){ let var=4 ; }
xxx
echo "var is now '$var'"
[dsm@localhost:~]$ ./test.sh #/ <-- #this is to stop the highlighter thinking we have a regexp
var is ''
var is now '4'
[dsm@localhost:~]$
</code></pre>
http://stackoverflow.com/questions/82726/how-do-i-convert-dos-files-to-linux-files-in-vim/1205562#12055621Answer by dsm for How do I convert dos files to linux files in vim?dsm2009-07-30T09:46:04Z2009-07-30T09:46:04Z<p>Usually there is a dos2unix command you can use for this, just make sure you read the manual as the GNU and BSD versions differ on how they deal with the arguments.</p>
<pre><code># BSD version
dos2unix $FILENAME $FILENAME_OUT
mv $FILENAME_OUT $FILENAME
#GNU version
dos2unix $FILENAME
</code></pre>
<p>Alternatively, you can create your own dos2unix with any of the proposed answers here, for example:</p>
<pre><code>function dos2unix(){
[ "${!}" ] && [ -f "{$1}" ] || return 1;
{ echo ':set ff=unix';
echo ':wq';
} | vim "${1}";
}
</code></pre>
http://stackoverflow.com/questions/1126255/how-does-this-perl-one-liner-to-check-if-a-directory-is-empty-work3How does this Perl one liner to check if a directory is empty work?dsm2009-07-14T15:38:50Z2009-07-15T15:31:21Z
<p>I got this strange line of code today, it tells me 'empty' or 'not empty' depending on whether the CWD has any items (other than <code>.</code> and <code>..</code>) in it.</p>
<p>I want to know how it works because it makes no sense to me.</p>
<pre><code>perl -le 'print+(q=not =)[2==(()=<.* *>)].empty'
</code></pre>
<p>The bit I am interested in is <code><.* *></code>. I don't understand how it gets the names of all the files in the directory.</p>
http://stackoverflow.com/questions/1126255/how-does-this-perl-one-liner-to-check-if-a-directory-is-empty-work/1126385#11263850Answer by dsm for How does this Perl one liner to check if a directory is empty work?dsm2009-07-14T16:01:07Z2009-07-14T16:01:07Z<p>The documentation for that feature is <a href="http://www.perl.com/doc/manual/html/pod/perlop.html#I%5FO%5FOperators" rel="nofollow">here</a>. (Scroll near the end of the section)</p>
http://stackoverflow.com/questions/1126025/in-perl-how-can-i-write-the-output-of-dumper-to-a-file/1126126#11261265Answer by dsm for In Perl, how can I write the output of Dumper to a file?dsm2009-07-14T15:20:48Z2009-07-14T15:20:48Z<p>Use <a href="http://perldoc.perl.org/functions/print.html" rel="nofollow">print</a></p>
<pre><code>print FILE Data::Dumper->Dump($object);
</code></pre>
http://stackoverflow.com/questions/1096704/how-can-i-extract-abbreviations-from-a-file-using-perl/1097048#10970482Answer by dsm for How can I extract abbreviations from a file using Perl?dsm2009-07-08T09:25:35Z2009-07-09T09:12:36Z<pre><code>#!/usr/bin/perl
use strict;
use warnings;
my %abbrs = ();
while(<>){
my @words = split ' ', $_;
foreach my $word(@words){
$word =~ /([A-Z]{2,})/ && $abbrs{$1}++;
}
}
# %abbrs now contains all abreviations
</code></pre>
http://stackoverflow.com/questions/1076791/grab-info-between-tags/1079281#10792811Answer by dsm for Grab info between tags dsm2009-07-03T13:06:55Z2009-07-03T13:06:55Z<pre><code>#!/usr/bin/perl
use strict;
use warnings;
my %seen = ();
sub seen_all {
defined $seen{title}
&& defined $seen{url}
&& defined $seen{pubDate};
}
while (<>) {
/<(.+?)>(.+)<\/\1>/ && do {
$seen{$1} = $2;
};
if(seen_all){
print "insert into table (title,url,pubdate) " .
"values ('$seen{title}','$seen{url}','$seen{pubDate}')\n";
%seen = ();
}
}
</code></pre>
http://stackoverflow.com/questions/1074233/joining-xml-file-in-perl/1078917#10789171Answer by dsm for Joining XML file in Perldsm2009-07-03T11:20:23Z2009-07-03T11:20:23Z<pre><code>#!/usr/bin/perl
print '<xml>';
print while <>;
print '</xml>';
</code></pre>
http://stackoverflow.com/questions/1750069/how-does-perls-iofile-getlines-read-lines/1750096#1750096Comment by dsm on How does Perl's IO:File->Getlines read lines?dsm2009-11-18T09:31:44Z2009-11-18T09:31:44ZThis was a different question when I answered it (namely: "what is the best way to split a string into lines"). Take this into consideration before downvotinghttp://stackoverflow.com/questions/1749657/need-help-with-brute-force-code-for-crypt3Comment by dsm on Need help with brute force code for crypt(3)dsm2009-11-17T15:39:05Z2009-11-17T15:39:05ZDo you <b>really</b> have enough memory to store all possible permutations?http://stackoverflow.com/questions/1706543/difference-between-linux-and-unix-and-what-exactly-is-aix/1706570#1706570Comment by dsm on Difference between Linux and Unix? And what exactly is AIX?dsm2009-11-10T09:32:07Z2009-11-10T09:32:07Z... not to mention: <a href="http://en.wikipedia.org/wiki/Unix" rel="nofollow">en.wikipedia.org/wiki/Unix</a>http://stackoverflow.com/questions/1706543/difference-between-linux-and-unix-and-what-exactly-is-aix/1706570#1706570Comment by dsm on Difference between Linux and Unix? And what exactly is AIX?dsm2009-11-10T09:31:16Z2009-11-10T09:31:16ZThere is also Solaris from SUN, BSD (+ Flavours), Cygwin (which is an emulator rather than a "real" OS, and many others.... see: <a href="http://en.wikipedia.org/wiki/List_of_Unix_systems" rel="nofollow">en.wikipedia.org/wiki/List_of_Unix_systems</a>http://stackoverflow.com/questions/233171/what-is-the-best-way-to-do-gui-in-clojure/233271#233271Comment by dsm on What is the best way to do Gui in Clojure?dsm2009-10-02T07:49:50Z2009-10-02T07:49:50Z@James - edited the answer to reflect thathttp://stackoverflow.com/questions/1487629/regexp-perl-code-for-handling-both-dots-and-commas-as-valid-decimal-separatorsComment by dsm on Regexp/perl code for handling both dots and commas as valid decimal separatorsdsm2009-09-28T15:53:57Z2009-09-28T15:53:57Z@Elizabeth - yes you can, just wrap it in the dwim() function ;)http://stackoverflow.com/questions/1466709/improve-my-password-generation-script/1466814#1466814Comment by dsm on Improve my password generation scriptdsm2009-09-23T15:58:45Z2009-09-23T15:58:45Zthere is also an application called pwgen that generates passwords randomlyhttp://stackoverflow.com/questions/1405611/extracting-first-two-characters-of-a-string-shell-scripting/1405719#1405719Comment by dsm on Extracting first two characters of a string (Shell Scripting)dsm2009-09-10T16:08:07Z2009-09-10T16:08:07ZNo I didn't... it reads STDINhttp://stackoverflow.com/questions/1403969/url-mapping-in-browserComment by dsm on URL mapping - in browserdsm2009-09-10T08:34:34Z2009-09-10T08:34:34Z<a href="http://tinyurl.com/nlq9yj" rel="nofollow">tinyurl.com/nlq9yj</a>http://stackoverflow.com/questions/1362215/lisp-parser-c/1362243#1362243Comment by dsm on LISP Parser C++dsm2009-09-02T08:28:13Z2009-09-02T08:28:13ZHe did mention he wanted a parser, not a full interpreterhttp://stackoverflow.com/questions/1346062/digitally-communicate-with-usbComment by dsm on Digitally Communicate with usbdsm2009-08-28T10:05:17Z2009-08-28T10:05:17ZWhat OS are you using?http://stackoverflow.com/questions/1238858/can-a-compiled-language-be-homoiconic/1238901#1238901Comment by dsm on Can a compiled language be homoiconic?dsm2009-08-06T14:54:29Z2009-08-06T14:54:29Zuh..... eval(f)? (Yes, I am being pedantic, and yes, you can work around it by making a call to gcc or somesuch contraption in the body of this eval function)http://stackoverflow.com/questions/1238858/can-a-compiled-language-be-homoiconic/1238882#1238882Comment by dsm on Can a compiled language be homoiconic?dsm2009-08-06T14:27:50Z2009-08-06T14:27:50Z@ott - in that case how about Machine Languagehttp://stackoverflow.com/questions/1205605/value-of-global-variable-doesnt-change-in-bash/1205641#1205641Comment by dsm on Value of global variable doesn't change in BASH.dsm2009-08-03T08:37:09Z2009-08-03T08:37:09Z@Viky: it doesn't matter... even the most retarded shell will work as expected. Tell me one thing tho, are you expecting to see the variable set <i>AFTER</i> your script has run?http://stackoverflow.com/questions/1205605/value-of-global-variable-doesnt-change-in-bash/1205641#1205641Comment by dsm on Value of global variable doesn't change in BASH.dsm2009-07-31T07:48:56Z2009-07-31T07:48:56ZNot in this case, but i edited my answer as you asked