User dsm - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T08:09:21Z http://stackoverflow.com/feeds/user/7780 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1770290/how-can-i-list-all-function-prototypes-used-in-a-given-c-file-with-perl/1770328#1770328 1 Answer by dsm for How can I list all function prototypes used in a given C file with Perl? dsm 2009-11-20T13:07:04Z 2009-11-20T13:07:04Z <pre><code># Quick &amp; dirty regexp - won't work with pointers or arrays... /^(\w+\s+\w+\s*\((\s*\w+\s+\w+\s*(,?))*\))(\{|;)\s*$/ &amp;&amp; print $1; </code></pre> http://stackoverflow.com/questions/1766873/collection-of-solved-lisp-problems/1769471#1769471 1 Answer by dsm for Collection of solved Lisp problems dsm 2009-11-20T09:57:27Z 2009-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#1750096 2 Answer by dsm for How does Perl's IO:File->Getlines read lines? dsm 2009-11-17T16:33:26Z 2009-11-17T16:33:26Z <pre><code>my @arr = split /\n/, $string; </code></pre> http://stackoverflow.com/questions/1722210/linux-api-ext3-file-information/1722246#1722246 1 Answer by dsm for Linux API - EXT3 file information dsm 2009-11-12T13:41:16Z 2009-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#1589568 4 Answer by dsm for Why does this map return a single number? dsm 2009-10-19T15:59:53Z 2009-10-20T11:14:34Z <p>Try this:</p> <pre><code>join $separator, map { $query-&gt;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#1537001 1 Answer by dsm for FLOPS Intel core and testing it with C (innerproduct) dsm 2009-10-08T10:37:20Z 2009-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#1520936 5 Answer by dsm for What is the Perlish way to iterate from item n to the end of an array? dsm 2009-10-05T16:00:02Z 2009-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#233271 8 Answer by dsm for What is the best way to do Gui in Clojure? dsm 2008-10-24T12:21:42Z 2009-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 "&lt;html&gt;Hello from &lt;b&gt;Clojure&lt;/b&gt;. 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#1466814 0 Answer by dsm for Improve my password generation script dsm 2009-09-23T15:37:58Z 2009-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#1459421 0 Answer by dsm for BASH: Strip new-line character from string (read line) dsm 2009-09-22T11:05:35Z 2009-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#1438324 13 Answer by dsm for How do I fork a new process and get back its PID in Perl? dsm 2009-09-17T11:39:48Z 2009-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#1422475 3 Answer by dsm for How to search for a pattern inside a file and delete the lines in Unix on the command line? dsm 2009-09-14T16:01:04Z 2009-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 &lt; time &amp;&amp; /!D!/;' </code></pre> http://stackoverflow.com/questions/1421144/how-can-i-get-list-of-mirrors-in-newest-cpan-pm/1421315#1421315 1 Answer by dsm for How can I get list of mirrors in newest CPAN.pm? dsm 2009-09-14T12:42:08Z 2009-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#1405719 0 Answer by dsm for Extracting first two characters of a string (Shell Scripting) dsm 2009-09-10T14:44:53Z 2009-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#1366802 7 Answer by dsm for How can I use Expect to enter a password for a Perl script? dsm 2009-09-02T09:59:55Z 2009-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-&gt;new; my $command = 'install.sh'; my @parameters = qw(-f my_conf -p my_ip -s my_server); my $timeout = 200; my $password = "W31C0m3"; $expect-&gt;raw_pty(1); $expect-&gt;spawn($command, @parameters) or die "Cannot spawn $command: $!\n"; $expect-&gt;expect($timeout, [ qr/Enter password for the packagekey:/i, #/ sub { my $self = shift; $self-&gt;send("$password\n"); exp_continue; } ]); </code></pre> http://stackoverflow.com/questions/1362615/how-to-find-files-containing-a-string-using-egrep/1362650#1362650 2 Answer by dsm for how to find files containing a string using egrep dsm 2009-09-01T13:59:20Z 2009-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#1362243 3 Answer by dsm for LISP Parser C++ dsm 2009-09-01T12:35:11Z 2009-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#1328550 0 Answer by dsm for What would you put on a "Modern Perl" t-shirt? dsm 2009-08-25T14:13:24Z 2009-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#1292466 4 Answer by dsm for Does the POSIX module in the standard Perl distribution work in Win32/64? dsm 2009-08-18T08:07:37Z 2009-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#1238882 5 Answer by dsm for Can a compiled language be homoiconic? dsm 2009-08-06T13:26:23Z 2009-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#1232883 0 Answer by dsm for Need of PRBS Pattern Generating C/C++ API dsm 2009-08-05T12:17:33Z 2009-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#1108275 2 Answer by dsm for Lisp: Elegant way to strip trailing nil's from a list? (Review) dsm 2009-07-10T07:54:25Z 2009-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]&gt; (assert (eq nil (strip-tail nil))) NIL [2]&gt; (assert (eq nil (strip-tail '(nil)))) ;' NIL [3]&gt; (assert (equal '(a b) (strip-tail '(a b nil nil)))) NIL [4]&gt; (assert (equal '(a nil b) (strip-tail '(a nil b nil)))) NIL [5]&gt; (assert (equal '(a b) (strip-tail '(a b)))) NIL [6]&gt; </code></pre> http://stackoverflow.com/questions/1205605/value-of-global-variable-doesnt-change-in-bash/1205641#1205641 0 Answer by dsm for Value of global variable doesn't change in BASH. dsm 2009-07-30T10:04:23Z 2009-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 #/ &lt;-- #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#1205562 1 Answer by dsm for How do I convert dos files to linux files in vim? dsm 2009-07-30T09:46:04Z 2009-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(){ [ "${!}" ] &amp;&amp; [ -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-work 3 How does this Perl one liner to check if a directory is empty work? dsm 2009-07-14T15:38:50Z 2009-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==(()=&lt;.* *&gt;)].empty' </code></pre> <p>The bit I am interested in is <code>&lt;.* *&gt;</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#1126385 0 Answer by dsm for How does this Perl one liner to check if a directory is empty work? dsm 2009-07-14T16:01:07Z 2009-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#1126126 5 Answer by dsm for In Perl, how can I write the output of Dumper to a file? dsm 2009-07-14T15:20:48Z 2009-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-&gt;Dump($object); </code></pre> http://stackoverflow.com/questions/1096704/how-can-i-extract-abbreviations-from-a-file-using-perl/1097048#1097048 2 Answer by dsm for How can I extract abbreviations from a file using Perl? dsm 2009-07-08T09:25:35Z 2009-07-09T09:12:36Z <pre><code>#!/usr/bin/perl use strict; use warnings; my %abbrs = (); while(&lt;&gt;){ my @words = split ' ', $_; foreach my $word(@words){ $word =~ /([A-Z]{2,})/ &amp;&amp; $abbrs{$1}++; } } # %abbrs now contains all abreviations </code></pre> http://stackoverflow.com/questions/1076791/grab-info-between-tags/1079281#1079281 1 Answer by dsm for Grab info between tags dsm 2009-07-03T13:06:55Z 2009-07-03T13:06:55Z <pre><code>#!/usr/bin/perl use strict; use warnings; my %seen = (); sub seen_all { defined $seen{title} &amp;&amp; defined $seen{url} &amp;&amp; defined $seen{pubDate}; } while (&lt;&gt;) { /&lt;(.+?)&gt;(.+)&lt;\/\1&gt;/ &amp;&amp; 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#1078917 1 Answer by dsm for Joining XML file in Perl dsm 2009-07-03T11:20:23Z 2009-07-03T11:20:23Z <pre><code>#!/usr/bin/perl print '&lt;xml&gt;'; print while &lt;&gt;; print '&lt;/xml&gt;'; </code></pre> http://stackoverflow.com/questions/1750069/how-does-perls-iofile-getlines-read-lines/1750096#1750096 Comment by dsm on How does Perl's IO:File->Getlines read lines? dsm 2009-11-18T09:31:44Z 2009-11-18T09:31:44Z This was a different question when I answered it (namely: &quot;what is the best way to split a string into lines&quot;). Take this into consideration before downvoting http://stackoverflow.com/questions/1749657/need-help-with-brute-force-code-for-crypt3 Comment by dsm on Need help with brute force code for crypt(3) dsm 2009-11-17T15:39:05Z 2009-11-17T15:39:05Z Do 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#1706570 Comment by dsm on Difference between Linux and Unix? And what exactly is AIX? dsm 2009-11-10T09:32:07Z 2009-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#1706570 Comment by dsm on Difference between Linux and Unix? And what exactly is AIX? dsm 2009-11-10T09:31:16Z 2009-11-10T09:31:16Z There is also Solaris from SUN, BSD (+ Flavours), Cygwin (which is an emulator rather than a &quot;real&quot; 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#233271 Comment by dsm on What is the best way to do Gui in Clojure? dsm 2009-10-02T07:49:50Z 2009-10-02T07:49:50Z @James - edited the answer to reflect that http://stackoverflow.com/questions/1487629/regexp-perl-code-for-handling-both-dots-and-commas-as-valid-decimal-separators Comment by dsm on Regexp/perl code for handling both dots and commas as valid decimal separators dsm 2009-09-28T15:53:57Z 2009-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#1466814 Comment by dsm on Improve my password generation script dsm 2009-09-23T15:58:45Z 2009-09-23T15:58:45Z there is also an application called pwgen that generates passwords randomly http://stackoverflow.com/questions/1405611/extracting-first-two-characters-of-a-string-shell-scripting/1405719#1405719 Comment by dsm on Extracting first two characters of a string (Shell Scripting) dsm 2009-09-10T16:08:07Z 2009-09-10T16:08:07Z No I didn't... it reads STDIN http://stackoverflow.com/questions/1403969/url-mapping-in-browser Comment by dsm on URL mapping - in browser dsm 2009-09-10T08:34:34Z 2009-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#1362243 Comment by dsm on LISP Parser C++ dsm 2009-09-02T08:28:13Z 2009-09-02T08:28:13Z He did mention he wanted a parser, not a full interpreter http://stackoverflow.com/questions/1346062/digitally-communicate-with-usb Comment by dsm on Digitally Communicate with usb dsm 2009-08-28T10:05:17Z 2009-08-28T10:05:17Z What OS are you using? http://stackoverflow.com/questions/1238858/can-a-compiled-language-be-homoiconic/1238901#1238901 Comment by dsm on Can a compiled language be homoiconic? dsm 2009-08-06T14:54:29Z 2009-08-06T14:54:29Z uh..... 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#1238882 Comment by dsm on Can a compiled language be homoiconic? dsm 2009-08-06T14:27:50Z 2009-08-06T14:27:50Z @ott - in that case how about Machine Language http://stackoverflow.com/questions/1205605/value-of-global-variable-doesnt-change-in-bash/1205641#1205641 Comment by dsm on Value of global variable doesn't change in BASH. dsm 2009-08-03T08:37:09Z 2009-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#1205641 Comment by dsm on Value of global variable doesn't change in BASH. dsm 2009-07-31T07:48:56Z 2009-07-31T07:48:56Z Not in this case, but i edited my answer as you asked