diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2013-12-10 21:03:11 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2013-12-10 21:03:11 -0800 |
| commit | 762d9da255862a0ade58a36f67098d1ceef1bcce (patch) | |
| tree | e159548d5b9bcd041946f6d5d31b958c04135826 /_posts | |
| parent | Cleanup the index (remove whitespace) (diff) | |
| download | lumberjaph-762d9da255862a0ade58a36f67098d1ceef1bcce.tar.gz | |
Add some links to bitbucket.
Diffstat (limited to '')
4 files changed, 5 insertions, 6 deletions
diff --git a/_posts/2009-04-28-a-simple-feed-aggregator-with-modern-perl-part-2.md b/_posts/2009-04-28-a-simple-feed-aggregator-with-modern-perl-part-2.md index b63e27e..d48d630 100644 --- a/_posts/2009-04-28-a-simple-feed-aggregator-with-modern-perl-part-2.md +++ b/_posts/2009-04-28-a-simple-feed-aggregator-with-modern-perl-part-2.md @@ -246,6 +246,6 @@ And it's done :) We got a really basic aggregator now. If you want to improve th big thanks to [tea](http://bunniesincyberspace.wordpress.com/) and [blob](http://code.google.com/p/tinyaml/) for reviewing and fixing my broken english in the first 2 parts. -[The code is available on GitHub](http://github.com/franckcuny/ironman-myaggregator/tree/master) +[The code is available on Bitbucket](https://bitbucket.org/franckcuny/ironman-myaggregator). Part 3 and 4 next week. diff --git a/_posts/2009-05-06-a-simple-feed-aggregator-with-modern-perl-part-3.md b/_posts/2009-05-06-a-simple-feed-aggregator-with-modern-perl-part-3.md index 5f66675..7fc0a92 100644 --- a/_posts/2009-05-06-a-simple-feed-aggregator-with-modern-perl-part-3.md +++ b/_posts/2009-05-06-a-simple-feed-aggregator-with-modern-perl-part-3.md @@ -13,7 +13,7 @@ We have two things to test: ### Roles -For this, we create the following files: +For this, we create the following files: * t/tests/Test/TestObject.pm * t/tests/Test/MyRoles.pm @@ -256,4 +256,4 @@ Files=1, Tests=9, 3 wallclock secs ( 0.01 usr 0.01 sys + 1.39 cusr 0.12 csys Result: PASS {% endhighlight %} -We have our tests, so next step is the Catalyst frontend. As for the precedents parts, [the code is available on GitHub](http://github.com/franckcuny/ironman-myaggregator/tree/master) +We have our tests, so next step is the Catalyst frontend. As for the precedents parts, [the code is available on Bitbucket](https://bitbucket.org/franckcuny/ironman-myaggregator). diff --git a/_posts/2009-05-13-a-simple-feed-aggregator-with-modern-perl-part-4.md b/_posts/2009-05-13-a-simple-feed-aggregator-with-modern-perl-part-4.md index 2d3cca7..3ce8e2e 100644 --- a/_posts/2009-05-13-a-simple-feed-aggregator-with-modern-perl-part-4.md +++ b/_posts/2009-05-13-a-simple-feed-aggregator-with-modern-perl-part-4.md @@ -182,4 +182,4 @@ If you point your browser to an entry (something like **http://localhost:3000/en Et voila, we are done with a really basic feed reader. You can add methods to add or delete feed, mark an entry as read, ... -[The code is available on GitHub](http://github.com/franckcuny/ironman-myfeedreader/tree/master) +[The code is available on Bitbucket](https://bitbucket.org/franckcuny/ironman-myfeedreader). diff --git a/_posts/2009-06-30-private-and-protected-methods-with-moose.md b/_posts/2009-06-30-private-and-protected-methods-with-moose.md index fe098f7..601010a 100644 --- a/_posts/2009-06-30-private-and-protected-methods-with-moose.md +++ b/_posts/2009-06-30-private-and-protected-methods-with-moose.md @@ -5,7 +5,7 @@ title: Private and protected methods with Moose --- Yesterday, one of our interns asked me a question about private method in <a href="http://www.iinteractive.com/moose/">Moose</a>. I told him that for Moose as for Perl, there is no such things as private method. By convention, methods prefixed with '_' are considered private. -But I was curious to see if it would be something complicated to implement in Moose. First, I've started to look at how the 'augment' keyword is done. I've then hacked Moose directly to add the private keyword. After asking advice to <a href="http://blog.woobling.org/">nothingmuch</a>, he recommended me that I implement this in a MooseX::* module instead. The result is <a href="http://github.com/franckcuny/MooseX--MethodPrivate/tree/master">here</a>. +But I was curious to see if it would be something complicated to implement in Moose. First, I've started to look at how the 'augment' keyword is done. I've then hacked Moose directly to add the private keyword. After asking advice to <a href="http://blog.woobling.org/">nothingmuch</a>, he recommended me that I implement this in a MooseX::* module instead. The result is <a href="https://bitbucket.org/franckcuny/moosex-methodprivate">here</a>. From the synopsis, MooseX::MethodPrivate do: @@ -45,4 +45,3 @@ done was this: {% endhighlight %} and write the `private` and `protected` sub. I'm sure there is some stuff I can do to improve this, but for a first test, I'm happy with the result and still amazed how easy it was to add this two keywords. - |
