User Sinan &#220;n&#252;r - Stack Overflow most recent 30 from stackoverflow.com 2009-12-12T08:44:59Z http://stackoverflow.com/feeds/user/100754 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1881521/using-perls-template-pm-how-can-i-select-a-random-element-from-an-array-and-out 3 Using Perl's Template.pm, how can I select a random element from an array and output it? Sinan Ünür 2009-12-10T14:58:58Z 2009-12-10T18:21:26Z <p>Suppose I have the following in my template:</p> <pre><code>[%- pages = [ 'one', 'two', 'three' ] -%] &lt;p&gt;Go to page [%- ... -%]&lt;/p&gt; </code></pre> <p>Assuming <code>EVAL_PERL</code> is <strong>not</strong> set (i.e., I cannot use a <code>[%- PERL -%]</code> block), what do I need to put inside the <code>[%- ... -%]</code> above so as to get the following output?</p> <pre><code>&lt;p&gt;Go to page "a randomly picked element of pages"&lt;/p&gt; </code></pre> http://stackoverflow.com/questions/1882101/how-can-i-quickly-check-if-linux-unzip-is-installed-using-perl/1882303#1882303 1 Answer by Sinan Ünür for How can I quickly check if Linux `unzip` is installed using Perl? Sinan Ünür 2009-12-10T16:42:32Z 2009-12-10T16:48:04Z <p>Any particular <code>unzip</code>? Linux systems I use have Info-Zip's <code>unzip</code> and if that is what you want to check for, you can do</p> <pre><code>if ( (`unzip`)[0] =~ /^UnZip/ ) { # ... } </code></pre> <p>If you want this to be a little safer, you would do:</p> <pre><code>#!/usr/bin/perl -T use strict; use warnings; $ENV{PATH} = '/bin:/usr/bin:/usr/local/bin'; use File::Spec::Functions qw( catfile path ); my @unzip_paths; for my $dir ( path ) { my $fn = catfile $dir, 'unzip'; push @unzip_paths, $fn if -e $fn; } if ( @unzip_paths &gt; 1 ) { # further narrow down by version etc } </code></pre> <p>See also <a href="http://www.unur.com/comp/ppp/multi-which.html" rel="nofollow">my multi-which script</a>.</p> http://stackoverflow.com/questions/1871092/masking-a-string-in-perl-using-a-mask-string/1871150#1871150 0 Answer by Sinan Ünür for Masking a string in perl using a mask string Sinan Ünür 2009-12-09T01:50:57Z 2009-12-09T01:50:57Z <p><code>x</code> can be translated to <code>.</code> and <code>o</code> to <code>(.)</code> whereas <code>-</code> becomes <code>(.+?)</code>:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; my %s = qw( deadbeef xxaxbeex deadabbabeef xxaxabbabeex); for my $k ( keys %s ) { (my $x = $k) =~ s/^..(.).(.+?).\z/xx$1x$2x/; print +($x eq $s{$k} ? 'good' : 'bad'), "\n"; } </code></pre> http://stackoverflow.com/questions/1870777/how-do-i-configure-strawberry-perl-to-run-from-something-other-than-c-strawberry/1871012#1871012 1 Answer by Sinan Ünür for How do I configure Strawberry Perl to run from something other than c:\strawberry? Sinan Ünür 2009-12-09T01:06:39Z 2009-12-09T01:06:39Z <p><strong>Note:</strong> I have no idea, really.</p> <p>Here is some speculation anyway:</p> <p>Looking at <a href="http://cpansearch.perl.org/src/CSJEWELL/Perl-Dist-Strawberry-2.01/lib/Perl/Dist/Strawberry.pm" rel="nofollow">Perl::Dist::Strawberry</a>:</p> <pre><code># Set the different paths $machine-&gt;add_dimension('drive'); $machine-&gt;add_option('drive', image_dir =&gt; 'C:\strawberry', ); </code></pre> <p>So, I imagine that would be the way to build whole distributions from source to be installed in a specific location.</p> <p>Neither the executables, nor the dlls have the string <code>strawberry</code> in them, so my guess is hacking away at <code>Config.pm</code> and <code>Config_heavy.pl</code> would probably get things done.</p> http://stackoverflow.com/questions/1421377/i-dont-want-to-show-the-html-file-name-as-the-home-page-such-as-stackoverflow-c/1868135#1868135 1 Answer by Sinan Ünür for I don't want to show the HTML file name as the home page, such as stackoverflow.com, instead of stackoverflow.com/home. Sinan Ünür 2009-12-08T16:31:47Z 2009-12-08T16:31:47Z <p>See <a href="http://httpd.apache.org/docs/trunk/mod/mod%5Fdir.html#directoryindex" rel="nofollow"><code>DirectoryIndex</code></a>:</p> <pre><code>DirectoryIndex home.html </code></pre> http://stackoverflow.com/questions/1860159/how-to-escape-the-sign-in-cs-printf/1860173#1860173 8 Answer by Sinan Ünür for How to escape the % sign in C's printf? Sinan Ünür 2009-12-07T14:04:59Z 2009-12-08T12:19:32Z <p>If there are no formats in the string, you can use <a href="http://www.opengroup.org/onlinepubs/009695399/functions/fputs.html" rel="nofollow"><code>puts</code></a> (or <a href="http://www.opengroup.org/onlinepubs/009695399/functions/fputs.html" rel="nofollow"><code>fputs</code></a>):</p> <pre><code>puts("hello%"); </code></pre> <p>if there is a format in the string:</p> <pre><code>printf("%.2f%%", 53.2); </code></pre> <p>As noted in the comments, <code>puts</code> appends a <code>\n</code> to the output and <code>fputs</code> does not.</p> http://stackoverflow.com/questions/1864245/how-can-i-do-64-bit-arithmetic-in-perl/1864259#1864259 6 Answer by Sinan Ünür for How can I do 64-bit arithmetic in Perl? Sinan Ünür 2009-12-08T02:42:34Z 2009-12-08T02:42:34Z <p>See <a href="http://perldoc.perl.org/bigint.html" rel="nofollow">bigint</a>.</p> http://stackoverflow.com/questions/1863772/what-happens-when-you-put-an-array-on-the-right-side-of-a-operator/1863897#1863897 6 Answer by Sinan Ünür for What happens when you put an array on the right side of a => operator? Sinan Ünür 2009-12-08T01:00:40Z 2009-12-08T01:00:40Z <blockquote> <p>What happens when you put an array on the right side of a => operator?</p> </blockquote> <p><code>=&gt;</code> is the <a href="http://www.perlfoundation.org/perl5/index.cgi?fat%5Fcomma" rel="nofollow">fat comma</a>. It has <strong>no effect</strong> on the <strong><em>RHS</em></strong>. It automatically quotes the LHS if the LHS is a <a href="http://www.perlfoundation.org/perl5/index.cgi?bareword" rel="nofollow">bareword</a>.</p> <p>The rest of your question seems to boil down to if there is a difference between passing a function an array versus a reference to an array: Yes, there is. In the first case, the array is flattened and passed to the function. So, if the array has 1,000 elements, the functions argument list will grow by 1,000 elements. </p> <p>In the second case, a reference to the array is passed, so the size of the argument list does not depend on the size of the array pointed to by the reference passed to the function.</p> http://stackoverflow.com/questions/1846176/how-do-i-setup-strawberry-perl-in-msys/1847030#1847030 3 Answer by Sinan Ünür for How do I setup Strawberry Perl in MSYS? Sinan Ünür 2009-12-04T13:43:58Z 2009-12-04T14:47:16Z <p>If you want Strawberry <code>perl</code> to run your scripts by default, use <code>ftype</code> and <code>assoc</code>.</p> <pre><code>ftype /? assoc /? </code></pre> <p>and add the extension you use for Perl scripts to <code>%PATHEXT%</code> (so you can invoke scripts without having to enter the file extension):</p> <pre> ftype perl perl="C:\opt\Perl\bin\perl.exe" "%1" %* assoc .pl .pl=Perl echo.%PATHEXT% .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PL;.PLX;.WPL;.py;.pyw;.PSC1 </pre> <p>Of course, for the <code>ftype</code> command specify the path where Strawberry's <code>perl</code> lives.</p> http://stackoverflow.com/questions/1846930/what-is-the-difference-between-int-i-and-int-i/1847173#1847173 0 Answer by Sinan Ünür for what is the difference between "int *i" and "int* i"? Sinan Ünür 2009-12-04T14:11:22Z 2009-12-04T14:11:22Z <p><code>int *i</code> can be read as the type of the thing pointed to by <code>i</code>, i.e. <strong><code>*i</code></strong> is an <code>int</code> which is more in line with the C way of thinking.</p> <p>On the other hand, people who tend to think of the type of <code>i</code>, rather than the type of <code>*i</code> tend to write <code>int* i</code>.</p> http://stackoverflow.com/questions/1836083/how-do-you-print-hexadecimal-digits-to-a-perl-string/1836123#1836123 10 Answer by Sinan Ünür for How do you print hexadecimal digits to a Perl string? Sinan Ünür 2009-12-02T21:58:33Z 2009-12-02T21:58:33Z <pre><code>my $rgb = sprintf '#%02X%02X%02X', $r, $g, $b; </code></pre> <p>See <a href="http://perldoc.perl.org/functions/sprintf.html" rel="nofollow">sprintf</a> and <a href="http://perldoc.perl.org/functions/printf.html" rel="nofollow">printf</a>.</p> http://stackoverflow.com/questions/1835636/how-to-find-a-word-not-preceded-by-another-specific-word/1835754#1835754 3 Answer by Sinan Ünür for How to find a word NOT preceded by another specific word? Sinan Ünür 2009-12-02T20:57:23Z 2009-12-02T21:37:08Z <p>Better to use other facilities of the programming language than to look too hard for a regex pattern.</p> <p>You are looking for strings for which <code>$s =~ /bar/ and not $s =~ /foo\s*bar/</code> is true.</p> <p>The rest of the script below is just for testing.</p> <pre><code>#!/usr/bin/perl use strict; use warnings; my %strings = ( 'foo is bar' =&gt; 1, 'hello bar' =&gt; 1, 'foobar' =&gt; 0, 'foo bar' =&gt; 0, 'barbar' =&gt; 1, 'bar foo' =&gt; 1, 'foo foo' =&gt; 0, ); my @accept = grep { $strings{$_} } keys %strings; my @reject = grep { not $strings{$_} } keys %strings; for my $s ( @accept ) { if ( $s =~ /bar/ and not $s =~ /foo\s*bar/ ) { print "Good: $s\n"; } else { print "Bad : $s\n"; } } for my $s ( @reject ) { if ( $s =~ /bar/ and not $s =~ /foo\s*bar/ ) { print "Bad : $s\n"; } else { print "Good: $s\n"; } } </code></pre> <p>Output:</p> <pre> E:\srv\unur> j Good: bar foo Good: hello bar Good: foo is bar Good: barbar Good: foo foo Good: foo bar Good: foobar </pre> http://stackoverflow.com/questions/1835773/restart-multi-threaded-perl-script-and-close-mysql-connection/1835806#1835806 2 Answer by Sinan Ünür for restart multi-threaded perl script and close mysql connection Sinan Ünür 2009-12-02T21:06:15Z 2009-12-02T21:18:43Z <p>Use a flag variable that is shared between threads. Have the command line reading thread set the flag to exit, and the thread holding the DB handle release it and actually do the re-exec:</p> <pre><code>#!/usr/bin/perl use threads; use threads::shared; use strict; use warnings; my $EXIT_FLAG :shared; my $db_thread = threads-&gt;create('do_the_db_thing'); $db_thread-&gt;detach; while ( 1 ) { sleep rand 10; $EXIT_FLAG = 1 if 0.05 &gt; rand or time - $^T &gt; 20; } sub do_the_db_thing { until ( $EXIT_FLAG ) { warn sprintf "%d: Working with the db\n", time - $^T; sleep rand 5; } # $dbh-&gt;disconnect; # here warn "Exit flag is set ... restarting\n"; exec 'j.pl'; } </code></pre> http://stackoverflow.com/questions/1835732/finding-terabytes-of-data-and-using-in-oracle-for-learning-purposes/1835783#1835783 0 Answer by Sinan Ünür for Finding terabytes of data and using in oracle for learning purposes Sinan Ünür 2009-12-02T21:02:10Z 2009-12-02T21:02:10Z <p>I don't know if it is in the terabyte range, but here's <a href="http://archive.ics.uci.edu/ml/datasets/Netflix+Prize" rel="nofollow">100 million movie ratings</a>.</p> http://stackoverflow.com/questions/1834625/where-can-find-examples-and-tutorials-for-perls-netpcap-module/1834698#1834698 3 Answer by Sinan Ünür for Where can find examples and tutorials for Perl's Net::Pcap module? Sinan Ünür 2009-12-02T17:59:53Z 2009-12-02T17:59:53Z <p>See <a href="http://glasnost.itcarlow.ie/~pnb/chapters.html" rel="nofollow">Chapter 2 materials</a> for <a href="http://glasnost.itcarlow.ie/~pnb/" rel="nofollow">Programming the Network with Perl</a>. See also <a href="http://cpansearch.perl.org/src/SAPER/Net-Pcap-0.16/eg/pcapdump" rel="nofollow">an example included in the distribution</a>.</p> http://stackoverflow.com/questions/1829751/how-can-i-make-perl-functions-that-use-by-default/1829820#1829820 13 Answer by Sinan Ünür for How can I make Perl functions that use $_ by default? Sinan Ünür 2009-12-02T00:02:18Z 2009-12-02T16:08:40Z <p>If you are using 5.10 or later, you can specify <code>_</code> as the <a href="http://perldoc.perl.org/perlsub.html#Prototypes" rel="nofollow">prototype</a> for <code>trim</code>. If you are using earlier versions, use <a href="http://stackoverflow.com/questions/1829751/passing-functions-to-map-in-perl/1830571#1830571">Axeman's answer</a>:</p> <blockquote> <p>As the last character of a prototype, or just before a semicolon, you can use <code>_</code> in place of <code>$</code> : if this argument is not provided, <code>$_</code> will be used instead.</p> </blockquote> <pre><code>use strict; use warnings; my @x = ("bla ", "ha 1"); sub trim(_) { my ($x) = @_; $x =~ s!\s+$!!; $x } print map trim, @x; </code></pre> <p>Incidentally, don't use <code>$a</code> and <code>$b</code> outside of a <code>sort</code> comparator: They are immune from <code>strict</code> checking.</p> <p>However, I prefer not to use prototypes for functions I write mainly because their use makes it harder to mentally parse the code. So, I would prefer using:</p> <pre><code>map trim($_), @x; </code></pre> <p>See also <a href="http://perldoc.perl.org/perlsub.html#Prototypes" rel="nofollow">perldoc perlsub</a>:</p> <blockquote> <p>This is all very powerful, of course, and should be used only in moderation to make the world a better place.</p> </blockquote> http://stackoverflow.com/questions/1833716/need-help-with-declarations-in-c/1833751#1833751 0 Answer by Sinan Ünür for Need help with declarations in C Sinan Ünür 2009-12-02T15:46:47Z 2009-12-02T15:46:47Z <p>See <a href="http://c-faq.com/aryptr/dynmuldimary.html" rel="nofollow">How can I dynamically allocate a multidimensional array?</a></p> http://stackoverflow.com/questions/1832586/get-link-speed-win32perfrawdatatcpipnetworkinterface/1833333#1833333 0 Answer by Sinan Ünür for Get Link Speed - Win32_PerfRawData_Tcpip_NetworkInterface Sinan Ünür 2009-12-02T14:44:06Z 2009-12-02T15:02:21Z <p>OK. Thanks for posting the short script. While you were working on that, I was following a different track using <a href="http://search.cpan.org/perldoc/DBD%3A%3AWMI" rel="nofollow">DBD::WMI</a> and digging through the docs to see if you had missed anything.</p> <p>I could not find a better way (there must be one) than canonicalizing the names:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use DBI; use Data::Dumper; my $computer = '.'; ($computer) = @ARGV if @ARGV; my $dbh = DBI-&gt;connect("dbi:WMI:$computer", undef, undef, { RaiseError =&gt; 1}, ); print "=== From Win32_NetworkAdapter ===\n"; my $name = $dbh-&gt;selectall_arrayref( 'SELECT * FROM Win32_NetworkAdapter WHERE DeviceID = 11' )-&gt;[0]-&gt;[0]-&gt;{Name}; (my $canonname = $name) =~ s/[^A-Za-z0-9]/_/g; print "Name: $name\nCanonical name: $canonname\n\n"; my $sth = $dbh-&gt;prepare( 'SELECT * FROM Win32_PerfRawData_Tcpip_NetworkInterface' ); $sth-&gt;execute; print "=== From Win32_PerfRawData_Tcpip_NetworkInterface ===\n"; while (defined (my $adapter = $sth-&gt;fetchrow_arrayref )) { my $conf = $adapter-&gt;[0]; my $perfname = $conf-&gt;{Name}; (my $canonperfname = $perfname) =~ s/[^A-Za-z0-9]/_/g; if ( $canonperfname =~ /^$canonname/ ) { print "Name: $perfname\nCanonical name: $canonperfname\n"; print $conf-&gt;{CurrentBandwidth}, "\n\n"; last; } } </code></pre> <p>Output:</p> <pre> === From Win32_NetworkAdapter === Name: Intel(R) PRO/Wireless 3945ABG Network Connection Canonical name: Intel_R__PRO_Wireless_3945ABG_Network_Connection === From Win32_PerfRawData_Tcpip_NetworkInterface === Name: Intel[R] PRO_Wireless 3945ABG Network Connection - Packet Scheduler Miniport Canonical name: Intel_R__PRO_Wireless_3945ABG_Network_Connection___Packet_Scheduler_Miniport 54000000 </pre> http://stackoverflow.com/questions/1830246/how-to-expire-a-cookie-in-30-minutes-using-jquery/1830263#1830263 5 Answer by Sinan Ünür for How to expire a cookie in 30 minutes using jQuery? Sinan Ünür 2009-12-02T02:17:10Z 2009-12-02T02:17:10Z <p>30 minutes is <code>30 * 60 * 1000</code> miliseconds. Add that to the current date to specify an expiration date 30 minutes in the future.</p> <pre><code> var date = new Date(); date.setTime(date.getTime() + (30 * 60 * 1000)); $.cookie("example", "foo", { expires: date }); </code></pre> http://stackoverflow.com/questions/1830078/regex-help-capture-an-entire-line-if-it-starts-with-a-1-or-2/1830099#1830099 1 Answer by Sinan Ünür for Regex help: capture an entire line if it starts with a 1. or 2. ... Sinan Ünür 2009-12-02T01:19:36Z 2009-12-02T01:19:36Z <pre><code>#!/usr/bin/perl use strict; use warnings; my $str = &lt;&lt;'EO_STR'; 2. Il Cuccio, via Ronchi 43/b, 14047 Mombercelli, Asti. Tel: 380 7277050 Fax: 0141 959282 E-mail: info@ilcuccio.it www.ilcuccio.it Accommodation in communal room or tent. French and English spoken. Contact: Cristina Belotti. 3. Apicoltura Leida Barbara, Strada Crevenzolo 21, Viguzzolo, 15058 Alessandria. Tel: 0131 899166 &amp; 392 9078020 E-mail: barbaraleida@tiscali.it The farm, situated in the plains, is certified organic (CCPB). EO_STR while ( $str =~ /^[0-9]\. ([^.]+)\./mg ) { print "$1\n"; } </code></pre> <p>As I understand, no <code>.</code> appears in the address part. So, the address is the part between the <code>[0-9]\. </code> and the following period. Therefore, the expression above captures all non-<code>.</code> characters between the <code>[0-9]\. </code> and the <code>\.</code> It uses the <code>m</code> modifier so <code>^</code> matches the beginning of each line rather than the beginning of the string. It uses the <code>g</code> modifier to go through each match in return.</p> <p>If you just wanted to grab all captures:</p> <pre><code>my @addresses = $str =~ /^[0-9]\. ([^.]+)\./mg; print $_, "\n" for @addresses; </code></pre> http://stackoverflow.com/questions/1829922/concatenating-variable-names-in-c/1829927#1829927 30 Answer by Sinan Ünür for Concatenating Variable Names in C? Sinan Ünür 2009-12-02T00:26:55Z 2009-12-02T01:01:47Z <p>When you find yourself adding an integer suffix to variable names, think <strong><em>I should have used an array</em></strong>.</p> <pre><code>struct mystruct { int class[6]; }; int main(void) { struct mystruct s; int i; for (i = 0; i &lt; 6; ++i) { s.class[i] = 1000 + i; } return 0; } </code></pre> <p><strong>Note:</strong> A C++ compiler will barf at this because of <code>class</code>. You will need to figure out a different name for that field if you plan to compile this code as C++.</p> http://stackoverflow.com/questions/1825794/passing-pointer-argument-by-reference-under-c/1829228#1829228 0 Answer by Sinan Ünür for Passing pointer argument by reference under C? Sinan Ünür 2009-12-01T21:58:31Z 2009-12-01T21:58:31Z <p>This should be a comment but it is too long for a comment box, so I am making it CW.</p> <p>The code you provided can be better written as:</p> <pre><code>#include &lt;stdio.h&gt; #include &lt;stdlib.h&gt; #include &lt;string.h&gt; void getstr(char **retstr) { *retstr = malloc(25); if ( *retstr ) { strcpy(*retstr, "hello,world"); } return; } int main(void) { char *retstr; getstr(&amp;retstr); if ( retstr ) { printf("%s\n", retstr); } return 0; } </code></pre> http://stackoverflow.com/questions/1826578/what-concerns-should-i-have-when-installing-additional-perl-modules-on-a-server/1826611#1826611 13 Answer by Sinan Ünür for What concerns should I have when installing additional Perl modules on a server? Sinan Ünür 2009-12-01T14:40:46Z 2009-12-01T21:35:26Z <p>I do not know your company's policy, but it would probably be a better idea not to mess with your system <code>perl</code> and install the additional libraries and their prerequisites (and even a dedicated <code>perl</code>) in a different location and use <a href="http://perldoc.perl.org/lib.html" rel="nofollow"><code>lib</code></a>.</p> <p>See also <a href="http://perldoc.perl.org/perlfaq8.html#How-do-I-keep-my-own-module%2flibrary-directory%3f" rel="nofollow">How do I keep my own module/library directory?</a> in <a href="http://perldoc.perl.org/index-faq.html" rel="nofollow">perlfaq</a>.</p> http://stackoverflow.com/questions/1828902/how-can-i-use-perl-to-record-mp3-files-on-windows/1829082#1829082 8 Answer by Sinan Ünür for How can I use Perl to record MP3 files on Windows? Sinan Ünür 2009-12-01T21:33:52Z 2009-12-01T21:33:52Z <p>You can use <a href="http://search.cpan.org/perldoc/Win32%3A%3ASoundRec" rel="nofollow">Win32::SoundRec</a> to record to WAV format. You can use <a href="http://lame.cvs.sourceforge.net/%2acheckout%2a/lame/lame/USAGE" rel="nofollow">lame</a> to encode WAV to MP3.</p> http://stackoverflow.com/questions/1826675/how-can-i-get-all-files-in-a-directory-but-not-in-subdirectories-in-perl/1826732#1826732 3 Answer by Sinan Ünür for How can I get all files in a directory, but not in subdirectories, in Perl? Sinan Ünür 2009-12-01T14:58:25Z 2009-12-01T15:04:52Z <p>Use <a href="http://perldoc.perl.org/functions/readdir.html" rel="nofollow">readdir</a> or <a href="http://search.cpan.org/perldoc/File%3A%3ASlurp" rel="nofollow">File::Slurp::read_dir</a> in conjunction with <a href="http://perldoc.perl.org/functions/grep.html" rel="nofollow">grep</a>.</p> <pre><code> #!/usr/bin/perl use strict; use warnings; use File::Slurp; use File::Spec::Functions qw( canonpath catfile ); my @dirs = (@ENV{qw(HOME TEMP)}); for my $dir ( @dirs ) { print "'$dir'\n"; my @files = grep { 2 &gt; -M and -f } map { canonpath(catfile $dir, $_) } read_dir $dir; print "$_\n" for @files; } </code></pre> http://stackoverflow.com/questions/1783631/how-can-i-make-perls-filefind-faster/1783662#1783662 17 Answer by Sinan Ünür for How can I make Perl's File::Find faster? Sinan Ünür 2009-11-23T15:02:24Z 2009-12-01T12:13:21Z <p>Searching the file system without a preexisting index is IO bound. Otherwise, products ranging from <a href="http://unixhelp.ed.ac.uk/CGI/man-cgi?locate+1" rel="nofollow"><code>locate</code></a> to <a href="http://www.microsoft.com/windows/products/winfamily/desktopsearch/default.mspx" rel="nofollow">Windows Desktop Search</a> would not exist.</p> <p>Type <code>D:\&gt; dir /b/s &gt; directory.lst</code> and observe how long it takes for that command to run. You should not expect to beat that without indexing files first.</p> <p>One major improvement you can make is to print less often. A minor improvement is not to use capturing parentheses if you are not going to capture:</p> <pre><code>my @dirs; sub Lib_files { return unless -d $File::Find::name; if ( /^[Ll]ib/ ) { push @dirs, $File::Find::name; } return; } </code></pre> <p>On my system, a simple script using <code>File::Find</code> to print the names of all subdirectories under my home directory with about 150,000 files takes a few minutes to run compared to <code>dir %HOME% /ad/b/s &gt; dir.lst</code> which completes in about 20 seconds.</p> <p>I would be inclined to use:</p> <pre><code>use File::Basename; my @dirs = grep { fileparse($_) =~ /^[Ll]ib/ } split /\n/, `dir %HOME% /ad/b/s`; </code></pre> <p>which completed in under 15 seconds on my system.</p> <p>If there is a chance there is some other <code>dir.exe</code> in <code>%PATH%</code>, <code>cmd.exe</code>'s built-in <code>dir</code> will not be invoked. You can use <code>qx! cmd.exe /c dir %HOME% /ad/b/s !</code> to make sure that the right <code>dir</code> is invoked.</p> http://stackoverflow.com/questions/1824240/how-do-i-find-all-lib-directories-under-a-windows-path/1825717#1825717 3 Answer by Sinan Ünür for How do I find all lib directories under a Windows path? Sinan Ünür 2009-12-01T11:57:32Z 2009-12-01T12:08:12Z <p>If you are using the code from <a href="http://stackoverflow.com/questions/1783631/how-can-i-make-perls-filefind-faster/1783662#1783662">my answer to your previous question</a>, the only thing I can think of is that there might be some external <code>dir.exe</code> on your path that does not understand the commandline options for <code>cmd.exe</code>'s built-in <code>dir</code>. For example, with Cygwin's directories in my path, I get</p> <pre> dir: cannot access /ad/b/s: No such file or directory </pre> <p><strong>You</strong> should also get in the habit of showing the <strong><em>exact</em></strong> output you are getting if you want people to be <em>able to</em> help you more effectively.</p> <p>To make sure that does not happen, use:</p> <pre><code>use strict; use warnings; use File::Basename; my @dirs = grep { fileparse($_) =~ /^[Ll]ib/ } split /\n/, `cmd.exe /c dir e:\\ /ad/b/s`; print "$_\n" for @dirs; </code></pre> <p>Note the backticks <strong><code>` </code></strong>. Note also the correction to the pattern you are using.</p> http://stackoverflow.com/questions/1823529/accurate-single-pass-penny-computation/1823550#1823550 0 Answer by Sinan Ünür for accurate single pass penny computation Sinan Ünür 2009-12-01T01:53:25Z 2009-12-01T02:39:44Z <p>In Perl:</p> <pre><code>#!/usr/bin/perl use strict; use warnings; use Data::Dumper; use List::AllUtils qw( sum ); print Dumper allocate(10_000, .23, .37, .4); print Dumper allocate(33.34, .25, .25, .25, .25); print Dumper allocate(100, 1/3, 1/3, 1/3); sub allocate { my ($C, @shares) = @_; my @alloc; while ( my $share = shift @shares ) { push @alloc, sprintf '%.2f', $C * $share; $C -= $alloc[-1]; my $denom = sum @shares; $_ /= $denom for @shares; } return \@alloc; } </code></pre> <p>Output:</p> <pre> $VAR1 = [ '2300.00', '3700.00', '4000.00' ]; $VAR1 = [ '8.34', '8.33', '8.34', '8.33' ]; $VAR1 = [ '33.33', '33.34', '33.33' ]; </pre> http://stackoverflow.com/questions/1822849/what-are-these-ms-that-keep-showing-up-in-my-files-in-emacs/1822888#1822888 3 Answer by Sinan Ünür for What are these ^M's that keep showing up in my files in emacs? Sinan Ünür 2009-11-30T22:33:04Z 2009-11-30T22:33:04Z <p><code>^M</code> is <code>0x0d</code>, i.e. the carriage return character. If your display looks like</p> <pre> line 1^M line 2^M </pre> <p>then the file must have come from Windows because the standard newline sequence on Windows is <code>CR</code> <code>LF</code> (<code>0x0d 0x0a</code>) whereas the standard newline sequence consists solely of <code>LF</code> on Unices.</p> <p>If the file had come from a Mac OS 9 or earlier system, you would see it as</p> <pre> line 1^Mline 2^M </pre> <p>because there would be no line feeds following the carriage returns.</p> http://stackoverflow.com/questions/1820688/how-can-i-print-print-just-a-unix-newline-in-perl-on-win32/1821103#1821103 8 Answer by Sinan Ünür for How can I print print just a unix newline in Perl on Win32? Sinan Ünür 2009-11-30T17:10:40Z 2009-11-30T22:29:22Z <p>Printing <code>"\n"</code> to a filehandle on Windows emits, by default, a <code>CARRIAGE RETURN</code> (<code>"\015"</code>) followed by a <code>LINE FEED</code> (<code>"\012"</code>) character because that the standard newline sequence on Windows.</p> <p>This happens transparently, so you need to override it for the special filehandle <code>ARGVOUT</code> (see <a href="http://perldoc.perl.org/perlvar.html#ARGVOUT" rel="nofollow">perldoc perlvar</a>):</p> <pre><code>#!/usr/bin/perl -i.bak use strict; use warnings; local ($\, $/); while (&lt;&gt;) { binmode ARGVOUT; print; } </code></pre> <p>Output:</p> <pre> C:\Temp> xxd test.txt 0000000: 7465 7374 0d0a 0d0a test.... C:\Temp> h test.txt C:\Temp> xxd test.txt 0000000: 7465 7374 0a0a test.. </pre> <p>See also <a href="http://perldoc.perl.org/open.html" rel="nofollow">perldoc open</a>, <a href="http://perldoc.perl.org/functions/binmode.html" rel="nofollow">perldoc binmode</a> and <a href="http://perldoc.perl.org/perliol.html" rel="nofollow">perldoc perliol</a> (thanks <a href="http://stackoverflow.com/users/59135/daotoad">daotoad</a>).</p> http://stackoverflow.com/questions/1890593/how-can-i-limit-the-size-of-http-post-requests-in-modperl/1890649#1890649 Comment by Sinan Ünür on How can I limit the size of HTTP POST requests in mod_perl? Sinan Ünür 2009-12-12T00:45:03Z 2009-12-12T00:45:03Z The way to withdraw your suggestion is to delete your answer. http://stackoverflow.com/questions/1881521/using-perls-template-pm-how-can-i-select-a-random-element-from-an-array-and-out/1881660#1881660 Comment by Sinan Ünür on Using Perl's Template.pm, how can I select a random element from an array and output it? Sinan Ünür 2009-12-10T18:27:53Z 2009-12-10T18:27:53Z You are welcome. Once you pointed me to <code>T:P:M</code>, the rest was straightforward. http://stackoverflow.com/questions/1881521/using-perls-template-pm-how-can-i-select-a-random-element-from-an-array-and-out/1882986#1882986 Comment by Sinan Ünür on Using Perl's Template.pm, how can I select a random element from an array and output it? Sinan Ünür 2009-12-10T18:26:36Z 2009-12-10T18:26:36Z I agree with you on both counts, but in this case I had to fit something in to a very straightforward, existing web site. http://stackoverflow.com/questions/1881521/using-perls-template-pm-how-can-i-select-a-random-element-from-an-array-and-out/1881660#1881660 Comment by Sinan Ünür on Using Perl's Template.pm, how can I select a random element from an array and output it? Sinan Ünür 2009-12-10T15:20:13Z 2009-12-10T15:20:13Z Thank you. I did not know about <code>T:P:M</code>. http://stackoverflow.com/questions/1863772/what-happens-when-you-put-an-array-on-the-right-side-of-a-operator/1866135#1866135 Comment by Sinan Ünür on What happens when you put an array on the right side of a => operator? Sinan Ünür 2009-12-08T19:33:30Z 2009-12-08T19:33:30Z Prototypes don't apply to method calls. http://stackoverflow.com/questions/1868388/why-cant-my-perl-find-strict-pm-when-i-call-it-from-another-program Comment by Sinan Ünür on Why can't my perl find strict.pm when I call it from another program? Sinan Ünür 2009-12-08T19:20:27Z 2009-12-08T19:20:27Z @Michael Carman: My guess is that <code>prog</code> and <code>input</code> are defined in a program in a different language. The OP wants to pass the program contained in <code>input</code> to the <code>perl</code> binary. The question is what/which <code>perl</code> is being invoked by <code>prog</code> and what is wrong with it? http://stackoverflow.com/questions/1868388/why-cant-my-perl-find-strict-pm-when-i-call-it-from-another-program Comment by Sinan Ünür on Why can't my perl find strict.pm when I call it from another program? Sinan Ünür 2009-12-08T18:13:15Z 2009-12-08T18:13:15Z And who would vote this question up and <b>why</b> on earth would anyone vote this question up? http://stackoverflow.com/questions/1868388/why-cant-my-perl-find-strict-pm-when-i-call-it-from-another-program Comment by Sinan Ünür on Why can't my perl find strict.pm when I call it from another program? Sinan Ünür 2009-12-08T18:12:21Z 2009-12-08T18:12:21Z Voting to close as not a real question. The code you show is not Perl, despite your claims to the contrary. <code>String input = </code> is not Perl. http://stackoverflow.com/questions/1868388/why-cant-my-perl-find-strict-pm-when-i-call-it-from-another-program Comment by Sinan Ünür on Why can't my perl find strict.pm when I call it from another program? Sinan Ünür 2009-12-08T17:18:20Z 2009-12-08T17:18:20Z <b>0%</b> accept rate is not a good sign. http://stackoverflow.com/questions/1835636/how-to-find-a-word-not-preceded-by-another-specific-word/1835754#1835754 Comment by Sinan Ünür on How to find a word NOT preceded by another specific word? Sinan Ünür 2009-12-04T14:30:25Z 2009-12-04T14:30:25Z Personally, I think you should read the code before downvoting. The look up table is there to list the test cases and make it easy to add test cases: The table has nothing to do with the logic. The logic consists entirely of <code>$s =~ /bar/ and not $s =~ /foo\s&#42;bar/</code>. http://stackoverflow.com/questions/1845038/whats-the-difference-between-system-in-c-and-perl/1845150#1845150 Comment by Sinan Ünür on What's the difference between system() in C and Perl? Sinan Ünür 2009-12-04T13:45:46Z 2009-12-04T13:45:46Z I hate links to spammy about.com http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841811#1841811 Comment by Sinan Ünür on How to remove punctuation from a String in C Sinan Ünür 2009-12-03T18:51:13Z 2009-12-03T18:51:13Z @pmg It is not strictly Shlemiel but the function does traverse the string twice: Once to find the length and then to transform. http://stackoverflow.com/questions/1841863/size-of-a-structure-in-c/1841871#1841871 Comment by Sinan Ünür on Size of a structure in C Sinan Ünür 2009-12-03T18:28:03Z 2009-12-03T18:28:03Z It is not aligning to 6 bytes. int is taking 4 bytes and char[30] is taking 32 bytes, both multiples of 4 making the size of the structure also a multiple of 4 bytes. http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841809#1841809 Comment by Sinan Ünür on How to remove punctuation from a String in C Sinan Ünür 2009-12-03T18:20:58Z 2009-12-03T18:20:58Z Arguments to <code>ctype.h</code> functions must be cast to <code>unsigned char</code>. http://stackoverflow.com/questions/1841758/how-to-remove-punctuation-from-a-string-in-c/1841811#1841811 Comment by Sinan Ünür on How to remove punctuation from a String in C Sinan Ünür 2009-12-03T18:20:23Z 2009-12-03T18:20:23Z See *Shlemiel the painter's algorithm*: <a href="http://www.joelonsoftware.com/articles/fog0000000319.html" rel="nofollow">joelonsoftware.com/articles/fog0000000319.html/&hellip;</a>