User Hudson - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T11:32:04Zhttp://stackoverflow.com/feeds/user/14105http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359764/splitting-gpg-encrypted-messages-into-packets0Splitting GPG encrypted messages into packets?Hudson2008-12-11T15:42:43Z2009-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#4472381Answer by Hudson for Web pages to print media -- solutions?Hudson2009-01-15T15:42:07Z2009-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 <math> 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#4254220Answer by Hudson for Bash Shell - What is equivalent of DOS shell F8 ?Hudson2009-01-08T18:59:30Z2009-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-exchange0Code golf: Diffie-Hellman key exchangeHudson2009-01-05T03:00:47Z2009-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<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#4081191Answer by Hudson for Code Golf: How do I write the shortest character mapping program?Hudson2009-01-02T21:52:18Z2009-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#4079577Answer by Hudson for Code Golf: FactorialsHudson2009-01-02T20:37:45Z2009-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 <iostream>
template <int N>
struct Factorial
{
enum { value = N * Factorial<N - 1>::value };
};
template <>
struct Factorial<0>
{
enum { value = 1 };
};
int main()
{
std::cout << "4!=" << Factorial<4>::value << 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#4041791Answer by Hudson for Recommended anecdotal/history book(s) on programming in the 60s and 70sHudson2008-12-31T22:37:41Z2008-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&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#3471510Answer by Hudson for Project files in repositoryHudson2008-12-07T02:54:59Z2008-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#3967732Answer by Hudson for UDP Broadcast or IP Multicast?Hudson2008-12-28T22:27:48Z2008-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#34717212Answer by Hudson for Should I use PHP or Perl for massaging my data and storing/retrieving it with MySQL?Hudson2008-12-07T03:15:17Z2008-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#3836491Answer by Hudson for Code Golf: Print the entire "12 Days of Christmas" song in the fewest lines of code.Hudson2008-12-20T19:27:15Z2008-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/,<<"";
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=<DATA>;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#3602614Answer by Hudson for How do I skip to a specific input line in Perl?Hudson2008-12-11T17:51:41Z2008-12-11T18:50:23Z<p><code><></code> is only magic in a <code>while(<>)</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>$_ = <> until /include/;
</code></pre>
<p>To avoid the warning:</p>
<pre><code>while(<>)
{
last if /include/;
}
</code></pre>
http://stackoverflow.com/questions/356763/how-can-i-reformat-messages-in-an-mbox-file-with-bash-or-perl/356871#3568716Answer by Hudson for How can I reformat messages in an mbox file with bash or Perl?Hudson2008-12-10T17:25:37Z2008-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->new(
access => 'r',
);
my $folder = $mgr->open( folder => $file )
or die "$file: Unable to open: $!\n";
for my $msg ($folder->messages)
{
my $to = join( ', ', map { $_->format } $msg->to );
my $from = join( ', ', map { $_->format } $msg->from );
my $date = localtime( $msg->timestamp );
my $subject = $msg->subject;
my $body = $msg->body;
# Strip all quoted text
$body =~ s/^>.*$//msg;
print <<"";
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#3518442Answer by Hudson for Free Computer Science TextbooksHudson2008-12-09T05:05:58Z2008-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#3471651Answer by Hudson for What does the Perl substitution operator act on?Hudson2008-12-07T03:07:58Z2008-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#3420810Answer by Hudson for A simple way to send mails from a C application on UnixHudson2008-12-04T21:10:51Z2008-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->new();
$mailer->open({
From => $from_address,
To => $to_address,
Subject => $subject,
}) or die "Can’t open: $!\n";
print $mailer $body;
$mailer->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#3416070Answer by Hudson for How do I find which file Perl loaded when I use a module?Hudson2008-12-04T18:22:50Z2008-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 => 1, Modules => [ @ARGV ] ) )' \
list-of-modules-to-locate
</code></pre>
http://stackoverflow.com/questions/765228/32bit-int-32bit-int-64-bit-int/765230#765230Comment by Hudson on 32bit int * 32bit int = 64 bit int?Hudson2009-04-19T16:25:59Z2009-04-19T16:25:59ZWhat are int32 and int64? Are they supposed to be like int32_t and int64_t from <stdint.h>?http://stackoverflow.com/questions/453432/difference-in-initalizing-and-zeroing-an-array-in-c-c/453616#453616Comment by Hudson on Difference in initalizing and zeroing an array in c/c++ ?Hudson2009-01-18T14:44:30Z2009-01-18T14:44:30ZThat 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#160646Comment by Hudson on Why do we still program with flat files?Hudson2009-01-16T16:47:51Z2009-01-16T16:47:51ZAnd 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#444293Comment by Hudson on Revision control locking: Is the jury still out?Hudson2009-01-14T23:42:26Z2009-01-14T23:42:26ZYou 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#433066Comment by Hudson on Significant new inventions in computing since 1980Hudson2009-01-11T22:45:58Z2009-01-11T22:45:58ZSome 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#433204Comment by Hudson on Significant new inventions in computing since 1980Hudson2009-01-11T22:39:53Z2009-01-11T22:39:53ZVirtualization was implemented on VM/CMS in 1972. What do you mean by "the modular PC"?http://stackoverflow.com/questions/431719/why-is-it-impossible-to-implement-garbage-collection-in-c-because-of-weak-typin/431724#431724Comment by Hudson on Why is it "impossible" to implement garbage collection in C because of weak typing?Hudson2009-01-11T00:09:07Z2009-01-11T00:09:07ZMinor 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#218506Comment by Hudson on Best practices in LaTeXHudson2009-01-09T22:55:18Z2009-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#218506Comment by Hudson on Best practices in LaTeXHudson2009-01-09T22:54:35Z2009-01-09T22:54:35ZFrom LaTeX FAQ: While the double dollar sign (still) works in LaTeX, it is not part of the "official" LaTeX command set (in fact, most books on LaTeX don't even mention it) and its use is discouraged. Use the bracket pair "\[", "\]" instead.)http://stackoverflow.com/questions/349198/which-are-your-favorite-programming-language-gadgets/349376#349376Comment by Hudson on Which are your favorite programming language gadgets?Hudson2009-01-07T15:16:04Z2009-01-07T15:16:04ZThere is an extra $x in the last example.http://stackoverflow.com/questions/367309/which-command-line-commands-style-do-you-prefer/367374#367374Comment by Hudson on Which command line commands style do you prefer?Hudson2009-01-06T01:40:39Z2009-01-06T01:40:39ZUhm, I'll go practice my reading comprehension skills. Sorry about that.http://stackoverflow.com/questions/412184/code-golf-diffie-hellman-key-exchange/412956#412956Comment by Hudson on Code golf: Diffie-Hellman key exchangeHudson2009-01-05T13:13:38Z2009-01-05T13:13:38ZOne 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#412254Comment by Hudson on Code golf: Diffie-Hellman key exchangeHudson2009-01-05T13:11:36Z2009-01-05T13:11:36ZPerhaps 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/…</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#367374Comment by Hudson on Which command line commands style do you prefer?Hudson2009-01-05T02:39:38Z2009-01-05T02:39:38ZYou 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#407723Comment by Hudson on Code Golf: Leibniz formula for PiHudson2009-01-03T18:25:19Z2009-01-03T18:25:19ZIt is longer, but slightly less readable based on dweeves rearranging: $/++;$\+=8/$//($/+2),$/+=4for$/..1e6;print