Showing posts with label English Tutorials. Show all posts
Showing posts with label English Tutorials. Show all posts

Monday, July 22, 2013

Download : Lynda – JavaScript: Enhancing the DOM


Author: Ray Villalobos
Subject: Developer, Web, Web Design, Web Development
Software: HTML , JavaScript
Level: Intermediate | Duration: 2h 3m | Released date: Jun 10, 2013
size : 381.92 MB
Homepage: http://www.lynda.com/HTML-tutorials/JavaScript-Enhancing-DOM/122462-2.html
The Document Object Model (DOM) is at the core of every HTML page. In order to develop dynamic HTML pages, a front-end developer needs to understand how JavaScript connects to and controls the DOM, allowing you to create, modify, delete, and edit existing page content. This course focuses on helping you understand the DOM elements, and shows the different ways JavaScript gives you access to them and makes it easier to work with the DOM. Author Ray Villalobos covers navigating the DOM, selecting elements, modifying HTML attributes, editing nodes, and much more.
Topics include:
  • What is the DOM?
  • Choosing and isolating elements
  • Traversing up and down DOM nodes
  • Changing HTML attributes
  • Modifying elements as text
  • Creating and appending nodes
  • Cloning and removing nodes
  • Adding a bubbling event listener
  • Adding and resizing images
  • Handling clicks
  • Introduction
    • Welcome
    • What you should know before watching this course
    • Using the exercise files
  • 1. Getting Started
    • What is the Document Object Model (DOM)?
    • Navigating the DOM with developer tools
    • Testing JavaScript commands with the console
    • Communicating with the console through JavaScript
  • 2. Selecting the DOM
    • Selecting elements with getElementById
    • Choosing elements by HTML tag
    • Isolating elements by class name
    • Querying CSS to select elements
    • Working with named form elements
    • Understanding nodeType, nodeName, and nodeValue
    • Traversing up and down DOM nodes
    • Targeting node elements
  • 3. Modifying DOM Attributes and Content
    • Changing HTML attributes
    • Working with restricted attributes
    • Detecting data attributes
    • Controlling classes with the HTML5 classList
    • Targeting the attributes property
    • Using text content modifiers
    • Modifying elements as text
  • 4. Inserting and Deleting Nodes
    • Creating and appending nodes
    • Controlling node insertions with insertBefore
    • Cloning and removing nodes
    • Replacing existing nodes
  • 5. The DOM in Action
    • What we’ll build
    • Adding a bubbling event listener
    • Creating and styling an overlay with JavaScript
    • Adding an image
    • Resizing images in the DOM
    • Centering an image
    • Handling clicks
    • Adjusting for scrolling
    • Detecting and adjusting for a window resize
  • Conclusion
    • Next step



    Download : Direct Links

    Download From : 1fichier.com 

    Download From :  gulfup.com

    Download From Multi Server : go4up.com 
Read More

Wednesday, July 17, 2013

Download: Video2Brain - PHP 5.3 Advanced Web Application Programming


Video2Brain - PHP 5.3 Advanced Web Application Programming (Size: 1.02 GB)

Learn the nuts and bolts of advanced web application programming! Join Edward Tanguay as he dives into PHP programming. In his workshop, you will learn that it only takes a few minutes to get an Apache web server, a MySQL database, PHP 5.3, and the Eclipse editor up and running using the free XAMPP installation tool. Edward will then cover the PHP syntax, such as operators, loops and variables, before moving on to make you a PHP expert, tackling object orientation, databases, XML parsing, web services, security and much more. The training also includes important new features of PHP 5.3, such as namespaces, lambdas, and late static binding. Once you complete this video training, you will have the skills you need to build next-generation dynamic websites. 



Download : ( Direct Links )

Download From : 1fichier.com

Download From : gulfup.com



Read More

Thursday, July 11, 2013

Download : LiveLessons – Python Fundamentals


Author: Wesley J Chun
Released: Dec 23, 2008 | Duration: 8h 5m 49s

In this one-of-a-kind video package, leading Python developer and trainer Wesley Chun helps you learn Python quickly and comprehensively, so that you can immediately succeed with any Python project.

Just click and watch: One step at a time, you will master Python fundamentals. If you already have Python experience, these videos will help further develop your skills. The lessons start with an introduction to the core features of the Python language, including syntax basics and standard types and operations. The lessons progress into advanced topics, such as Python’s memory model and object-oriented programming.

