diff options
| author | Franck Cuny <franck.cuny@gmail.com> | 2013-12-31 22:33:13 -0800 |
|---|---|---|
| committer | Franck Cuny <franck.cuny@gmail.com> | 2013-12-31 22:33:13 -0800 |
| commit | 8f0efa1c9e8d38ef47f45900b4ae824473448576 (patch) | |
| tree | acb4e01231fff1464242534904d88353aad26435 | |
| parent | Change location for publication (diff) | |
| download | lumberjaph-8f0efa1c9e8d38ef47f45900b4ae824473448576.tar.gz | |
Fix links for git repositories.
Diffstat (limited to '')
8 files changed, 8 insertions, 9 deletions
diff --git a/_posts/2009-04-27-a-simple-feed-aggregator-with-modern-perl-part-1.md b/_posts/2009-04-27-a-simple-feed-aggregator-with-modern-perl-part-1.md index 9cda369..23e958e 100644 --- a/_posts/2009-04-27-a-simple-feed-aggregator-with-modern-perl-part-1.md +++ b/_posts/2009-04-27-a-simple-feed-aggregator-with-modern-perl-part-1.md @@ -11,7 +11,7 @@ Following [Matt's post](http://www.shadowcat.co.uk/blog/matt-s-trout/iron-man/) * the third one will be about writing tests with **Test::Class** * the last one will focus on **Catalyst** -The code of these modules will be available on [my Bitbucket account](https://bitbucket.org/franckcuny/) at the same time each article is published. +The code of these modules will be available on [my git server](http://git.lumberjaph.net/) at the same time each article is published. > I'm not showing you how to write the perfect feed aggregator. The purpose of this series of articles is only to show you how to write a simple aggregator using modern Perl. @@ -132,6 +132,6 @@ This script will deploy for you the schema (you need to create the database firs Executing the following command `perl bin/deploy_mymodel.pl --dsn dbi:SQLite:model.db` will generate a **model.db** database so we can work and test it. Now that we got our (really) simple **MyModel** schema, we can start to hack on our aggregator. -[The code is available on Bitbucket](https://bitbucket.org/franckcuny/ironman-mymodel/overview). +[The code is available on my git server](http://git.lumberjaph.net/p5-ironman-mymodel.git/). > while using **DBIx::Class**, you may want to take a look at the generated queries. For this, export `DBIC_TRACE=1` in your environment, and the queries will be printed on STDERR. 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 d48d630..059b222 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 Bitbucket](https://bitbucket.org/franckcuny/ironman-myaggregator). +[The code is available on git server](http://git.lumberjaph.net/p5-ironman-myaggregator.git/). 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 7fc0a92..ab26ca8 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 @@ -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 Bitbucket](https://bitbucket.org/franckcuny/ironman-myaggregator). +We have our tests, so next step is the Catalyst frontend. As for the precedents parts, [the code is available on my git server](http://git.lumberjaph.net/p5-ironman-myaggregator.git/). 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 3ce8e2e..47c537f 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 Bitbucket](https://bitbucket.org/franckcuny/ironman-myfeedreader). +[The code is available on my git server](http://git.lumberjaph.net/p5-ironman-myfeedreader.git/). diff --git a/_posts/2009-05-30-catalystx-dispatcher-asgraph.md b/_posts/2009-05-30-catalystx-dispatcher-asgraph.md index 89591e1..c85843a 100644 --- a/_posts/2009-05-30-catalystx-dispatcher-asgraph.md +++ b/_posts/2009-05-30-catalystx-dispatcher-asgraph.md @@ -22,6 +22,6 @@ $graph->run; print $graph->graph->as_txt; {% endhighlight %} -The code is on [Bitbucket](https://bitbucket.org/franckcuny/catalystx-dispatcher-asgraph) for the moment. +The code is on [my git server](http://git.lumberjaph.net/p5-catalystx-dispatcher-asgraph.git/) for the moment. For thoses who are interested by visualization, I'll publish soon some (at least I think) really nice visualisations about CPAN, Perl, and his community, that we have created at [$work](http://rtgi.fr). 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 601010a..a47e8b0 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="https://bitbucket.org/franckcuny/moosex-methodprivate">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="http://git.lumberjaph.net/p5-moosex-methodprivate.git/">here</a>. From the synopsis, MooseX::MethodPrivate do: diff --git a/_posts/2011-02-20-psgichrome.md b/_posts/2011-02-20-psgichrome.md index 708839a..7947c81 100644 --- a/_posts/2011-02-20-psgichrome.md +++ b/_posts/2011-02-20-psgichrome.md @@ -12,7 +12,7 @@ Let's mimic their page. ## Installation -1. install [Plack::Middleware::ConsoleLogger](http://search.cpan.org/perldoc?Plack::Middleware::ConsoleLogger) (`cpanm Plack::Middleware::ConsoleLogger`) +1. install [Plack::Middleware::ConsoleLogger](http://search.cpan.org/perldoc?Plack::Middleware::ConsoleLogger) with `cpanm Plack::Middleware::ConsoleLogger` 2. no step 2 3. no step 3 4. write a simple PSGI application and log @@ -15,7 +15,6 @@ At the moment I'm especially interested in functional programming. When I write You can find me on a variety of social web sites: -* [Bitbucket](https://bitbucket.org/franckcuny) * [Twitter](https://twitter.com/franckcuny) * [GitHub](https://github.com/franckcuny) |
