forked from perlorg/perlweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn.html
121 lines (116 loc) · 4.16 KB
/
learn.html
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
[%
page.import({
title => 'Learn Perl',
section => 'learn',
description
=> 'Useful links if you are interested in learning Perl',
});
%]
<table class="content_table">
<tr>
<td>
<h4>
There are many ways to start...
</h4>
<ul>
<li>
<a href="http://learn.perl.org/">learn.perl.org</a>
</li>
<li>
<a href="http://perldoc.perl.org/perlintro.html">A brief introduction</a>
</li>
<li>
<a href="/books/library.html">Free online Perl books</a>
</li>
<li>
<a href="/community.html">Join your local community</a>
</li>
<li>
<a href="/media.html">Books and More</a>
</li>
</ul>
<h4>
Recommended modules
</h4>
<p>
If you are looking for a list of recommended modules for many day-to-day tasks, look at <a href="http://search.cpan.org/perldoc?Task::Kensho">Task::Kensho</a>.
</p>
<h4>
The Perl FAQ
</h4>
<p>
Perl FAQs are available as part of your Perl distribution with the<br />
<code>perldoc perlfaq</code> command.
</p>
<ul>
<li>Read FAQs online at <a href="http://learn.perl.org/faq/">http://learn.perl.org/faq/</a>
</li>
</ul>
</td>
<td>
<h4>
Videos
</h4>
<p>
<a href="http://yapc.tv/">Videos</a> of presentations from conferences and workshops, more at <a href="http://www.presentingperl.org/">Presenting Perl</a>.
</p>
<ul>
<li>
<a href="http://blip.tv/file/1887791/">Testing your code</a>
</li>
<li>
<a href="http://yapc.tv/2008/lpw/mike-whitaker-intro-moose/">Moose (Object Oriented Programming) introduction</a>
</li>
<li>
<a href="http://yapc.tv/2008/ipw/marcus_ramberg_-_introduction_to_catalyst/">Catalyst web framework introduction</a>
</li>
</ul>
<h4>
Presentations
</h4>
<p>
Presentations are not necessarily the best way to learn, but they
can be worth reviewing.
</p>
<ul>
<li>
Introduction to Perl:
<a href="http://www.slideshare.net/davorg/introduction-to-perl-day-1">Part 1</a>,
<a href="http://www.slideshare.net/davorg/introduction-to-perl-day-2">Part 2</a>
</li>
<li>
<a href="http://www.slideshare.net/ranguard/dbixclass-beginners-presentation">DBIx::Class - Database ORM introduction</a>
</li>
<li>
<a href="http://www.slideshare.net/dandv/introduction-to-catalyst-part-1?src=related_normal&rel=283100">Catalyst web framework</a>
</li>
</ul>
</td>
</tr>
</table>
<div style="padding-top: 1em;">
[%
asins = [
'1430223650', # The Definitive Guide to Catalyst
'1558607013', # Higher-Order Perl
'1884777791', # Object Oriented Perl
'0596004761', # Template Toolkit
'0596001738', # Perl Best Practices
'0596520107', # Learning Perl
'0977920178' # Modern Perl
];
%]
<script type='text/javascript'>
var amzn_wdgt={widget:'Carousel'};
amzn_wdgt.tag='develooper';
amzn_wdgt.widgetType='ASINList';
amzn_wdgt.title='Books to help learn Perl';
amzn_wdgt.width='600';
amzn_wdgt.height='200';
amzn_wdgt.ASIN='[% asins.join(',') %]';
amzn_wdgt.shuffleProducts='True';
amzn_wdgt.marketPlace='US';
</script>
<script type='text/javascript' src='http://wms.assoc-amazon.com/20070822/US/js/swfobject_1_5.js'>
</script>
</div>