This LiveLessons video course closely mirrors the topics covered in its sister publication, Core Python Programming, Second Edition (Prentice Hall, 2007). As in the book, viewers will find review questions and coding exercises at the end of each lesson in the video booklet to test the material introduced in the video and printed parts of the lesson.

Lesson 1: Introduction
The first lesson helps viewers set up and ready to learn Python. Material covered includes installation, how/where to write Python source code, development environment, Python’s interactive interpreter, etc., all of which culminates in the classic “Hello World!” example. 
Lesson 2: Getting Started
Before diving straight into Python, it’s important to learn where Python has come from and where it is going. This lesson features a brief language backgrounder, what it’s key advantages are, and most importantly, goes into some detail about Python’s current transition to its next generation release, Python 3. The lesson concludes with both the expected “Hello World!” example as well as a demo of the core language fundamentals that are covered in the remainder of this LiveLessons video course. 
Lesson 3: Python Syntax Basics
True to its name, this lesson covers the basic language syntax rules: code structure, statements, delimitation, variables, assignment, plus rules and guidelines for identifier names. Of course, those are language independent aspects, but the latter part of the lesson focuses on Python-specifics such as keywords and built-in functions. It then concludes with three very important introductions: how to create and call functions, how to import functionality from other Python modules, and the raw_input() built-in function which can be used to obtain user input from the command-line. 
Lesson 4: Standard Types
The longest lesson in this LiveLessons video course features an in-depth look into Python’s standard data types. It starts off with light fare such as Boolean values and the various operators and built-in functions that work with most Python types. This is followed by a comprehensive look at Python’s numeric, sequence, and hashing types, as well as the operators and built-in functions and methods that apply to each of those types. 
Lesson 5: Objects and Memory Model
This is the first lesson of our LiveLessons video course that you can skip and come back to later. It goes into detail about Python’s memory model and is strongly recommended viewing but may be too advanced for those who are just learning Python. Topics covered in this lesson include objects, references, and memory management. It also features a way of categorizing each of the standard types using various models to help you learn and understand them much better; then concludes several quizzes to test your comprehension. 
Lesson 6: Loops and Conditionals
It’s back to the basics with this lesson, covering generic flow control using loops and conditionals. The lesson begins with a review of Python’s syntax rules then covers Python’s if statement then its for and while loops as well as auxiliary constructs, statements, and built-in functions. 
Lesson 7: Files and Input/Output
In this lesson, we review what files — including the standard files — are and provide the context in which to think about files in Python. Material covered in this lesson includes the open() built-in function as well as file object methods; it then concludes with a brief discussion of other forms of persistent storage available for Python users. 
Lesson 8: Errors and Exceptions
Run-time exception handling may still seem “new” even though the concept has been around for a long time, but it is pretty much of a requirement of most modern-day programming languages. This lesson begins with a review of exceptions then discusses how to accomplish exception handling in Python. The latter part of the lesson covers other exception-related functionality featuring the else, finally, raise, and assert statements as well as how to create (and use) exception classes. The lesson concludes with what you CANNOT do with exceptions as well as a reminder that not all exceptions mean some error is involved… they can be just warnings or simple notification of loop termination. 
Lesson 9: Functions and Functional Programming
Creating and calling functions were briefly introduced back in an earlier lesson, so the goal of this lesson is to fill in more of the gaps as well as introducing other features of functions and functional programming found in Python. In particular, a good amount of time is spent on features that focus on functions arguments/parameters, i.e., keyword arguments, default values, return values, calling convention applicability in Python, etc. The remainder of the lesson covers variable scope, namespaces, functional programmings, anonymous functions, variable arguments, and finally, argument grouping. 
Lesson 10: Object-Oriented Programming
The final lesson can also be deferred by the viewer. Although Python is an object-oriented programming language, using OOP is not required to create a working application. Users can learn and use OOP when they are ready. This lesson is fairly comprehensive, starting with a general introduction to OOP then gradually bringing Python into the picture. The remainder of the lesson covers all the core OOP components of Python: classes, class attributes, instances, instance attributes, methods, subclasses and finally, multiple inheritance. 


Download Links :

Download From: rapidgator


Download From : uploaded.net  

Read More

Telecharger: Tutsplus – Advanced Portfolio Techniques


 Author: Wes McDowell
