enlightened perl organisation

enlightened |en'litnd|: adjective:
having or showing a rational, modern, and well-informed outlook

  

Planet Perl Iron Man

signup banner
Join the program |  Learn about the program |  Report a problem

Only showing posts tagged "perl", "cpan" or "ironman" (or containing those words).

Older posts >
JT Smith: Posted Why my()? to JT Smith
Bruce Gray will give a talk at YAPC::NA 2012 described as: Why do you use “my” instead of “our”? When should you use “our”? Why not “use vars”? Why does `use strict` catch “$typo”, but not “$Data::Dumper::typo”? Why do *you*...
YAPC 2012: Why my()?

Bruce Gray will give a talk at YAPC::NA 2012 described as:

Why do you use “my” instead of “our”? When should you use “our”? Why not “use vars”?

Why does `use strict` catch “$typo”, but not “$Data::Dumper::typo”?

Why do *you* need to care about namespace [...]

Alexandr Alexeev (afiskon): Perl-скрипт для уведомления о новых письмах
Некоторое время назад мне захотелось очень простой вещи — чтобы при получении новой электронной почты где-то в углу экрана появлялось уведомление об этом. Притом мне нужны были только уведомления, а не полноценный почтовый клиент, поскольку почту я п [...]
Leonard: extreme Programmers
If you ever wanted to consider some bad@$$ programmers consider the developers that wrote the software for the apollo guidance computer.I recently found a claim that my new favorite microcontroller is faster than the Apollo computers.It turns ou [...]
chromatic: Time Will Tell
The May 2012 Dr. Dobb's interview with Ward Cunningham has an interesting quote about Ward's notion of technical debt: I was really devoted to finding great code, especially when objects were new. Objects gave us an extra dimension beyond functional [...]
geistteufel: Perl MooX::Options v1.4 release

I have release v1.4 of MooX::Options. This is a module to easy create command line tools using your favorite object maker system. It work with Mo, Moo, Mouse, Moose and any kind of object maker.

Ex:

package MyCmdLineTools;
use Moo;
use MooX::Options [...]
Herbert Breunung: 8th Week of Perl 6 Tablets
This might be the last entry about the perl 6 tablets for a longer time. (lot of projects and articles have to be written soon and the moose article for heise sits on the brink and no article from me...
Sebastian Willing: Happy Birthday myself!
Dieser Artikel ist etwas besonderes. This post is something really special. Er ist nicht besonders lang, interessant oder schön geschrieben, aber trotzdem einmalig. It isn’t the longst, most interesting or best written post, but it’s very unique. Es [...]
JT Smith: Posted Mojito Undocumented to JT Smith
Mateu Hunter will give a talk at YAPC::NA 2012 described as: This talk will walk through some of the major features of Mojito, a web document system, that have not yet been documented: nested formatters (markdown, POD, HTML etc) document...
Toby Corkindale: First steps with Perl on the BeagleBone
Today I received a BeagleBone A5, which is a very small board containing a 720 MHz ARM CPU and 256 MB of RAM, among other things.

The first step was to start flashing the built-in LEDs via a Perl script..
I found a script on another site (http://www.im [...]
YAPC 2012: Mojito Undocumented

Mateu Hunter will give a talk at YAPC::NA 2012 described as:

This talk will walk through some of the major features of Mojito, a web document system, that have not yet been documented:

  • nested formatters (markdown, POD, HTML etc)
  • document collections (gr [...]
miguel prz (niceperl): (iv) MetaCPAN favourites weekly report
This is the weekly favourites list of CPAN distributions. Votes count: 83
Build date: 2012/05/15 20:26:53 GMT

Clicked for first time:
Yanick Champoux (yanick): Easy text/html multipart emails with Email::Simple::Markdown

These days, to craft basic emails, I go with Email::Simple. For the more heavy stuff with attachements and what-nots, I reach out for Email::MIME. Together, they make a pretty awesome duo. But... (come on, admit it, you knew there was going to be a [...]

fREW Schmidt (fREW): Using search.cpan.org AND metacpan
I appreciate the effort and openness of metacpan, but their search is still pretty bad. To be clear, compare the results of the search for DBIx:Class::Source on SCO and metacpan. That’s why I made the following greasemonkey/dotjs script: 123456$('a [...]
fREW Schmidt (fREW): Using search.cpan.org AND metacpan
I appreciate the effort and openness of metacpan, but their search is still pretty bad. To be clear, compare the results of the search for DBIx:Class::Source on SCO and metacpan. That’s why I made the following greasemonkey/dotjs script: 123456$('a [...]
perlcodesample: Perlは構文がC言語、Java、PHP、JavaScriptに似ていて親しみやすいスクリプト言語

 Perlの文法構造は独特なものではなくて、多く利用されている言語であるC言語、Java、PHP、JavaScriptに似ていて親しみやすいものになっています。何かを美しい、美しい、素晴らしいというのが好きな人もいますけれど、似ているほうが使いやすいという人もいますね。

if文

 おなじみのif文。ブロックで区切られているので、周囲の行と区別しやすい感覚がありますね。

# Perl, C, Java, PHP, JavaScript
if (条件) {

}

while文

while文はどうでしょうか。こ [...]

Sebastian Willing: Setting up Gearman
I recently announced an article about Gearman, today I’ld like to start with setting up a Gearman dispatcher server. Being a great tool, Gearman still lacks a complete documentation and the server software is no exception. It’s very easy to set up bu [...]
David E. Wheeler (Theory): Use of DBI in Sqitch

Sqitch uses the native database client applications (psql, sqlite3, mysql, etc.). So for tracking metadata about the state of deployments, I have been trying to stick to using them. I’m first targeting PostgreSQL, and as a result need to open a [...]

JT Smith: Posted Data::Printer - A New Look on Dumping Variables to JT Smith
Brenno de Oliveira will give a talk at YAPC::NA 2012 described as: Data::Printer is a simple and powerful solution to viewing your complex Perl data structures. Contrary to Data::Dumper and similars which stringify your data in a restrictive way so [...]
Dominic Humphries (djh): Open URLs from the CLI

Despite the rise of bulletin boards, social media, wikis, and god knows what other means of communication the Web has given rise to, programmers still rely heavily on Old Faithful: IRC.

Personally, I tend to be logged on to over a dozen channels at an [...]

Emmanuel Di Pretoro: Faire une copie des fichiers produits par DBIx::Class::Schema::Loader
DBIx::Class::Schema::Loader est un module qui permet de générer automatiquement un schéma DBIx::Class::Schema à partir d'une base de données. C'est donc l'outil indispensable si vous avez une base de données sous la main que vous voulez manipuler à p [...]
Older posts >