1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
|
# PODNAME: Moose::Manual::Resources
# ABSTRACT: Links to various tutorials, videos, blogs, presentations, interviews, etc...
__END__
=pod
=encoding UTF-8
=head1 NAME
Moose::Manual::Resources - Links to various tutorials, videos, blogs, presentations, interviews, etc...
=head1 VERSION
version 2.1405
=head1 Resources
This section is an attempt to collect and list some of the many Moose resources that can be found online. Additional information can be found at http://moose.perl.org/
=head2 Videos
=over 4
=item
A new object system for the Perl 5 core, Stevan Little
L<https://www.youtube.com/watch?v=Gf0O6Ct7V1s>
=item
Stevan Little interviewed by Gabor Szabo for PerlMaven.com
L<https://www.youtube.com/watch?v=shu-bVimOpM>
=item
Perl 6 OO vs. Moose, Herbert Breunung
L<https://www.youtube.com/watch?v=Boh3109HVLo>
=item
Introduction To Moose, Mike Whitaker
L<https://www.youtube.com/watch?v=YVtqa6zWXqY>
=item
"Dr. Strange... Moose or: How I Learned to Stop Worrying and Love Perl"
L<https://www.youtube.com/watch?v=PNFiIU8S-7g>
=item
Evolving Software with Moose, Dave Cross
L<https://www.youtube.com/watch?v=BIMREkoPYKA>
=item
Testing with Test::Class::Moose, Curtis Poe
L<https://www.youtube.com/watch?v=kUHI1iRrfF4>
=item
"Moose is Perl" tutorial, OSCON 2014, Ricardo Signes
L<https://www.youtube.com/watch?v=LKXvG6VKew4>
=back
=head2 Articles
=over 4
=item
Perl.org Moose Whitepaper
L<https://www.perl.org/about/whitepapers/perl-object-oriented.html>
=item
PerlMaven.com
L<http://perlmaven.com/moose>
=item
Getting Started with Moose, brian d foy
http://www.theperlreview.com/articles/moose.html
=item
Wikipedia.org
L<http://en.wikipedia.org/wiki/Moose_(Perl)>
=item
Moose: A postmodern object system for Perl 5
L<http://perltraining.com.au/tips/2010-01-27.html>
=item
Roles and Delegates and Refactoring
L<http://blog.woobling.org/2009/10/roles-and-delegates-and-refactoring.html>
=back
=head1 Older Resources
=head2 Articles
=head3 2011
=over 4
=item
Dave Rolsky reviews Perl Best Practices, Chapter 15, Objects 7 years later
L<http://blog.urth.org/2011/03/reviewing-perl-best-practices-chapter-15-objects.html>
=item
Mark A. Stratman discusses subclassing non-Moose classes
L<http://blogs.perl.org/users/mark_a_stratman/2011/03/subclassing-tricky-non-moose-classes-constructor-problems.html>
=item
Mark A. Stratman shows how to use delegation to work with non-Moose classes
L<http://blogs.perl.org/users/mark_a_stratman/2011/03/subclassing-tricky-non-moose-classes-dont-do-it.html>
=item
The WebGUI folks talk about version 8.0 (which uses Moose)
L<http://blogs.perl.org/users/preaction/2011/01/whats-new-in-webgui-80-1---psgiplack.html>
=item
chromatic discusses Parameterized roles with Moose
L<http://www.modernperlbooks.com/mt/2011/01/the-parametric-role-of-my-mvc-plugin-system.html>
=back
=head3 2010
=over 4
=item
Chris Prather discusses Moose and the Modern Perl movement
L<http://chris.prather.org/been-there-done-that.md.html>
=item
Devin Austin talks about MooseX::App::Cmd
L<http://www.catalyzed.org/2010/04/moosexappcmd-and-your-command-line-apps.html>
=item
JT Smith declares The Second Age of Perl
L<http://blogs.perl.org/users/jt_smith/2010/04/the-second-age-of-perl.html>
=item
JT Smith talks about Lacuna Expanse (which uses Moose)
L<http://blogs.perl.org/users/jt_smith/2010/10/why-the-lacuna-expanse-is-good-for-perl.html>
=item
Moose 1.00 is Released
L<http://stevan-little.blogspot.com/2010/03/moose-100-is-released.html>
=item
Moritz Lenz asks What is "Modern Perl"?
L<http://perlgeek.de/blog-en/perl-tips/what-is-modern-perl.html>
=item
Yuval Kogman declares "Moose has won".
L<http://blog.woobling.org/2010/09/moose-has-won.html>
=item
chromatic discusses how Moose helps you write more correct code
L<http://www.modernperlbooks.com/mt/2010/01/subtle-encouragement-toward-correctness.html>
=item
chromatic discusses the Moose deprecation policy
L<http://www.modernperlbooks.com/mt/2010/09/the-right-approach-to-deprecation.html>
=item
chromatic talks about Class::MOP in relation to his Modern Perl book
L<http://www.modernperlbooks.com/mt/2010/03/ill-get-the-mop.html>
=item
chromatic talks about Encapsulation and Moose
L<http://www.modernperlbooks.com/mt/2010/09/what-you-can-and-cannot-teach-about-encapsulation.html>
=back
=head3 2009
=over 4
=item
Bruno Vecchi praises Moose for making his protein analysis code easier
L<http://zerothorder.blogspot.com/2009/04/chopping-proteins-with-moose.html>
=item
Chris Prather compares MooseX::Declare to Simula 67
L<http://chris.prather.org/a-little-bit-of-history.md.html>
=item
Chris Prather rationalizes Moose's "post modern" label
L<http://chris.prather.org/why-moose-is-post-modern.html>
=item
Dave Rolsky's post-mortem on his Moose documentation grant
L<http://blog.urth.org/2009/04/moose-docs-grant-wrap-up.html>
=item
David McLaughlin experiments with extending Moose for MooseX::ChainedAccessors
L<http://www.dmclaughlin.com/2009/05/15/chained-accessors-in-moose/>
=item
Sam Crawley summarizes his experience with roles
L<http://samcrawley.wordpress.com/2009/05/03/getting-the-hang-of-moose-roles/>
=item
Shawn M Moore discusses Perl::Critic for Moose and linting with the MOP
L<http://blog.sartak.org/2009/05/perl-critic-dynamic-moose.html>
=item
Shlomi Fish discovers a better way to Moose
L<http://community.livejournal.com/shlomif_tech/38407.html>
=item
Stevan Little explains why you should make your Moose classes immutable
L<http://stevan-little.blogspot.com/2009/06/why-makeimmutable-is-recommended-for_13.html>
=item
Tomas Doran interview about the new Moose-based Catalyst
L<http://www.catalyzed.org/2009/04/catalyst-58-released.html>
=item
chromatic contrasts roles and duck-typing
L<http://www.modernperlbooks.com/mt/2009/05/perl-roles-versus-duck-typing.html>
=item
chromatic contrasts roles and inheritance
L<http://www.modernperlbooks.com/mt/2009/05/perl-roles-versus-inheritance.html>
=item
chromatic on The Why of Perl Roles
L<http://www.modernperlbooks.com/mt/2009/04/the-why-of-perl-roles.html>
=back
=head3 2008
=over 4
=item
Barry Walsh does an excellent comparison of Moose and Ruby (specifically the Doodle module)
L<http://draegtun.wordpress.com/2008/03/12/doodling-with-moose-part-1/>
=item
Tim Bunce's excellent Perl Myths talk gives a shout out to Moose
L<http://www.slideshare.net/Tim.Bunce/perl-myths-200802-with-notes/>
=item
chromatic suggests Moose and Mouse in his Beginners Introduction to Object-Oriented Programming with Perl article
L<http://broadcast.oreilly.com/2008/11/beginners-introduction-to-obje.html>
=back
=head3 2007
=over 4
=item
Larry mentioned Moose in 2007's State of the Onion speech
L<http://www.perl.com/pub/a/2007/12/06/soto-11.html?page=3>
=item
Max Kanat-Alexander (of Bugzilla fame) has some nice things to say about Moose
L<http://avatraxiom.livejournal.com/70947.html>
=back
=head3 2006
=over 4
=item
Class::MOP Review (OnLAMP)
L<http://www.oreillynet.com/onlamp/blog/2006/06/cpan_module_review_classmop.html>
=back
=head2 Presentations
=head3 Perl Mongers Groups
=over 4
=item
Doug Treder's Moose talk at Seattle Perl Users Group
L<http://www.slideshare.net/dtreder/moose-527243>
=item
Hans Dieter Pearcey's Meta-Moose at PDX.pm
L<http://www.weftsoar.net/~hdp/talk/meta-moose/slides/start.html>
=item
Piers Cawley's MooseX::Declare talk at London.pm (video)
L<http://www.bofh.org.uk/2009/05/13/london-pm-presentation>
=item
Robert Boone's Moose talk at Houston.pm
L<http://houston.pm.org/talks/2007talks/0704Talk/slides/start.html>
=item
hakobe's Moose presentation at Kansai.pm
L<http://www.slideshare.net/hakobe/moose>
=back
=head3 2011
=over 4
=item
SawyerX's FOSDEM 2011 Moose talk
L<http://www.slideshare.net/xSawyer/moose-talk-at-fosdem-2011-perl-devroom>
=back
=head3 2010
=over 4
=item
Drew Stephens gives a lighting talk on Moose at SHDH 36
L<http://www.slideshare.net/dinomite/learning-moose-lightning>
=item
Jesse Luehrs's "Extending Moose" talk at YAPC::NA 2010
L<http://tozt.net/talks/extending_moose_yapc_na_2010/>
=item
Shawn Moore's "Non-hierarchical osdc.tw
L<http://sartak.org/talks/osdc.tw-2010/nonhierarchical-oop/nonhierarchical-oop.pdf>
=item
Ynon Perek's Perl Object Oriented Programming slides
L<http://prezi.com/fgdoyw0smyqo/perl-object-oriented-programming/>
=back
=head3 2009
=over 4
=item
Dave Rolsky's Introduction to Moose master class at YAPC::NA 2009 (delivered by Shawn Moore and Jonathan Rockway)
L<http://yapc10.org/yn2009/talk/2047>
=item
Devin Austin's Intro to Moose at YAPC::NA 2009
L<http://yapc10.org/yn2009/talk/1967>
=item
Hans Dieter Pearcey's Code Reuse with Moose at YAPC::NA 2009
L<http://yapc10.org/yn2009/talk/1984>
=item
Mike Whitaker's Intro to Moose at Italian Perl Workshop
L<http://www.slideshare.net/Penfold/introduction-to-moose-2437037>
=item
Mike Whitaker's Introduction to Moose at the Italian Perl Workshop
L<http://conferences.yapceurope.org/ipw2009/talk/2371>
=item
Shawn M Moore's Intro to Moose at Frozen Perl
L<http://sartak.org/talks/frozen-perl-2009/moose/>
=item
Shawn Moore's Extending Moose for Applications at YAPC::NA 2009
L<http://sartak.org/talks/yapc-na-2009/extending-moose/extending-moose.pdf>
=item
Shawn Moore's Moose master class at YAPC::Asia 2009
L<http://conferences.yapcasia.org/ya2009/talk/2192>
=item
Yuval Kogman's Why Moose at the Nordic Perl Workshop
L<http://www.perlworkshop.no/npw2009/talk/1901>
=back
=head3 2008
=over 4
=item
Mike Whitaker's Intro to Moose at the London Perl Workshop
L<http://yapc.tv/2008/lpw/mike-whitaker-intro-moose/>
=back
=head3 2006
=over 4
=item
Sam Vilain gives the very first Moose talk at YAPC::EU
L<http://www.yapceurope.org/2006/talk/item/63.html>
=back
=head1 AUTHORS
=over 4
=item *
Stevan Little <stevan.little@iinteractive.com>
=item *
Dave Rolsky <autarch@urth.org>
=item *
Jesse Luehrs <doy@tozt.net>
=item *
Shawn M Moore <code@sartak.org>
=item *
יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
=item *
Karen Etheridge <ether@cpan.org>
=item *
Florian Ragwitz <rafl@debian.org>
=item *
Hans Dieter Pearcey <hdp@weftsoar.net>
=item *
Chris Prather <chris@prather.org>
=item *
Matt S Trout <mst@shadowcat.co.uk>
=back
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2006 by Infinity Interactive, Inc..
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|