Release date: April 29, 2013 | Duration: 2h 58m 4s
Homepage: https://tutsplus.com/course/advanced-portfolio-techniques/
It’s easy to second guess yourself when you’re building your portfolio. Is it too much? Too little? Will this help me land the job or client I need? If you’ve already built a portfolio website or two and want to kick your next one up a notch, Wes McDowell has your back. In this course, he’ll teach you simple strategies for taking your portfolio website to the next level. If your current portfolio is lacking a bit of luster, then this course is for you.
  • Introduction
    • Course Overview
  • Site Structure
    • Why Single Page Sites Are a Bad Idea
    • Pages We Are Going to Cover
  • The Homepage
    • What Your Homepage Should Accomplish
    • The Image Slider
    • Designing the Image Slider Promo
    • Social Sharing
  • Case Studies
    • What is a Case Study?
    • How to Craft a Compelling Case Study
    • Writing a Case Study, Start to Finish
    • Presentation Counts
    • Positioning Your Case Studies For Maximum Impact
  • Client Testimonials
    • Why Testimonials are Important
    • Strategies for Getting Amazing Testimonials
    • Turning a Client Feedback Survey into a Winning Testimonial
    • Where You Should Put Your Testimonials
  • Showcasing Your Work
    • The Portfolio Page Structure
    • Sharing Your Work
  • Your Blog
    • Why a Blog is Important to Your Site
    • Design & User Interface Tips
    • MIni-Blogrolls
  • The About Page
    • How to Write a Compelling Bio
    • Writing my Bio, Start to Finish
    • Adding a Photo
  • Kick it Up a Notch With Video
    • Homepage Welcome Videos
    • Video Case Studies
    • Video Testimonials
    • What You Will Need
    • Shooting Tips
    • Hosting Options
  • The Hard Sell
    • The All-Important Call-to-Action
    • The Bigger (Better) Contact Form
  • Conclusion
    • Final Thoughts                                                                       
    •                                                                              
    •                                                                          

Download Links:
 Size 1.41 GB

Download From : 1fichier.com

Download From : gulfup.com

Read More

Download : PluralSight - HTTP Fundamentals


PluralSight - HTTP Fundamentals

More Information :


Download Links : 

Download From : uploadhero.co


Download From : uptobox.com


Download From  Multi Server : go4up.com
Read More

Download: Tutsplus - Fuelphp Essentials V413hav


Tutsplus - FuelPHP Essentials
English | Audio: aac, 44100 Hz, stereo (eng)
MOV | Video: h264, yuv420p, 1152x720, 30.00 fps(r) (eng) | 686 MB
Genre: Video Training

FuelPHP is a simple, but flexible, PHP 5.3 web framework that is rapidly picking up steam. It takes a different approach to many frameworks and strives to be community-driven.
In this course, as one of the core team members who works on the framework, I’ll get you up and running!

Contents

Getting Started 8m 21s
Hello World 8m 21s

FuelPHP 2h 34m 36s
Code Generation 12m 28s
Using the ORM 9m 55s
ORM Relationships 9m 56s
Migrations 10m 21s
Authentication 10m 25s
Layouts and Templates 13m 3s
Routing 13m 3s
Forms and Emails 14m 32s
Validation 9m 9s
Using Mustache 10m 38s
AJAX 17m 51s
Social Integration 12m 56s
Console & Tasks 10m 19s



Download Links : 

Download From : 1fichier.com

Download From : uploadhero.co

Download From Multi Server : go4up.com
Read More

Sunday, July 7, 2013

Dowload: InfiniteSkills - Learning Python Programming




[Infinite Skills] Learning Python Programming [2012]
English | h264, yuv420p, 1280x720, 15.00 fps | aac, 44100 Hz, mono | 821 MB
Download ID: 00016

In this Python training course from expert programmer and author Mike McMillan, you will learn how to program with the popular development language.
This tutorial is designed for the Beginner, and you do not need to have any Experience with Programming at All or development in order to learn How to program using Python with this video tutorial. Some of the Topics That Mike covers Throughout the Training include installing Python , data types and creating variables, input and output, decision making and repetition, iterators, list comprehension and functions. He Also covers variable scope, modules - Creating and using pre-built ones, object Oriented Programming, Inheritance, and using exception Handling Data Structures. By the Completion of this video Training Course based on Python Programming, Will you be comfortable with Python and How to apply it to developing applications. Throughout the course you will apply what you learn in real-world examples, reinforcing what Mike is teaching you. Working files are included to allow you to use the same source material that the author does in this training course. 

More:-http://www.infiniteskills.com/training/learning-python-programming.html


Download Links :

Download From: 1fichier.com


