Сообщения без ответов | Активные темы Текущее время: 2024-10-18 12:21



Ответить на тему  [ 1 сообщение ] 
[Treehouse] PHP Development Courses [2013-2016, ENG + subs] 
Автор Сообщение
Постоянный
Постоянный
Раздал: 1.19 ТБ
Скачал: 949.67 ГБ
Ратио: 1.278


Зарегистрирован: 2014-10-13 17:53
Сообщения: 2494
Ответить с цитатой 
PHP Development Courses

#777
Год выпуска: 2013-2016
Производитель: Treehouse
Сайт производителя: https://teamtreehouse.com/
Автор: Alena Holligan, Hampton Paulk, Chris Hartjes
Продолжительность: 22:46
Тип раздаваемого материала: Видеоурок
Язык: Английский
Субтитры: присутствуют, SRT
Описание: Подборка видеокурсов Treehouse по теме PHP.

PHP обычно используется людьми, которые хотят создать простой, динамичный веб-сайт быстро и без особых усилий. С момента своего дебюта в 1995 году, он стал чрезвычайно популярным выбором для веб-разработчиков. Настолько популярным, что сейчас примерно 80% всех сайтов используют его, в том числе многие компании и технологические стартапы из списка Fortune 500. К концу этого курса, вы научитесь тому, что нужно, чтобы начать свою карьеру в компаниях, использующих PHP, или даже создать свой собственный сайт!

PHP is commonly used by people who want to build a simple, dynamic website quickly and effortlessly. Since its debut in 1995, it’s become an extremely popular choice for web developers. So popular, in fact, that roughly 80% of all websites use it now, including many Fortune 500 companies and top technology startups. By the end of this track, you’ll have what it takes to begin your career in companies that use PHP, or even to build your own website!


Курсы:


PHP Basics

О курсе
Описание: If you're new to PHP, this course will give you an overview of many of the language's core concepts.
Автор: Hampton Paulk
Сложность: Beginner
Продолжительность: 1:28
Содержание:
1 - What is PHP
2 - PHP Data & Structure
3 - PHP Datatypes
4 - PHP Operators
5 - PHP Conditionals & Loops


Скриншоты





PHP Functions

О курсе
Описание: PHP Functions allow you to combine several statements of code into a 'function'. These functions can then be called by their given name, and all of the code contained will run and return the results. This will drastically help you clean up code and use less repetitive code.
Автор: Hampton Paulk
Сложность: Beginner
Продолжительность: 0:57
Содержание:
1 - Introducing Functions
2 - Function Returns and More
3 - PHP Internal Functions


Скриншоты





Object-Oriented PHP Basics

О курсе
Описание: Learn the basics of object oriented coding in PHP. We will be covering classes, objects, properties, methods, inheritance, interfaces, and helpful OOP tools. By the time you are done with this lesson you will be ready to dig into frameworks with a solid understanding of the tools behind them.
Автор: Hampton Paulk
Сложность: Intermediate
Продолжительность: 0:31
Содержание:
1 - Classes and Objects
2 - Properties and Methods
3 - Inheritance, Interfaces, and Exceptions


Скриншоты





PHP Standards and Best Practices

О курсе
Описание: PHP is a flexible language with a long history. Being such a popular language for so long means there is a lot of code out there. There are many ways to program in PHP, and not all of them are as safe, performant, or maintainable as some of the older educational materials might have you believe.
Having so many options can be daunting to many developers as they grow from beginner to intermediate. Fortunately there are established best practices out there, and this course will help you learn about many of them.
Автор: Phil Sturgeon
Сложность: Intermediate
Продолжительность: 1:20
Содержание:
1 - Why Do We Need Best Practices
2 - Databases and International Concerns
3 - Autoloading and Composer
4 - Creating Distributable OOP Packages
5 - Error Handling


Скриншоты





Introduction to PHP7

