User Hudson - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:32:04Z http://stackoverflow.com/feeds/user/14105 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/359764/splitting-gpg-encrypted-messages-into-packets 0 Splitting GPG encrypted messages into packets? Hudson 2008-12-11T15:42:43Z 2009-05-05T22:07:27Z <p>As an example, let's say that <a href="http://en.wikipedia.org/wiki/Alice_and_Bob" rel="nofollow">Alice</a> signs a message with her secret key and encrypts the message and signature with Trent's public key. Trent decrypts the message and signature with his secret key, verifies Alice's signature using her public key, and then re-encrypts the message and Alice's signature using Bob, Carol and Zoe's public keys. The three of them are able to decrypt the message with their own secret keys and verify Alice's signature using her public key. In this role Trent acts like a trusted third party mailing relay.</p> <p>I've been able to use gpgsplit to generate the separate packets from the outer-most encrypted message (the encrypted session key and the symetric encrypted data packet), but do not know how to get the data packets from the message once it has been decrypted. Looking at the output from gpg --list-packets, I'm interested in the 'onepass_sig', 'literal data' and 'signature' packets that are nested in the 'encrypted data' packet:</p> <pre> :pubkey enc packet: version 3, algo 16, keyid 366DE80896CDC35C data: [2048 bits] data: [2048 bits] :encrypted data packet: length: 205 mdc_method: 2 gpg: encrypted with 2048-bit ELG-E key, ID 96CDC35C, \ created 2008-04-06 "Test Key " :compressed packet: algo=2 :onepass_sig packet: keyid 317BCDBAC7BE611A version 3, sigclass 00, digest 2, pubkey 17, last=1 :literal data packet: mode b (62), created 1207514699, name="clear.txt", raw data: 128 bytes :signature packet: algo 17, keyid 317BCDBAC7BE611A version 3, created 1207514699, md5len 5, sigclass 00 digest algo 2, begin of digest 8e 1e data: [158 bits] data: [158 bits] </pre> <p>I'd like to do this with the command line gpg tools, but have not found any way to extract the individual packets and then to re-assemble them with a new symetric session key. Another option that I am considering is to use the Perl module <a href="http://search.cpan.org/dist/Crypt-OpenPGP/lib/Crypt/OpenPGP.pm" rel="nofollow">Crypt::OpenPGP</a>, or perhaps raw access to <a href="http://www.gnupg.org/documentation/manuals/gcrypt/" rel="nofollow">libgcrypt</a>. The easy API of <a href="http://www.gnupg.org/gpgme.html" rel="nofollow">gpgme</a> doesn't seem to have the flexibility to do what I need, although I might be overlooking something.</p> http://stackoverflow.com/questions/447216/web-pages-to-print-media-solutions/447238#447238 1 Answer by Hudson for Web pages to print media -- solutions? Hudson 2009-01-15T15:42:07Z 2009-01-15T15:48:17Z <p>I've written a <a href="http://www.osresearch.net/wiki/index.php/LaTeX_and_MediaWiki" rel="nofollow">MediaWiki to LaTeX converter</a> that tries to maintain the document structure of the source text. The document is then typeset with pdflatex to produce a very high quality, paginated document. Math markup is directly rendered by LaTeX, so the equations look great. The LaTeX documentclass / stylesheet is configurable from specialized commands in the wiki to directly control margins, page layout, fonts, extra packages and so on. This would fall in your second category of a custom script rather than a generic framework. </p> <p>There are many others, such as the <a href="http://www.mediawiki.org/wiki/Extension:Pdf_Export" rel="nofollow">Extension:Pdf_Export</a> that uses <a href="http://www.htmldoc.org/" rel="nofollow">htmldoc</a>. While it is more general, it does a very poor job of pagination and creates lots of widows and orphans, doesn't do optimal text justification and doesn't do indexes, figures, self-references, etc. Additionally, if you use &lt;math&gt; markup in MediaWiki it only includes the low-res PNG files.</p> <p><a href="http://www.princexml.com/license/" rel="nofollow">princexml</a> is specialized for MediaWiki and produces good looking documents, but isn't available under a Free license. Since it is a closed-source product, your ability to control the output is limited.</p> http://stackoverflow.com/questions/424443/bash-shell-what-is-equivalent-of-dos-shell-f8/425422#425422 0 Answer by Hudson for Bash Shell - What is equivalent of DOS shell F8 ? Hudson 2009-01-08T18:59:30Z 2009-01-08T18:59:30Z <p>If you use vi input mode (set -o vi in bash or via set editing-mode vi in .inputrc), you can use normal vi commands to search the history (/). This gives you full regular expressions, too, which can be helpful for finding a complex command.</p> http://stackoverflow.com/questions/412184/code-golf-diffie-hellman-key-exchange 0 Code golf: Diffie-Hellman key exchange Hudson 2009-01-05T03:00:47Z 2009-01-05T13:18:32Z <p>Back in the ITAR era, there was a <a href="http://www.cypherspace.org/adam/rsa/perl-dh.html" rel="nofollow">popular sig that performed Diffie-Hellman key exchange</a>:</p> <pre><code>#!/usr/bin/perl -- -export-a-crypto-system-sig Diffie-Hellman-2-lines ($g,$e,$m)=@ARGV,$m||die"$0 gen exp mod\n";print`echo "16dio1[d2%Sa2/d0&lt;X+d *La1=z\U$m%0]SX$e"[$g*]\EszlXx+p|dc` </code></pre> <p>With a modern dc, this can be reduced quite a bit to:</p> <pre><code>dc -e '16dio???|p' </code></pre> <p>While the modern dc form with the modular exponentiation command ('|' computes g^e % m via efficient exponential doubling) is likely unbeatable other than perhaps <a href="http://stackoverflow.com/questions/237496/code-golf-factorials">APL</a>, can the original form be improved upon? Keep in mind that the e and m values will be very large; they will both be on the order of 1024 bits each for cryptographic security.</p> http://stackoverflow.com/questions/372668/code-golf-how-do-i-write-the-shortest-character-mapping-program/408119#408119 1 Answer by Hudson for Code Golf: How do I write the shortest character mapping program? Hudson 2009-01-02T21:52:18Z 2009-01-02T21:52:18Z <p>If you change the format of the input slightly, this is a direct use of the <a href="http://en.wikipedia.org/wiki/Tr_(Unix)" rel="nofollow">tr</a> program:</p> <pre><code>echo EncodeMe | tr eMcnEod fNdmFpe </code></pre> http://stackoverflow.com/questions/237496/code-golf-factorials/407957#407957 7 Answer by Hudson for Code Golf: Factorials Hudson 2009-01-02T20:37:45Z 2009-01-02T20:37:45Z <p>Not the shortest, but certainly the least appropriate technique: <a href="http://en.wikipedia.org/wiki/Template_metaprogramming#Compile-time_class_generation" rel="nofollow">C++ templates to compute factorial</a> as part of the type signature of the class:</p> <pre><code>#include &lt;iostream&gt; template &lt;int N&gt; struct Factorial { enum { value = N * Factorial&lt;N - 1&gt;::value }; }; template &lt;&gt; struct Factorial&lt;0&gt; { enum { value = 1 }; }; int main() { std::cout &lt;&lt; "4!=" &lt;&lt; Factorial&lt;4&gt;::value &lt;&lt; std::endl; } </code></pre> <p>This will fail to produce valid answers for even moderate values of N.</p> http://stackoverflow.com/questions/404105/recommended-anecdotal-history-books-on-programming-in-the-60s-and-70s/404179#404179 1 Answer by Hudson for Recommended anecdotal/history book(s) on programming in the 60s and 70s Hudson 2008-12-31T22:37:41Z 2008-12-31T22:37:41Z <p>Brooks' <a href="http://en.wikipedia.org/wiki/The_Mythical_Man-Month" rel="nofollow">The Mythical Man Month</a> has many amusing stories about feature creep in developing OS/360, which was sort of the Windows Vista of its time.</p> <p>More recently, but still "ancient history" in computer time is <a href="http://www.folklore.org/StoryView.py?project=Macintosh&amp;story=Revolution_in_the_Valley.txt" rel="nofollow">Revolution in the Valley</a>, the story of the development of the Macintosh.</p> http://stackoverflow.com/questions/347142/project-files-in-repository/347151#347151 0 Answer by Hudson for Project files in repository Hudson 2008-12-07T02:54:59Z 2008-12-29T03:01:49Z <p>Typically anything that is rebuilt as part of the build is not checked into the respository. Otherwise there will be merge conflicts when the generated files are committed, especially if they are binaries or contain absolute paths.</p> <p>As Sydius mentioned, most SCM tools have a way to flag non-source files as binary. Most modern tools auto-detect non-plaintext files and for CVS it is:</p> <pre><code>cvs add -kb filenames </code></pre> http://stackoverflow.com/questions/396753/udp-broadcast-or-ip-multicast/396773#396773 2 Answer by Hudson for UDP Broadcast or IP Multicast? Hudson 2008-12-28T22:27:48Z 2008-12-28T22:32:58Z <p>Multicast has the drawback that it is not well supported by routers and NAT. If all of your clients are on the same network with only simple bridges, multicast works great and avoids the overhead of broadcast addressing for machines that are not part of the group. If the routers support IGMP and properly propagate the TTL it can work on local networks. There have been attempts to do multicast across the Internet, such as <a href="http://en.wikipedia.org/wiki/Mbone" rel="nofollow">Mbone</a>, with various levels of success. Most of them use some sort of tunnel to get around bridges and non-compliant routers.</p> <p>One caveat for multicast packets, however, is if there are any WiFi connections <a href="http://www.wi-fiplanet.com/tutorials/article.php/3433451" rel="nofollow">the access point will use the slowest possible bit rate</a> for the multicast packets and requires acks from all clients, even those who are not part of the multicast group. There are also drawbacks for non-participating clients and battery life.</p> http://stackoverflow.com/questions/347085/should-i-use-php-or-perl-for-massaging-my-data-and-storing-retrieving-it-with-mys/347172#347172 12 Answer by Hudson for Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL? Hudson 2008-12-07T03:15:17Z 2008-12-24T15:11:29Z <p>Perl's <a href="http://search.cpan.org/~timb/DBI-1.607/DBI.pm" rel="nofollow">DBI</a> module is very powerful and makes it easy to avoid SQL injection attacks through the use of bound parameters. See 'perldoc DBI' for details on the use of placeholders in SQL statements. Protecting the username/password for the database can be done with normal Unix file protection by placing the credentials in a read-protected file.</p> <p>The <a href="http://search.cpan.org/dist/DBIx-Class/lib/DBIx/Class.pm" rel="nofollow">DBIx::Class</a> and <a href="http://search.cpan.org/dist/Class-DBI/lib/Class/DBI.pm" rel="nofollow">Class::DBI</a> module provides a way to map the entire database and relations into Perl objects. It makes it very easy to rapidly walk the database, generating secure code along the way without needing to write a single line of SQL. This <a href="http://www.perlmonks.org/?node_id=557402" rel="nofollow">comparisons of Class::DBI and DBIx::Class</a> can help you choose which one; as usual with Perl, <a href="http://en.wikipedia.org/wiki/There_is_more_than_one_way_to_do_it" rel="nofollow">there is more than one way to do it</a>. If you're looking for an entire framework, the <a href="http://rosecode.org" rel="nofollow">Rose</a> library provides <a href="http://search.cpan.org/dist/Rose-DB-Object" rel="nofollow">Rose::DB::Object</a> to streamline access.</p> <p>You can run the Perl scripts either from the command line or in the cgi-bin directories.</p> <p>[ Thanks for <a href="http://stackoverflow.com/users/12195/draegtun">draegtun</a> for suggestions of other database wrapper classes ]</p> http://stackoverflow.com/questions/383403/code-golf-print-the-entire-12-days-of-christmas-song-in-the-fewest-lines-of-co/383649#383649 1 Answer by Hudson for Code Golf: Print the entire "12 Days of Christmas" song in the fewest lines of code. Hudson 2008-12-20T19:27:15Z 2008-12-20T19:42:58Z <p>423 bytes with Lingua::EN::Number:</p> <pre><code>use Lingua::EN::Numbers qw/num2en num2en_ordinal/; @l=map{($i++?num2en($i):'a')." $_"}split/\n/,&lt;&lt;""; partridge in a pear tree turtle doves, and french hens calling birds gold rings geese a-laying swans a-swimming maids a-milking ladies dancing lords a-leaping pipers piping drummers drumming print"On the ".num2en_ordinal($_+1) ." day of Christmas, my true love gave to me ", join(', ',reverse@l[0..$_]),"\n\n"for(0..11); </code></pre> <p>Or 480 bytes in perl without using Lingua::EN::Numbers:</p> <pre><code>@n=qw/first second third forth fifth sixth seventh eigth nineth tenth eleventh twelfth/; @l=&lt;DATA&gt;;chomp@l; print"On the $n[$_] day of Christmas, my true love gave to me ", join(', ',reverse@l[0..$_]),"\n\n"for(0..11); __DATA__ a partridge in a pear tree two turtle doves, and three french hens four calling birds five gold rings six geese a-laying seven swans a-swimming eight maids a-milking nine ladies dancing ten lords a-leaping eleven pipers piping twelve drummers drumming </code></pre> <p>It should be able to be reduced further since the numbers are very repetitive.</p> http://stackoverflow.com/questions/360219/how-do-i-skip-to-a-specific-input-line-in-perl/360261#360261 4 Answer by Hudson for How do I skip to a specific input line in Perl? Hudson 2008-12-11T17:51:41Z 2008-12-11T18:50:23Z <p><code>&lt;&gt;</code> is only magic in a <code>while(&lt;&gt;)</code> construct. Otherwise it does not assign to <code>$_</code>, so the <code>/include/</code> regular expression has nothing to match against. If you ran this with <code>-w</code> Perl would tell you:</p> <pre><code>Use of uninitialized value in pattern match (m//) at .... </code></pre> <p>You can fix this with:</p> <pre><code>$_ = &lt;&gt; until /include/; </code></pre> <p>To avoid the warning:</p> <pre><code>while(&lt;&gt;) { last if /include/; } </code></pre> http://stackoverflow.com/questions/356763/how-can-i-reformat-messages-in-an-mbox-file-with-bash-or-perl/356871#356871 6 Answer by Hudson for How can I reformat messages in an mbox file with bash or Perl? Hudson 2008-12-10T17:25:37Z 2008-12-10T17:40:27Z <p><a href="http://search.cpan.org/~markov/Mail-Box-2.084/lib/Mail/Box/Mbox.pod" rel="nofollow">Mail::Box::Mbox</a> will let you easily parse the file into separate messages. Mark Overmeer's <a href="http://perl.overmeer.net/yapc2002-mailbox/img0.html" rel="nofollow">slides from YAPC::Europe 2002</a> go into quite a bit of detail as to why parsing is much more difficult than it seems. Using this library will also deal with mh, IMAP and many other formats than just mbox.</p> <pre><code> #!/usr/bin/perl use warnings; use strict; use Mail::Box::Manager; my $file = shift || $ENV{MAIL}; my $mgr = Mail::Box::Manager-&gt;new( access =&gt; 'r', ); my $folder = $mgr-&gt;open( folder =&gt; $file ) or die "$file: Unable to open: $!\n"; for my $msg ($folder-&gt;messages) { my $to = join( ', ', map { $_-&gt;format } $msg-&gt;to ); my $from = join( ', ', map { $_-&gt;format } $msg-&gt;from ); my $date = localtime( $msg-&gt;timestamp ); my $subject = $msg-&gt;subject; my $body = $msg-&gt;body; # Strip all quoted text $body =~ s/^&gt;.*$//msg; print &lt;&lt;""; From: $from To: $to Date: $date $body } </code></pre> <p>You may want to reconsider your request to strip the quoted text -- what if you email that is formatted with interleaved replies? Stripping the quoted text would make this sort of email very hard to understand:</p> <pre> Foo wrote: > I like bar. Bar? Who likes bar? > It is better than baz. Everyone knows that. -- Quux </pre> <p>Additionally, what do you plan to do with attachments, non-text/plain MIME types, encoded text entities and other oddities?</p> http://stackoverflow.com/questions/351819/free-computer-science-textbooks/351844#351844 2 Answer by Hudson for Free Computer Science Textbooks Hudson 2008-12-09T05:05:58Z 2008-12-09T05:05:58Z <p>It is not a text book, but MIT has a collection of <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/" rel="nofollow">Computer Science and Electrical Engineering</a> lectures and course work available for free. You can follow the curriculums of everything from <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-00Fall-2007/CourseHome/index.htm" rel="nofollow">6.00 Introduction to Computer Science</a> all the way to graduate level <a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-854JFall-2005/CourseHome/index.htm" rel="nofollow">6.845J Advanced Algorithms</a> and everything in between.</p> <p>You can get a world-class education in Computer Science (or <a href="http://ocw.mit.edu/OcwWeb/web/home/home/index.htm" rel="nofollow">any topic</a>) for free!</p> http://stackoverflow.com/questions/347093/what-does-the-perl-substitution-operator-act-on/347165#347165 1 Answer by Hudson for What does the Perl substitution operator act on? Hudson 2008-12-07T03:07:58Z 2008-12-07T03:07:58Z <p>If in Q2 you mean to take a sub-string from $a, you might find this idiom useful:</p> <pre><code>($b) = $a =~ /(substring-to-match)/; $b =~ s/regex-on-susbtring/result-string/; </code></pre> <p>Also do note that $a and $b are not normal variables in Perl since they have special scope rules related to the sort function. See 'perldoc perlvar' for details.</p> http://stackoverflow.com/questions/341891/a-simple-way-to-send-mails-from-a-c-application-on-unix/342081#342081 0 Answer by Hudson for A simple way to send mails from a C application on Unix Hudson 2008-12-04T21:10:51Z 2008-12-04T21:10:51Z <p>Perl's <a href="http://search.cpan.org/~markov/MailTools-2.04/lib/Mail/Mailer.pod" rel="nofollow">Mail::Mailer</a> provides a very easy way to generate mail through the local MTA (example from perldoc -q mail):</p> <pre><code>use Mail::Mailer; my $mailer = Mail::Mailer-&gt;new(); $mailer-&gt;open({ From =&gt; $from_address, To =&gt; $to_address, Subject =&gt; $subject, }) or die "Can’t open: $!\n"; print $mailer $body; $mailer-&gt;close(); </code></pre> <p>If you're using C, you can either write a script wrapper around something using Mail::Mailer, or directly invoke the MTA via the shell and write formatted message into it.</p> http://stackoverflow.com/questions/341484/how-do-i-find-which-file-perl-loaded-when-i-use-a-module/341607#341607 0 Answer by Hudson for How do I find which file Perl loaded when I use a module? Hudson 2008-12-04T18:22:50Z 2008-12-04T18:22:50Z <p><a href="http://search.cpan.org/~darnold/Module-Mapper-1.01/lib/Module/Mapper.pod" rel="nofollow">Module::Mapper</a> provides a way to walk the @INC tree to find modules:</p> <pre><code>perl -MModule::Mapper -MData::Dumper \ -e 'print Dumper( find_sources( UseINC =&gt; 1, Modules =&gt; [ @ARGV ] ) )' \ list-of-modules-to-locate </code></pre> http://stackoverflow.com/questions/765228/32bit-int-32bit-int-64-bit-int/765230#765230 Comment by Hudson on 32bit int * 32bit int = 64 bit int? Hudson 2009-04-19T16:25:59Z 2009-04-19T16:25:59Z What are int32 and int64? Are they supposed to be like int32_t and int64_t from &lt;stdint.h&gt;? http://stackoverflow.com/questions/453432/difference-in-initalizing-and-zeroing-an-array-in-c-c/453616#453616 Comment by Hudson on Difference in initalizing and zeroing an array in c/c++ ? Hudson 2009-01-18T14:44:30Z 2009-01-18T14:44:30Z That seems like a very brittle way to code the ALLOWED_IN_URL array. Why not use C99 designated initializers? const char ALLOWED_IN_URL[256] = { ['A'] = 1, ['B'] = 1, /* ... <i>/ }, or if you are using gcc, { ['A'...'Z'] = 1, ['a'...'z'] = 1, /</i> ... */} http://stackoverflow.com/questions/160633/why-do-we-still-program-with-flat-files/160646#160646 Comment by Hudson on Why do we still program with flat files? Hudson 2009-01-16T16:47:51Z 2009-01-16T16:47:51Z And they are robust -- how many times have binary file formats been broken due to upgrades or other glitches in programs that parse them? Number of times vi has damaged my plain text LaTeX document: 0. Number of times Word has corrupted the binary document structure: $\infinity$. http://stackoverflow.com/questions/444235/revision-control-locking-is-the-jury-still-out/444293#444293 Comment by Hudson on Revision control locking: Is the jury still out? Hudson 2009-01-14T23:42:26Z 2009-01-14T23:42:26Z You could also mention that the modern distributed version controls don't even have any way to get a lock since there is no real-time communication between the repositories. http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/433066#433066 Comment by Hudson on Significant new inventions in computing since 1980 Hudson 2009-01-11T22:45:58Z 2009-01-11T22:45:58Z Some dates for earlier inventions: Engelbart's GUI was demoed in 1968 and the Xerox PARC Alto was developed in 1973. Multiple CPUs are new on the desktop, but not in the machine room -- the VAX cluster was first available in 1978. http://stackoverflow.com/questions/432922/significant-new-inventions-in-computing-since-1980/433204#433204 Comment by Hudson on Significant new inventions in computing since 1980 Hudson 2009-01-11T22:39:53Z 2009-01-11T22:39:53Z Virtualization was implemented on VM/CMS in 1972. What do you mean by &quot;the modular PC&quot;? http://stackoverflow.com/questions/431719/why-is-it-impossible-to-implement-garbage-collection-in-c-because-of-weak-typin/431724#431724 Comment by Hudson on Why is it "impossible" to implement garbage collection in C because of weak typing? Hudson 2009-01-11T00:09:07Z 2009-01-11T00:09:07Z Minor quibble: 'int i' won't always be large enough to hold a pointer and also possibly creates signed arithmetic problems. uintptr_t is the C99 defined integral type that is guaranteed to be large enough to hold a pointer. http://stackoverflow.com/questions/193298/best-practices-in-latex/218506#218506 Comment by Hudson on Best practices in LaTeX Hudson 2009-01-09T22:55:18Z 2009-01-09T22:55:18Z (Of course, I still use $$ since that is what I learned so many years ago...) http://stackoverflow.com/questions/193298/best-practices-in-latex/218506#218506 Comment by Hudson on Best practices in LaTeX Hudson 2009-01-09T22:54:35Z 2009-01-09T22:54:35Z From LaTeX FAQ: While the double dollar sign (still) works in LaTeX, it is not part of the &quot;official&quot; LaTeX command set (in fact, most books on LaTeX don't even mention it) and its use is discouraged. Use the bracket pair &quot;\[&quot;, &quot;\]&quot; instead.) http://stackoverflow.com/questions/349198/which-are-your-favorite-programming-language-gadgets/349376#349376 Comment by Hudson on Which are your favorite programming language gadgets? Hudson 2009-01-07T15:16:04Z 2009-01-07T15:16:04Z There is an extra $x in the last example. http://stackoverflow.com/questions/367309/which-command-line-commands-style-do-you-prefer/367374#367374 Comment by Hudson on Which command line commands style do you prefer? Hudson 2009-01-06T01:40:39Z 2009-01-06T01:40:39Z Uhm, I'll go practice my reading comprehension skills. Sorry about that. http://stackoverflow.com/questions/412184/code-golf-diffie-hellman-key-exchange/412956#412956 Comment by Hudson on Code golf: Diffie-Hellman key exchange Hudson 2009-01-05T13:13:38Z 2009-01-05T13:13:38Z One problem with this solution is that this will take a very, very long time if h is large. For cryptographic security, h will have on the order of 1024 bits. I'll update the question to include this detail. http://stackoverflow.com/questions/412184/code-golf-diffie-hellman-key-exchange/412254#412254 Comment by Hudson on Code golf: Diffie-Hellman key exchange Hudson 2009-01-05T13:11:36Z 2009-01-05T13:11:36Z Perhaps it is like the factorial golf problem: <a href="http://stackoverflow.com/questions/237496/code-golf-factorials" rel="nofollow" title="code golf factorials">stackoverflow.com/questions/237496/&hellip;</a> APL won with the very concise '?!' program, which is hard to beat in any other language. http://stackoverflow.com/questions/367309/which-command-line-commands-style-do-you-prefer/367374#367374 Comment by Hudson on Which command line commands style do you prefer? Hudson 2009-01-05T02:39:38Z 2009-01-05T02:39:38Z You should probably also mention -- as the indication of the end of any options and the beginning of the non-option arguments. http://stackoverflow.com/questions/407518/code-golf-leibniz-formula-for-pi/407723#407723 Comment by Hudson on Code Golf: Leibniz formula for Pi Hudson 2009-01-03T18:25:19Z 2009-01-03T18:25:19Z It is longer, but slightly less readable based on dweeves rearranging: $/++;$\+=8/$//($/+2),$/+=4for$/..1e6;print