Download From: uploadhero.co


Download From Multi Servers: go4up.com

Read More

Saturday, July 6, 2013

Telecharger: Video2Brain - Microsoft Powerpoint 2010


Description
Aprende los pasos básicos para poder utilizar y aplicar correctamente el programa más extendido de creación de presentaciones audiovisuales. Elabora trabajos vistosos y efectivos con interactividad, transiciones y efectos impactantes.
Comparte este torrent, no lo borres, contribuiras a que siga subiendo cursos.Gracias

Size : 557 MB

Download Links :

Download From : 1fichier.com

Download From : uploadhero.co

Download From : gulfup.com

Download From Multi Servers : go4up.com 
Read More

Download: InfiniteSkills – Web Programming With Python



Author: Mike McMillan
English | Mp4 | H264 | 960×720 | 15fps | 4:3 | Mp3 64kbps 44100hz
Duration: 4.25 hours-51 lessons – Released date: 16-Apr-2012

Take your skills to the next level. This Web Programming With Python Tutorial Video is the ultimate in comprehensive instruction for the discerning professional.

These training classes use broadcast quality audio and video to deliver concise and informative training right to your desktop. The course is presented via an intuitive, easy-to-use interface, allowing you to learn at your own pace.

These Web Programming With Python Tutorials break even the most complex subjects down into easy to follow segments, following along is simple. Practical working files further enhance the learning process and provide a degree of retention that is unmatched by any other form of training.


00. Free Videos From This Course

Introduction Demo
Python Interpreter Demo
Install On Windows Demo
Installing And Using Python On The Mac Demo
Data Types Demo
The if Statement Demo
Loops Demo
Functions Demo
Lists Demo
Dictionaries Demo
Object Oriented Programming – Part 1 Demo
Object Oriented Programming – Part 2 Demo
Modules Demo
Exception Handling Demo

1. Course Introduction

0101 Introduction

2. Python Programming Review – Part 1

0201 Python Interpreter
0202 Install On Windows
0203 Installing And Using Python On The Mac
0204 Data Types
0205 The if Statement
0206 Loops
0207 Functions

3. Python Programming Review – Part 2

0301 Lists
0302 Dictionaries
0303 Object Oriented Programming – Part 1
0304 Object Oriented Programming – Part 2
0305 Modules
0306 Exception Handling

4. Database Programming With Python

0401 Installing SQLite
0402 SQLite Install On Mac
0403 Creating Database And Table
0404 Inserting Data
0405 Selecting Data
0406 DB Programing Example

5. Using Python With Internet Services

0501 Transferring Files With FTP
0502 Sending Email
0503 Reading Email
0504 Reading News
0505 Python Email Program

6. Web Client Programming With Python

0601 Web Page Structure
0602 Using urllib
0603 Parsing HTML – Part 1
0604 Parsing HTML – Part 2
0605 Screen Scraper
0606 Web Crawler

7. Introduction To Web Server Programming With Python

0701 Intro To SimpleHTTP Server
0702 More With SimpleHTTP And BaseHTTPServer
0703 CGI Programming – Part 1
0704 CGI Programming – Part 2
0705 Form Processing

8. Web/Database Applications In Python

0801 Database Web Programming
0802 HTML Database Data
0803 Input Database Data
0804 Update Database Data

9. XML Programming With Python

0901 Writing XML File
0902 Parsing XML
0903 Finding XML Elements

10. The Django Web Application Framework

1001 Installing Django
1002 Setting Up Django – Part 1
1003 Setting Up Django – Part 2
1004 Django API
1005 Django Admin App
1006 Django Views
1007 Django Templates
1008 Add Remove Data

Download Links :

Download From: 1fichier.com 

Download From: gulfup.com

Download From: uploadhero.co

Download From Multi Server : go4up.com
Read More

Thursday, July 4, 2013

Download: VFXlearning : Intro to Maya for Effects



VFXlearning - Intro to Maya for Effects | 3.64 GB

In this fundamentals course we will study the main areas of Maya, focusing on giving you a solid understanding of the core concepts needed to begin training in the Maya Dynamics courses and Master Classes. This training series is oriented for students who have none or very little experience with Maya. We will cover all main areas of the application and its importance and usage for Effects Artists . This is not a course on a specific subject, the instructor will walk you through all the tools, procedures and techniques needed to get you up to speed using this powerful software .

Homepage: _http://vfxlearning.com/videos/opensource

Download Links :

Uploaded.net

Allupmirror.com




