Регистрация ·  Логин: Пароль: Запомнить   · Забыли пароль?




Ответить на тему
Автор Сообщение

Модератор
Аватара пользователя

С нами: 11 лет 1 месяц
Сообщения: 87029
Откуда: Красноярск
СССР

Сообщение 24 июн 2014, 16:47 

[Цитировать]

lynda.com | Perl 5 Essential Training [2010] [EN] PCRec
Автор (режиссер): lynda.com
Название: Perl 5 Essential Training
Год выпуска: 2010
Жанр: Программирование Perl
Язык: EN
Качество видео: PCRec
Продолжительность: 06:54:00
Видеокодек: Advanced Video Codec (AVC)
Битрейт видео: ~9.2 - 415 кбит/с
Размер кадра: 960 x 540
Аудиокодек: Advanced Audio Codec (AAC)
Битрейт аудио: 96,0 Кбит/сек 2 канала 48,0 КГц

Описание:
В видеокурсе Perl 5 Essential Training автор Bill Weinman объясняет основы программирования на Perl, гибком и мощном языке программирования, который хорошо подходит для создания сложных веб приложений. Этот курс охватывает детали языка от условных операторов, циклов и структур данных до выражений, функций и объектно-ориентированного программирования. Включено быстрое руководство для опытных разработчиков, которые хотят быстро начать работу с Perl 5.
Introduction

Welcome 1:44 6.9 MB

Using the exercise files 1:46 1.7 MB

Prerequisites 2:34 2.1 MB

What is Perl? 4:31 5.2 MB

Installing ActiveState's ActivePerl on Windows 4:01 6.7 MB

Installing Eclipse on Windows 11:34 17.1 MB

Installing Eclipse on Mac 8:25 13.2 MB

1. Perl Quick-Start Guide for Experienced Programmers

Hello World 3:23 3.1 MB

Counting lines in a file 2:47 3.1 MB

Using a loop in Perl 4:34 5.0 MB

Using subroutines in Perl 5:55 7.5 MB

Using Perl's documentation 2:23 4.4 MB

2. General Syntax

Understanding how Perl uses whitespace 4:37 4.8 MB

Terminating statements with semicolons 4:53 5.6 MB

Creating comments 5:12 5.6 MB

Best practices for formatting code 5:28 5.4 MB

3. Variables and Values

Understanding values and variables 2:18 1.8 MB

Declaring numeric variables 6:31 7.0 MB

Declaring character string variables 7:36 7.5 MB

Declaring lists and arrays 6:15 6.1 MB

Pulling slices from arrays 3:31 3.4 MB

Understanding hashes and associative arrays 6:54 6.8 MB

Getting value pairs using the each function 4:27 5.4 MB

Understanding the undef value 5:44 6.0 MB

4. Statements and Blocks

Assigning values to variables 2:24 2.5 MB

Using statements and expressions 5:12 5.1 MB

Combining statements into blocks 2:54 3.1 MB

Understanding scope 5:34 6.9 MB

5. Conditional Statements

Understanding conditional statements 1:57 1.6 MB

Creating conditionals with if 5:03 5.0 MB

Extending conditionals with else 2:09 2.3 MB

Extending conditionals with elsif 4:53 6.0 MB

Building if statements with postfix conditionals 3:08 3.1 MB

Creating negative conditionals with unless 2:47 3.1 MB

Using the ternary conditional operator 3:45 3.7 MB

6. Loops

Understanding loops 0:52 0.7 MB

Creating loops with while 2:16 2.4 MB

Creating loops with until 2:55 2.9 MB

Iterating lists with foreach 2:53 2.9 MB

Iterating lists with for 4:49 4.6 MB

Using loop control statements 2:21 2.3 MB

Building loops with postfix statements 4:41 4.6 MB

7. Special Variables

Understanding special variables 2:29 2.0 MB

Using special variables 5:23 5.3 MB

Working with special file handles 6:39 7.4 MB

Using special constants 2:54 3.1 MB

8. Operators

Performing basic math with arithmetic operators 4:33 4.5 MB

Creating conditionals with comparison operators 4:36 6.5 MB

Combining conditionals with logical operators 8:18 8.6 MB

Reading file metadata with file test operators 4:50 5.7 MB

Creating a sequence with the range operator 2:52 3.0 MB

Combining strings with the concatenation operator 2:18 2.4 MB

Streamlining strings with quote operators 4:05 4.4 MB

Understanding operator precedence 4:24 4.6 MB

9. Regular Expressions

Understanding regular expressions 1:18 1.1 MB

Searching and replacing text with regular expressions 7:02 8.2 MB

Extracting matches with parentheses 3:47 3.9 MB

Matching wildcards 5:53 6.0 MB

Matching classes of characters 4:33 4.6 MB

Creating arrays with split 3:35 3.9 MB

10. Subroutines

Understanding subroutines 1:05 0.9 MB

Defining and calling subroutines 4:33 5.4 MB

Using arguments with subroutines 3:07 3.5 MB

Understanding scope and "my" variables 3:27 4.0 MB

Returning values from a subroutine 3:29 3.6 MB

11. References and Data Structures

Understanding values and references 4:26 4.4 MB

Defining array references 6:40 6.8 MB

Defining hash references 6:00 6.3 MB

Building mixed data structures 6:33 9.2 MB

12. File I/O

Understanding streams and files 1:52 1.5 MB

Using file handles 6:01 6.0 MB

Using the object-oriented interface for handling files 8:41 10.2 MB

Working with binary files 7:43 8.9 MB

13. Built-In Functions

Manipulating strings with built-in functions 7:03 7.4 MB

Working with numbers 4:21 4.9 MB

Manipulating lists and arrays with built-in functions 5:35 5.7 MB

Retrieving and formatting time 5:43 5.8 MB

14. Modules

Leveraging code with modules 1:39 1.3 MB

Understanding object-oriented and procedural modules 2:24 2.1 MB

Creating modules 9:51 11.6 MB

Understanding object and instance data 5:38 5.9 MB

Installing modules from CPAN on Mac and Unix 5:37 7.4 MB

Installing modules from CPAN on Windows 4:26 5.7 MB

15. Documentation with POD

Understanding POD 1:30 1.2 MB

Documenting with POD 4:56 7.1 MB

Exploring a POD document 2:44 4.3 MB

16. New Features in Perl 5.10

Using Perl 5.10 1:39 1.3 MB

Displaying text with say 1:23 1.7 MB

Selecting from multiple choices with given and when 5:06 5.3 MB

Keeping persistent variables with state 3:06 3.4 MB

17. Exploring Web Development

Exploring CGI 5:28 7.2 MB

Using a database 8:21 12.8 MB

Developing a module library 6:47 8.9 MB

Conclusion

Goodbye 0:40 0.6 MB
Скриншоты:


Время раздачи: с 23:00 до 8:00 (днём по возможности) до первых пяти скачавших
Заранее извиняюсь за низкую скорость раздачи... быстро скачать не получится...
Отдельная благодарность Группе "Uploaders" и лично slava03 за поддержку релизов
Download
Для скачивания .torrent файлов необходима регистрация
Сайт не распространяет и не хранит электронные версии произведений, а лишь предоставляет доступ к создаваемому пользователями каталогу ссылок на торрент-файлы, которые содержат только списки хеш-сумм

Страница 1 из 1

Ответить на тему

   Похожие торренты   Торрент