О курсе
Описание: It's an exciting time to be part of PHP. The release of PHP7 is just the tip of the iceberg. In this workshop we'll cover the top features and improvements to the language as well as some things to look out for when upgrading.
Автор: Alena Holligan
Сложность: Beginner
Продолжительность: 0:21
Содержание:
1 - Introduction
2 - Type Declarations
3 - Error Handling
4 - New Operators
5 - Easy User-land CSPRNG
6 - Other Changes and Gotchas


Скриншоты





PHP Testing

О курсе
Описание: You've been writing PHP code for a while, but every time you push your code into production, there's another bug!
You have heard that there are tools you can use to test your code. Unit tests. Test-Driven Development. Mocks. All you want to know is: Can you figure these things out in time to help you stop working all these late hours?
This course will give you an understanding of how to use the most common PHP testing tools to create tests that will give you confidence that your code is working as expected.
Автор: Chris Hartjes
Сложность: Intermediate
Продолжительность: 1:59
Содержание:
1 - How Can We Test Our Code
2 - Tools for Testers
3 - Your First Tests
4 - Organizing Your Tests
5 - Acceptance Tests
6 - Test Doubles


Скриншоты





Database Foundations

О курсе
Описание: In Database Foundations we'll look into the ins and outs of databases. Databases can store massive amounts of information to be retrieved at a later date. Databases act as the memory for dynamic web sites or mobile apps.
Автор: Andrew Chalkley
Сложность: Beginner
Продолжительность: 2:58
Содержание:
1 - Introduction to Data, Databases and SQL
2 - Installing MySQL Server and MySQL Workbench
3 - Reading Data from Databases with SQL
4 - Creating Tables and Manipulating Data with SQL
5 - Manipulating Schema with SQL
6 - Joining Relational Data Between Tables in SQL
7 - SQL Calculating, Aggregating and Other Functions
8 - Securing and Maintaining a MySQL Database


Скриншоты





Using PHP with MySQL

О курсе
Описание: We will extend an existing project to use the popular database system, MySQL. Using a MySQL database we will store information relating to products for sale on our example project. We will also learn to query the database using PHP and talk about the ways you can mitigate security risks such as SQL injections.
Автор: Randy Hoyt
Сложность: Advanced
Продолжительность: 1:56
Содержание:
1 - Connecting PHP to MySQL
2 - Querying the Database with PHP
3 - Filtering Input for Queries
4 - Using Relationship Tables in MySQL
5 - Limiting Records in SQL Queries


Скриншоты





PHP & Databases with PDO

О курсе
Описание: Whether you have aspirations of working on a Content Management System, an E-Commerce Site, a new and exciting web app, or an API you will eventually need to work with a Database. PHP and Databases work together through the use of PHP Data Objects or PDO for short.
Автор: Hampton Paulk
Сложность: Beginner
Продолжительность: 1:06
Содержание:
1 - Getting Started With PDO
2 - PDO Queries & Results
3 - PDO Database Security


Скриншоты





Setup Your Local Development Environment (Windows)

О курсе
Описание: Most developers prefer to build applications locally, on their own computers, rather than on hosted servers. Working locally allows you to work more quickly because you don’t have to wait for your changes to be saved to a remote server and you donв't have to worry about issues like internet connectivity.
Автор: Alena Holligan
Сложность: Beginner
Продолжительность: 0:06


Скриншоты





Build a Basic PHP Website

О курсе
Описание: This project will show you how to build a simple website using the PHP programming language. The web site, a media library, will let you organize and display your Books, Movies and Music. You could easily use this project to create a website that lets you organize and display any type of item: Branch Locations, Products, Services, Events, even Courses like we have here on Treehouse.
Автор: Alena Holligan
Сложность: Beginner
Продолжительность: 2:56
Содержание:
1 - Building a Media Library in PHP
2 - Listing and Sorting Inventory Items
3 - Adding a Basic Form
4 - Enhancing a Form


Скриншоты





Enhancing a Simple PHP Application