Read More

Download: VFXlearning : Intro to Maya for Effects


VFXlearning - Intro to Maya for Effects | 3.64 GB

In this fundamentals course we will study the main areas of Maya, focusing on giving you a solid understanding of the core concepts needed to begin training in the Maya Dynamics courses and Master Classes. This training series is oriented for students who have none or very little experience with Maya. We will cover all main areas of the application and its importance and usage for Effects Artists . This is not a course on a specific subject, the instructor will walk you through all the tools, procedures and techniques needed to get you up to speed using this powerful software .

Homepage: _http://vfxlearning.com/videos/opensource

Extabit.com

Rapidgator.net

Uploaded.net

Allupmirror.com
Read More

Download: CreativeLive - Wedding Photography with Joe Buissink




CreativeLive - Wedding Photography with Joe Buissink

English | 3 Days | WMV3 | 952x536 | 25fps 700kbps | AAC 44.1KHz

Genre: eLearning

Joe Buissink is coming to creativeLIVE! Joe will show you his award-winning photojournalistic approach to weddings. He'll teach you how to find your own style and bring your own personality out in your images, because the most important thing about photography is who YOU are! Your clients want you for your passion, and Joe will help to bring out the artist in you. Joe will also get into the technical aspects of his business, talking about how he designs his contracts, packages, and prices, and why he designs them that way.
Joe is an internationally sought-after wedding photographer who has shot weddings for celebrities including Jennifer Lopez, Jessica Simpson & Nick Lachey, Christina Aguilera, Katharine McPhee, and others, and now on creativeLIVE he'll share the passion, knowledge and skill that makes him such a success!

More info:
http://www.creativelive.com/courses/wedding-photography-joe-buissink

DOWNLOAD:

Read More

Download: INFINITESKILLS - LEARNING SOLIDWORKS 2013 TRAINING VIDEO-JWARE


INFINITESKILLS - LEARNING SOLIDWORKS 2013 TRAINING VIDEO-JWARE
Released: 01/07/13 | Author: Matt Lombard | Size: 2.23 GB
Genre(s): E-Learning

In this project-based Learning SolidWorks 2013 video tutorial series, you'll quickly have relevant skills for real-world applications. Follow along with our expert instructor in this training course to get:

* Concise, informative and broadcast-quality SolidWorks 2013 training videos delivered to your desktop
* The ability to learn at your own pace with our intuitive, easy-to-use interface
* A quick grasp of even the most complex SolidWorks 2013 subjects because they're broken into simple, easy to follow tutorial videos

INSTALLATION:
a. Extract
b. Mount/Burn
c. Play and Learn

Download Links :

Uploaded:

DizzCloud:

RapidGator:

BitShare:

Read More

Download: Video2Brain - Core HTML5 and CSS3 Web Development



Video2Brain - Core HTML5 and CSS3 Web Development
English | MP4 | H264 207 kbps 15 fps | 1280x720 | AAC 128 kbps 48 KHz | 565 MB
Genre: elearning

What are HTML5 and CSS3, and why are people so excited about them? In this workshop, the first of a three-part series, author and expert Andy Olsen introduces you to these emerging technologies and why they are going to change the world of web development. You’ll learn how to work with new HTML5 features like semantic tags, the selector API, new form input controls, improved accessibility, and more. You’ll also get up to speed on the basics of CSS3, from creating drop shadows and rounded corners to working with transforms, selectors, and web fonts.


Download link:

Download From : 1fichier.com

Download From : uploadhero.co

Download From : gulfup.com

Download From Multi Servers : go4up.com
Read More

Saturday, June 29, 2013

Telecharger: Lynda - LinkedIn for Business-QUASAR


LinkedIn for Business-QUASAR Released: 06-21-2013 | Author: Richard Colback | Duration: 2h 56m | Size: 379 MB Genre(s): Training | Tutorial

Leverage LinkedIn to promote your business, foster community in your field, and attract talent. Learn how in this course with business strategist Richard Colback. Richard begins with a look at setting up a basic business profile and then walks you through promotion activities, group creation, and best practices for recruiting and hiring talent. He also shares smart strategies you can employ to keep your company profile up to date and how to implement a LinkedIn use policy that works for you and your employees. The course wraps with a look at integrating with other platforms and accessing the application on the go. Topics include: * Understanding how large and small businesses use LinkedIn * Setting up a company profile with careers and services pages * Participating with groups and communities * Advertising on LinkedIn * Using keywords to increase visibility * Translating your page * Adding job posts * Reviewing candidate profiles * Engaging with followers * Viewing LinkedIn on iPad, iPhone, and Android devices INSTALLATION: a. Extract b. Mount/Burn c. 


