knightcrusader | 2 years ago | on: Perl 5.38
knightcrusader's comments
knightcrusader | 2 years ago | on: Perl 5.38
However, if you are saying no one should use CGI.pm, then I agree. That module is a bloated mess. Much more efficient ways to use CGI without that thing.
knightcrusader | 2 years ago | on: Perl 5.38
All I need is magic structs with methods and that provides it. Throw in a constant array of properties and an AUTOLOAD, and you have accessors if you need it.
knightcrusader | 2 years ago | on: Ask HN: What are some of the most elegant codebases in your favorite language?
I usually end up always wrapping the json_decode in an eval to catch the error and handle it in an easier to understand fashion.
But I agree though, its nice how json and perl data objects pretty much map to each other. It's great.
knightcrusader | 4 years ago | on: The four noisy horsemen of Perl hate
my $house = shift;
my $color = shift // GetDefaultHouseColor();
Also, CPAN is considered one of Perl's strengths. How did CPAN cause Perl to burn out?