clpm
is designed to make managing sets of files easier at the Unix command line. It's free and open source. Please view the demo here. Find more info at http://tinypig.com/clpmSaturday, January 31, 2015
Command Line Project Manager (clpm) v1.0.1 released
Sunday, January 18, 2015
Call for help with open source project "CLPM"
CLPM is my “Command Line Project Manager”. It’s a tool I wrote and have been using myself for several years now, and I am releasing it in the hope that others might find it useful.
Also, if you have been looking for an open source project to contribute to, here’s your chance! I don’t care what your level of experience is, if you think you have a useful comment or contribution, I’d like to hear from you!
There is a Todo section in the README, but I want to add a couple notes here:
- It’s currently not packaged, nor does it have an installer. This probably makes it much less likely to be adopted.
- I’m not sure how to promote it to make sure its audience (developers/sysadmins maybe) at least get a chance to see it, even if it ends up that it’s useful to nobody but me.
Thursday, January 08, 2015
CPAN Pull Request Challenge: The Pull Request
In my last report, I had received an ok from the module’s author to proceed with a pull request. The first thing I did, as I had with the modules referenced by Devel::StackTrace::WithLexicals
, is to write an example for myself so I could see how it worked. Working from the synopsis, I had a difficult time writing a working piece of code. It occurred to me that this was the very place I could start with a Pull Request.
Since the module’s functionality combines that of two other modules (Devel::StackTrace
and PadWalker
), I wrote a working example showing both sets of functionality: specifically, the ability to walk back through the stack and the ability to read and modify a previous frame’s lexical variables.
Since I had not yet specified my area of focus to the author, I send him another email including the synopsis I had written and asked him for his thoughts on my changes. He liked them but asked that I replace my foo
s and bar
s with more realistic names. I had thought that foo
and bar
kept out of the way so that only the module’s functionality was on display, but he’s right: although the fake variable names do stay out of the way, they provide zero context for the user to become oriented while going through the code. I decided to use a problem domain that should be familiar to many developers: the shopping cart. Here’s the synopsis I ended up with:
use Devel::StackTrace::WithLexicals; sub process_user { my $item_count = 20; price_items(); print "$item_count\n"; # prints 21 } sub price_items { my $trace = Devel::StackTrace::WithLexicals->new( unsafe_ref_capture => 1 # warning: can cause memory leak ); while ( my $frame = $trace->next_frame() ) { my $item_count_ref = $frame->lexical('$item_count'); ${$item_count_ref}++ if ref $item_count_ref eq 'SCALAR'; } } process_user();
I followed this excellent step-by-step guide on submitting a Pull Request and just a little while later it was approved!
Afterward I found this well-written post about having a good synopsis. What I had written conformed pretty well with the suggestions.
I had never done a pull request before this. There have been a couple times I contacted authors in the past to point out a bug or add a function, but most of the time I have not been an active participant.
Why?
I am often busy with my own projects. Lately, I have tried to get more involved in the community. Much of this inspiration has come from the company I work for now, OmniTI, whose philosophy is very pro-open-source, speaking, contributing, etc. (side note - we’re hiring!)
I can still be painfully shy. It sounds childish to put it in those terms, but it’s also accurate. It is difficult for me to “put myself out there” sometimes even if just in the form of an email.
I had no idea where to start. This sounds like a cop-out, and in some ways it is, but I can honestly say I’ve spent hours looking around at different open source projects and not really found any place it looked like I could help.
But my shortcomings illustrate some of the things that make the CPAN Pull Request Challenge such a great project.
It’s got a time-sensitive feel to it. It has dates attached to it, so feels like something you need to focus on now.
It gave me an authority to point to when reaching out. Author: I’m contacting you not because I personally felt there was anything wrong with your module, but rather because this challenge told me to. So don’t be mad at me! :)
It gave me a starting point. Being assigned a module is much more focused than having someone just say “Hey - contribute to something!” Now I could still have been bogged down in “what exactly do I contribute to in this module” but the challenge comes with tons of ideas on things to look at as well. Failing that, there’s always “Kwalitee”.
So, thank you, Neil Bowers - both for being a positive influence on the Perl and open source communities, and for helping me get out of my shell a bit.
Friday, January 02, 2015
My First Day on the CPAN Pull Request Challenge
So yesterday, I started on the CPAN Pull Request Challenge. I was assigned the module
Devel::StackTrace::WithLexicals
, so, I read the doc and installed it.The doc references two other modules’ influence:
Devel::StackTrace
and PadWalker
So I figured I’d have a look at those first. Combining two examples from the doc for
Devel::StackTrace
, I wrote this:#!/usr/bin/perl use strict; use warnings; use Devel::StackTrace; sub foo { bar(@_,1234); } sub bar { my $trace = Devel::StackTrace->new(); print $trace->as_string(); # like carp } foo('bing');
Which gave me this:
$ ./d.pl
Trace begun at d.pl line 13
main::bar('bing', 1234) called at d.pl line 9
main::foo('bing') called at d.pl line 17
Neat!
Next I looked at the doc for
PadWalker
. Based on the example provided, I wrote:#!/usr/bin/perl use strict; use warnings; use PadWalker qw(peek_my); sub foo { my $abc = 123; bar(); print "magic! $abc\n"; } sub bar { my $h = peek_my(1); ${$h->{'$abc'}}++; } foo();
Which yields:
$ ./e.pl
magic! 124
So
bar()
increments foo()
’s lexical variable $abc
. What kind of witchcraft is this?!?These are both very interesting modules. Changing lexicals from another scope defeats the purpose of a lexical, but as the doc points out, it can be useful for debugging purposes.
I reviewed the documentation for
Devel::StackTrace::WithLexicals
and the code, both of which can be viewed online at meta::cpan. In the left column are the links “Source (raw)” and “Browse (raw)” which are both handy to use when viewing the source.Nothing immediately jumped out at me after reviewing the pull request ideas so I decided to contact the author to see if he had anything specific he’d like to see done. The author’s contact info is usually provided in the Author section of the documentation.
This is the email I sent:
Hello!
I have volunteered in the CPAN Pull Request Challenge
and have been assigned your module Devel::StackTrace::WithLexicals to
contribute to if possible.
Ideas include, but aren't limited to:
http://neilb.org/2014/12/31/pr-ideas.html
I'd like to know if you are receptive to contributions to this module and if
you had any particular needs or wishes. I am willing to contribute with any
aspect (features, bugs, testing, documentation, etc.) If you are ok with
contributions (pending your approval of course) but you don't have anything
specific in mind, I will review the PR Ideas list myself and see if I can find
a way to contribute.
Thank you,
David M. Bradford
http://tinypig.com
This morning I received a positive response from the author. Time to get to work!