Topics include:
Understanding how large and small businesses use LinkedIn
Setting up a company profile with careers and services pages
Participating with groups and communities
Advertising on LinkedIn
Using keywords to increase visibility
Translating your page
Adding job posts
Reviewing candidate profiles
Engaging with followers
Viewing LinkedIn on iPad, iPhone, and Android devices

INSTALLATION
Unpack, burn or mount and enjoy

Download Links :

Download From : 1fichier.com
Download From : gulfup.com
Download From : uploadhero.co
Download From : uploaded.net
Download From : novafile.com
Download From : uptobox.com
Download From : tusfiles.net


Read More

Download: Lynda - The Practicing Photographer


Author: Ben Long
Subject: Photography
Level: Appropriate for all | Duration: 7m 2s | Released date: May 16, 2013
Homepage: http://www.lynda.com/Photography-tutorials/Practicing-Photographer/119012-2.html

In The Practicing Photographer, photographer and teacher Ben Long shares a weekly serving of photographic instruction and inspiration. Each installment focuses on a photographic shooting scenario, a piece of gear, or a software technique. Each installment concludes with a call to action designed to inspire you to pick up your camera (or your mouse or smartphone) to try the technique for yourself.

The Practicing Photographer
Introducing The Practicing Photographer
Choosing a camera

Download Links

Download from : 1fichier.com
Download from : uploaded.net
Download from : tusfiles.net
Download from : novafile.com
Download from : filefactory.com
Download from : freakshare.com
Download from Arabic Server : gulfup.com

Read More

Friday, June 28, 2013

Download: Lynda - Facebook For Your Business V413HAV




Lynda - Facebook For Your Business V413HAV

English | .MP4 | h264, yuv420p, 960x540, 476 kb/s, 29.97 fps | aac, 48000 Hz, 159 kb/s | 353.85 MB
The large and highly engaged Facebook audience makes it a natural place to start marketing your business. In this course, author Justin Seeley shows you the basics of setting up your Facebook account exclusively for business use and building out your page in a way that clearly identifies your brand. He also shows how to create meaningful posts and status updates, and entice members to like your page. Plus, learn how to go beyond the basics and widen your fan base, create ads and promoted posts, and extend Facebook with mobile and third-party services.
Topics include:
  • Planning your business’s Facebook page
  • Changing your logo and cover image
  • Choosing a web address
  • Inviting friends to like your page
  • Posting effective status updates
  • Scheduling posts
  • Creating interactive polls
  • Analyzing your page performance and audience with Insights
  • Adjusting permissions and privacy
  • Extending the Facebook experience
  • Introduction
  • Welcome
  • 1. Getting Started
  • Exploring Facebook for business
  • Understanding Facebook terminology
  • Facebook profiles vs. Facebook pages
  • 2. Building Your Page
  • Planning your page
  • Developing an asset package
  • Creating a new page
  • Filling out your page information
  • Changing your logo and cover image
  • Choosing a web address for your page
  • Publishing your page
  • 3. Building Your Community
  • Inviting friends to like your page
  • Inviting people via email
  • Sharing your page to a Facebook profile
  • 4. Engaging Your Community
  • Posting effective status updates
  • Sharing photos and video
  • Highlighting and pinning posts
  • Scheduling posts on your page
  • Creating Facebook events
  • Creating interactive polls
  • Sharing your milestones
  • Tagging people in posts
  • Working with messages
  • 5. Using Ads and Promoted Posts
  • Exploring Facebook Ads
  • Creating a basic Facebook Ad
  • Using promoted posts
  • 6. Understanding Insights
  • Getting started with Insights
  • Understanding page performance
  • Understanding your audience
  • Exporting your Insight data
  • 7. Adjusting Page Settings
  • Managing page permissions
  • Adding page administrators
  • Enabling post privacy
  • Banning users from your page
  • Adjusting page notifications
  • 8. Extending the Facebook Experience
  • Exploring the Facebook Pages Manager app
  • Sharing to your page via mobile devices
  • Using messages on mobile devices
  • Using third-party services for Facebook

Downlaod Links 

Download From : 1fichier.com
Download From : tusfiles.net
Download From : novafile.com
Download From : uploaded.net
Download From torrent file : torrent
Read More