Eric Johnson
Eric Johnson
Not sure if I've assigned this to the right person to review. I'm upgrading our Perl modules and I'm upgrading Perl. One of the things I'm doing is making sure...
``` $ perl -d:Confess local/bin/statocles create yourmom.com ... What branch? [master] Failed to find share dir for dist 'Statocles' at /home/eric/.anyenv/envs/plenv/versions/5.19.11/lib/perl5/site_perl/5.19.11/File/ShareDir.pm line 173. File::ShareDir::dist_dir("Statocles") called at local/lib/perl5/File/Share.pm line 37 File::Share::dist_dir("Statocles")...
# The problem You can't set a breakpoint in Perl unless the file has been loaded by the debugger. If you're code dynamically loads libraries, and you try to set...
https://metacpan.org/module/DB
The Perl debugger can't set a breakpoint in a dynamically loaded library until after it has loaded. This means you can't simply place a breakpoint anywhere you like. You will...
https://metacpan.org/module/Reflex
Inventing my own protocol was dumb. And communication over raw sockets was dumb. I probably should have a plack web server communicate with http.
This looks interesting. Any advantages? Mature enough? https://github.com/rocky/Perl-Devel-Trepan
Here is an example from the [rfc](http://tools.ietf.org/search/rfc6350#section-6.2.4): ``` PHOTO:data:image/jpeg;base64,MIICajCCAdOgAwIBAgICBEUwDQYJKoZIhv AQEEBQAwdzELMAkGA1UEBhMCVVMxLDAqBgNVBAoTI05ldHNjYXBlIENvb ljYXRpb25zIENvcnBvcmF0aW9uMRwwGgYDVQQLExNJbmZvcm1hdGlv ... ``` The fix will require changes to Text::vCard