From d514585bbb54482ee62070bc86a7447a657afaee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Thu, 6 May 2021 14:30:32 +0200 Subject: First commit --- src/index.html | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/style.css | 40 ++++++++++++++++++++++++++++++++ 2 files changed, 113 insertions(+) create mode 100644 src/index.html create mode 100644 src/style.css (limited to 'src') diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..679f9d2 --- /dev/null +++ b/src/index.html @@ -0,0 +1,73 @@ + + + + +Perl is Dead + + + + +

Perl is Dead?

+ +

+"Perl is dead" is an urban legend and conspiracy theory alleging +that famous programming language Perl, created by Larry Wall, died +on 19 July 2000 and was secretly replaced by a whitespace-sensitive +look-alike. The rumour began circulating around 2000, but grew in +popularity after being reported on American news site Slashdot in +2005. Proponents based the theory on perceived clues found in Wall +speeches and Perl book covers. Clue-hunting proved infectious, and +within a few weeks had become an international phenomenon. +(paraphrased from Wikipedia…) + +

+
+.run benchmark
+
+
+ +

+Jokes aside, Perl is not dead. +It is still an excellent choice for a host of applications. +It still has – by far – the fastest startup time among +all its competitors, as you can see in the figure to the right. +Every millisecond counts if you're building a command-line utility. + +

+Furthermore, the language and its community continues to evolve +into the 2020s. Below is a summary of the recent activity of various +Perl forums as of +.eval print scalar localtime, ".\n"; + +

+

Latest messages on the perl5-porters mailing list

+.run p5p +
+ +
+

Latest articles on blogs.perl.org

+.run blogs +
+ +
+

Latest posts on the /r/perl subreddit

+.run reddit +
+ +
+

Latest messages on the #perl IRC channel

+.run irc +
+ +
+

Latest nodes on PerlMonks

+.run perlmonks +
+ +
+

Latest uploads to CPAN

+.run cpan +
+ + + diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..f02e3f0 --- /dev/null +++ b/src/style.css @@ -0,0 +1,40 @@ +body { + font: 16px/1.4 Arial, Helvetica, sans-serif; + width: 600px; + margin: 0 auto; + padding: 0 1em; +} + +h1, h2, h3, h4, h5, h6 { + font-family: "Times New Roman", Times, serif; +} + +pre, code, tt { + font-size: 14px; +} + +h1#title { + text-align: center; +} + +p.intro { + font-size: 18px; + color: #d00; + margin: 0 1.8em; + text-align: justify; +} +p.intro cite { + font-size: 14px; + color: black; + opacity: 0.8; + font-style: normal; +} + +.box { + border: 1px dashed #ccc; + padding: 0 1em; + margin: 1em 0; +} +.box h2 { + font-size: 18px; +} -- cgit v1.2.3