О курсе
Описание: This project will take the existing e-commerce store we built earlier and enhance it with new techniques using the PHP programming language. By the end, you'll be able to build an online t-shirt store with clean web addresses, basic search functionality, pagination, and more. You'll also understand programming concepts like refactoring and separation of concerns.
Автор: Randy Hoyt
Сложность: Intermediate
Продолжительность: 3:23
Содержание:
1 - Integrating Validation Errors
2 - Cleaning URLs with Subfolders
3 - Cleaning URLs with Rewrite Rules
4 - Refactoring the Codebase
5 - Adding Search. Controller & View
6 - Adding Search. Model
7 - Paginating a List. Controller
8 - Paginating a List. Model and View


Скриншоты





Converting an HTML Site to a PHP Micro Framework

О курсе
Описание: In this live Treehouse Workshop, PHP teacher Hampton Paulk demonstrates how to convert a static HTML 5 site built on Foundation to the Silex PHP micro framework.
Автор: Hampton Paulk
Сложность: Intermediate
Продолжительность: 0:42


Скриншоты





Building Websites with PHP

О курсе
Описание: Taking what you have learned so far with basic syntax, functions, and object oriented concepts we are going to build a simple website.
We will together build a simple personal page with an about section and a contact form.
After our contact form is submitted, we will create and send an email with the user submitted information.
Автор: Hampton Paulk
Сложность: Beginner
Продолжительность: 1:53
Содержание:
01 - Dependency Management
02 - Slim Basics and Twig Templates
03 - Contact Form and Sending Email


Скриншоты





Flash Messages with The Slim Framework

О курсе
Описание: Using the Slim Frameworks Flash Messages and Session Store Middleware combined with Twig template language we will provide feedback to our users about form data and email.
Автор: Hampton Paulk
Сложность: Beginner
Продолжительность: 0:33


Скриншоты





PHP & The Stripe API

О курсе
Описание: The Stripe API is a robust and powerful solution to e-commerce checkout systems. From a simple button to secure checkout form with validation. Together we will pair up the Stripe API checkout and PHP to create a simple but expandable checkout solution.
Автор: Hampton Paulk
Сложность: Beginner
Продолжительность: 0:29


Скриншоты





Файлы примеров: присутствуют
Формат видео: WebM
Видео: VP80 1280x720 30fps, 140 Kbps
Аудио: Vorbis 48.0 KHz, 160 Kbps, stereo

Все скриншоты



2016-03-26 03:01
Профиль
  • Торрент
Автор: Александр С. Хэш: ---
Добавлен: 2016-03-26 03:01 Приватный: Нет (DHT включён)
Статус:
---
Размер: 3.17 ГБ (3 405 497 698 байт)
Изменил:
---
Скачали: 0 (Раздающих: 0%)
Причина:
---
Здоровье: 0%
Сидеров: 0 Личеров: 0
Скорость раздачи: 0 байт/сек Скорость скачивания: 0 байт/сек
Последний сидер: Нет Последний личер: 1 год 1 месяц 25 дней 17 часов 30 минут 3 секунды назад
Для скачивания торрента необходимо зарегистрироваться или войти на трекер.
Показать сообщения за:  Поле сортировки  
Ответить на тему   [ 1 сообщение ] 

Кто сейчас на конференции

Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 4


Вы не можете начинать темы
Вы не можете отвечать на сообщения
Вы не можете редактировать свои сообщения
Вы не можете удалять свои сообщения
Вы не можете добавлять вложения

Найти:
Перейти:  
Создано на основе phpBB® Forum Software © phpBB Group
ppkBB3cker v.2.5 © 2008-2021 @ PPK | Icon Theme by Everaldo.com Design Studio
Designed by ST Software.
Русская поддержка phpBB
[ Time : 0.120s | 15 Queries | GZIP : Off ]
Ресурс не предоставляет электронные версии произведений, а занимается лишь коллекционированием и каталогизацией ссылок, присылаемых и публикуемых на форуме нашими читателями. Если вы являетесь правообладателем какого-либо представленного материала и не желаете чтобы ссылка на него находилась в нашем каталоге, свяжитесь с нами и мы незамедлительно удалим её. Файлы для обмена на трекере предоставлены пользователями сайта, и администрация не несёт ответственности за их содержание. Просьба не заливать файлы, защищенные авторскими правами, а также файлы нелегального содержания!
tracker_cron Яндекс.Метрика