Showing posts with label elearning. Show all posts
Showing posts with label elearning. Show all posts

Saturday, April 9, 2011

TekPub - Mastering Linq Training

TekPub - Mastering Linq TrainingIn this series Justin Etheredge starts out by diving into the fundamentals of Linq, how it works, and the features added to C# 2.0 and 3.0 that make it possible (Episodes 1 & 2). Justin will then dig into all of the various Linq functions available and how each of them works. He will then touch on Parallel Linq and introductions to Linq to XML and Linq to SQL.

1 - The Fundamentals of Linq Pt. 1
In this episode Justin covers the var keyword, extension methods, collection initializers, delegates, anonymous delegates, and lambas to show all the features used to make Linq possible.

2 - Working with yield, Where, Select and the Stack Overflow Data
In this episode Justin digs into how yield works, a complete look at the Where function and a beginning look at the Select function. In this episode Justin introduces the Stack Overflow data set that will be used as an example data set for the rest of the episodes.

3 - Exploring Select, Tuples, and Anonymous Types
In this episode Justin digs into the Select function and shows various ways to control what is returned including using custom classes, tuples, and anonymous types.

4 - Exploring Order, Take, Skip, and Aggregation Functions
In this episode Justin explores the OrderBy, OrderByDescending, Take, Skip, TakeWhile, SkipWhile, Sum, Average, and Aggregate functions of Linq.

5 - Exploring Element, Quantifying, and Set Operators as well as SelectMany.
In this episode Justin covers the Quantifying operators (Any and All), element operators (Single, First, Last, ElementAt), set operators (Distinct, Intersect, Union) and finally SelectMany.

6 - Exploring Conversion and Joining/Grouping Operators
In this episode Justin covers the conversion operators (cast, toArray, toList) as well as joining, group by, and group join as well as the new Zip method in .NET 4.0.

7 - Linq to SQL and Expression Trees
In this episode Justin covers the basics of Linq To SQL and dives down into the internals of Linq and how Expression Trees work and make services like Linq to SQL possible. Fair Warning: This episode gets very deep and may blow your mind.

8 - Introduction to Linq to XML
In this episode Justin gives a quick introduction to Linq to XML and how to use it for both creating and parsing XML documents.

9 - Introduction to Parallel Linq (PLINQ_
In this episode Justin dives into Parallel Linq (PLINQ). He covers the basics and shows some simple ways to test whether PLINQ is speeding up or slowing down your queries.

No problem can be solved by the same consciousness that created it. We need to see the world anew - Einstein

Screenshot: http://www.filesonic.vn/sonic-preview/802911
Download from FileSonic:

http://www.filesonic.com/file/500689371/Mastering.Linq.part1.rar
http://www.filesonic.com/file/500838241/Mastering.Linq.part2.rar
http://www.filesonic.com/file/500650431/Mastering.Linq.part3.rar

Download from FileServe:

http://www.fileserve.com/file/aXzykQA/Mastering.Linq.part1.rar
http://www.fileserve.com/file/aErddcD/Mastering.Linq.part2.rar
http://www.fileserve.com/file/7ZtU6tT/Mastering.Linq.part3.rar

Download from BitShare:

http://bitshare.com/files/woly17qs/Mastering.Linq.part1.rar.html
http://bitshare.com/files/rblzvjet/Mastering.Linq.part2.rar.html
http://bitshare.com/files/bxht0fhy/Mastering.Linq.part3.rar.html

Read More..

Stash DVD Magazine Issue 03 Tutorial

Stash DVD Magazine Issue 03 TutorialThe monthly video showcase of outstanding animation, VFX and motion graphics for design and advertising

Download from FileSonic:

http://www.filesonic.com/file/501184161/Stash.DVD.Magazine.Vol.03.part1.rar
http://www.filesonic.com/file/500713501/Stash.DVD.Magazine.Vol.03.part2.rar
http://www.filesonic.com/file/501188401/Stash.DVD.Magazine.Vol.03.part3.rar
http://www.filesonic.com/file/500723691/Stash.DVD.Magazine.Vol.03.part4.rar
http://www.filesonic.com/file/501226211/Stash.DVD.Magazine.Vol.03.part5.rar
http://www.filesonic.com/file/501216471/Stash.DVD.Magazine.Vol.03.part6.rar

Download from FileServe:

http://www.fileserve.com/file/5F3sQCu/Stash.DVD.Magazine.Vol.03.part1.rar
http://www.fileserve.com/file/cVmtUha/Stash.DVD.Magazine.Vol.03.part2.rar
http://www.fileserve.com/file/Qr5an7Y/Stash.DVD.Magazine.Vol.03.part3.rar
http://www.fileserve.com/file/Qnc7zUT/Stash.DVD.Magazine.Vol.03.part4.rar
http://www.fileserve.com/file/GVZ92sw/Stash.DVD.Magazine.Vol.03.part5.rar
http://www.fileserve.com/file/Y4xvWUr/Stash.DVD.Magazine.Vol.03.part6.rar

Download from BitShare:

http://bitshare.com/files/ymafja7s/Stash.DVD.Magazine.Vol.03.part1.rar.html
http://bitshare.com/files/3v7r88xi/Stash.DVD.Magazine.Vol.03.part2.rar.html
http://bitshare.com/files/rg00hslq/Stash.DVD.Magazine.Vol.03.part3.rar.html
http://bitshare.com/files/2bnqich3/Stash.DVD.Magazine.Vol.03.part4.rar.html
http://bitshare.com/files/tf7tscfs/Stash.DVD.Magazine.Vol.03.part5.rar.html
http://bitshare.com/files/n6jhajii/Stash.DVD.Magazine.Vol.03.part6.rar.html

Read More..

Tekpub - Mastering Sinatra Tutorial

Tekpub - Mastering Sinatra TutorialRob Conery walks you through Sinatra, the lightweight Ruby web framework. Along the way you’ll get to know Vim, HAML, and MongoDB as Rob rebuilds the MVC Music Store completely with Sinatra. "Understanding Rack" is bundled with this production and is Episode 2.

1 - Introduction
In this episode Rob shows you what Sinatra is and why you should care. Next comes installation - Rob walks you through setting things up on Windows using E Text Editor and Cygwin

2 - Rack
This episode is a port of our current Rack production. If you want to use Sinatra, you need to understand what Rack is and how it works.

3 - Sinatra Music Store: Iteration 1
In this episode we go over the basics of building an application with Sinatra starting with Vim, HAML, and Rack middleware.

4 - Importing Data with Rake and Nokogiri
In this episode I pull in the Chinook sample data from an XML file, parsing it with Nokogiri inside of a Rake task. In addition I build out the Sinatra Music Store catalog pages (Genre and Album)

5 - RSpec
In this episode I kick up a Customer application and work in RSpec - a Behavior-Driven Design tool for Ruby applications. I then build out the shopping cart using split-window Vim coolness, with Autotest and Growl.

6 - URLs
In this episode I talk about URLs - creating helpers to work with them in your views, how to handle parameters gracefully, how to deal with a situation when more than one route matches your request, and how to deal with 404s.

7 - Infrastructure
In this episode I show you how to use helpers and extensions with Sinatra, setting up authentication, logging, and more.

8 - Deployment
In this, the final episode of the series, Rob ties up the Sinatra Music Store application and deploys to Heroku, showing you how to setup your database at MongoHQ and get your gems in order with Bundler. The series wraps up with a discussion on when it's appropriate to use Sinatra vs. Rails or other frameworks.
Download from FileSonic:

http://www.filesonic.com/file/500749761/Tekpub.Mastering.Sinatra.part1.rar
http://www.filesonic.com/file/500759231/Tekpub.Mastering.Sinatra.part2.rar
http://www.filesonic.com/file/500772841/Tekpub.Mastering.Sinatra.part3.rar
http://www.filesonic.com/file/501299171/Tekpub.Mastering.Sinatra.part4.rar

Download from FileServe:

http://www.fileserve.com/file/HvbEVKv/Tekpub.Mastering.Sinatra.part1.rar
http://www.fileserve.com/file/929Gur7/Tekpub.Mastering.Sinatra.part2.rar
http://www.fileserve.com/file/89uueBE/Tekpub.Mastering.Sinatra.part3.rar
http://www.fileserve.com/file/NTAGAkf/Tekpub.Mastering.Sinatra.part4.rar

Download from BitShare:

http://bitshare.com/files/7aiz1ygx/Tekpub.Mastering.Sinatra.part1.rar.html
http://bitshare.com/files/731994xa/Tekpub.Mastering.Sinatra.part2.rar.html
http://bitshare.com/files/t2lfrnat/Tekpub.Mastering.Sinatra.part3.rar.html
http://bitshare.com/files/bmwetj0k/Tekpub.Mastering.Sinatra.part4.rar.html

Read More..

Wednesday, April 6, 2011

Don Mock - The Blues From Rock To Jazz

Don Mock - The Blues From Rock To JazzAlfred’s Artist Series has expanded to include Don Mock: The Blues from Rock to Jazz.
Don Mock is internationally recognized as a master educator, guitarist, author, recording artist, composer, and synthesizer stylist. As one of the three original founding instructors at the Guitar Institute of Technology (GIT) in Hollywood, Don has long been known and respected for his broad knowledge of the instrument.

In this DVD, Don uses the basic blues progression as a vehicle to teach chords and soloing techniques found in contemporary blues and jazz fusion. He starts by guiding you through the dominant chord family, showing the basic chords and their substitutions for comping, plus scales, arpeggios and melodic ideas for improvising.

Next, he covers how to solo over each chord in the 12-bar blues using secondary dominants and the turnaround. Finally, he breaks down three jazz-fusion 12-bar blues solos, with an in-depth analysis of each bar.

Special features include a printable PDF booklet with note-for-note transcriptions, a bonus performance from Robben Ford’s The Blues and Beyond, and a bonus lesson from The Definitive Steve Morse.

Downloads :
http://www.filesonic.com/file/518750464/Don.Mock.The.Blues.From.Rock.To.Jazz.part1.rar
http://www.filesonic.com/file/518647664/Don.Mock.The.Blues.From.Rock.To.Jazz.part2.rar

Read More..

Linux Virtualization CBTs [Ogg-Theora]

Linux Virtualization CBTs [Ogg-Theora]Virtualization is a term that refers to the abstraction of computer resources. In simpler words, the mechanism to run multiple instances/copies of various operating systems inside a base operating system, mainly to utilize under-used resources on the physical host, where base operating system is running.

Downloads :
Download From Fileserve:
http://www.fileserve.com/file/CjvHjhf/Virtualization_CBT.part1.rar
http://www.fileserve.com/file/GErPaX5/Virtualization_CBT.part2.rar
http://www.fileserve.com/file/qkGXhdJ/Virtualization_CBT.part3.rar
http://www.fileserve.com/file/ADHWXwB/Virtualization_CBT.part4.rar

Download FromFileSonic(Sharingmatrix):

http://www.filesonic.com/file/488428854/Virtualization_CBT.part1.rar
http://www.filesonic.com/file/488428804/Virtualization_CBT.part2.rar
http://www.filesonic.com/file/488428004/Virtualization_CBT.part3.rar
http://www.filesonic.com/file/488428724/Virtualization_CBT.part4.rar

Download From Uploadstation:

http://www.uploadstation.com/file/HAN86xx/Virtualization_CBT.part1.rar
http://www.uploadstation.com/file/fEj4ba9/Virtualization_CBT.part2.rar
http://www.uploadstation.com/file/Qm5Z25J/Virtualization_CBT.part3.rar
http://www.uploadstation.com/file/hQ2RBrF/Virtualization_CBT.part4.rar

Read More..

Tuesday, April 5, 2011

Tekpub - Mastering Silverlight 4 ENG

Tekpub - Mastering Silverlight 4 ENGTekpub - Mastering Silverlight 4 ENG
English | FLV1 1000x600 | MP3 12 Kbps | 1.27 GB
Genre: eLearning

In this series you will learn the basics of working with Silverlight, and then quickly transition to more advanced topics such as working with data, understanding XAML, and hooking into external services.

Download:

http://www.fileserve.com/file/G2Eddas/astering.Silverlight.4.part01.rar
http://www.fileserve.com/file/KZ7UJ8X/astering.Silverlight.4.part02.rar
http://www.fileserve.com/file/FmwnmG5/astering.Silverlight.4.part03.rar
http://www.fileserve.com/file/zFnPVsk/astering.Silverlight.4.part04.rar
http://www.fileserve.com/file/HTX38qQ/astering.Silverlight.4.part05.rar
http://www.fileserve.com/file/8nNfhKq/astering.Silverlight.4.part06.rar
http://www.fileserve.com/file/VmWz8dU/astering.Silverlight.4.part07.rar
http://www.fileserve.com/file/S8f6DS6/astering.Silverlight.4.part08.rar
http://www.fileserve.com/file/4ghtfN9/astering.Silverlight.4.part09.rar
http://www.fileserve.com/file/vsJp55c/astering.Silverlight.4.part10.rar
http://www.fileserve.com/file/YnJjDA9/astering.Silverlight.4.part11.rar

Mirror 1 :

http://www.filesonic.com/file/499343574/astering.Silverlight.4.part01.rar
http://www.filesonic.com/file/499343554/astering.Silverlight.4.part02.rar
http://www.filesonic.com/file/499350384/astering.Silverlight.4.part03.rar
http://www.filesonic.com/file/499350254/astering.Silverlight.4.part04.rar
http://www.filesonic.com/file/499357094/astering.Silverlight.4.part05.rar
http://www.filesonic.com/file/499357064/astering.Silverlight.4.part06.rar
http://www.filesonic.com/file/499363044/astering.Silverlight.4.part07.rar
http://www.filesonic.com/file/499362954/astering.Silverlight.4.part08.rar
http://www.filesonic.com/file/499367924/astering.Silverlight.4.part09.rar
http://www.filesonic.com/file/499367744/astering.Silverlight.4.part10.rar
http://www.filesonic.com/file/499374744/astering.Silverlight.4.part11.rar

Mirror 2 :

http://uploading.com/files/e12camaa/astering.Silverlight.4.part01.rar
http://uploading.com/files/6md59227/astering.Silverlight.4.part02.rar
http://uploading.com/files/844f882d/astering.Silverlight.4.part03.rar
http://uploading.com/files/4f63d5ad/astering.Silverlight.4.part04.rar
http://uploading.com/files/bd737e38/astering.Silverlight.4.part05.rar
http://uploading.com/files/ba5986mb/astering.Silverlight.4.part06.rar
http://uploading.com/files/128c79c3/astering.Silverlight.4.part07.rar
http://uploading.com/files/36f4c46a/astering.Silverlight.4.part08.rar
http://uploading.com/files/b2cc6dm2/astering.Silverlight.4.part09.rar
http://uploading.com/files/c9768843/astering.Silverlight.4.part10.rar
http://uploading.com/files/e9b683mb/astering.Silverlight.4.part11.rar

Read More..

Monday, April 4, 2011

Guitar World - How to Play the Best of the Jimi Hendrix Experience's Electric Ladyland

Guitar World - How to Play the Best of the Jimi Hendrix Experience's Electric LadylandGuitar World - How to Play the Best of the Jimi Hendrix Experience's Electric Ladyland
DVD5 | 2009 | DVD video | MPEG2 | 720х480 | 29.97 fps | AC3, 192 kbps | 3.14 GB
Genre: Elearning

3 Hours of lessons! Hendrix authority Andy Aledort walks you through the guitar parts on six songs from Jimi's timeless masterpiece Electric Ladyland.
Each track is meticulously recorded and videotaped by the experts at Guitar World Magazine.
Learn the style and licks from this classic album that have been the tools that have given the best guitarists the flare that separates them from the rest.
Includes bonus rare behind the scenes footage of the making of Jimi's third album.

The Songs:
- Have You Been
- Crosstown Traffic
- Come On
- Gypsy Eyes
- All Along The Watchtower
- Voodoo Child

Download (Links)
http://www.filesonic.com/file/485718044/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part1.rar
http://www.filesonic.com/file/482814514/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part2.rar
http://www.filesonic.com/file/485723214/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part3.rar
http://www.filesonic.com/file/485728024/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part4.rar
http://www.filesonic.com/file/482896214/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part5.rar
http://www.filesonic.com/file/482909984/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part6.rar
http://www.filesonic.com/file/482874544/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part7.rar
http://www.filesonic.com/file/482854784/08.Guitar.World-How.to.Play.the.Bes. of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part8.rar


http://www.fileserve.com/file/FQhJTns/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/czArzAf/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/Mf6FsGJ/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/6TshcuQ/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/xxMnMeA/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/mXJZE3m/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/JPJ57qe/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/jujw5Wu/08.Guitar.World-How.to.Play.the.Bes.
http://www.fileserve.com/file/4q9n59U/08.Guitar.World-How.to.Play.the.Bes.


http://bitshare.com/files/ngro81i8/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part1.rar.html
http://bitshare.com/files/lt8oyo3l/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part2.rar.html
http://bitshare.com/files/tcm4ulkm/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part3.rar.html
http://bitshare.com/files/l5e8e73p/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part4.rar.html
http://bitshare.com/files/qk6aiz2l/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part5.rar.html
http://bitshare.com/files/c1w6v8up/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part6.rar.html
http://bitshare.com/files/0o178qiq/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part7.rar.html
http://bitshare.com/files/rhoyk7vv/08.Guitar.World-How.to.Play.the.Bes.-of.the.Jimi.Hendrix.Experiences.Electric.Ladyland.part8.rar.html

Read More..

Sunday, April 3, 2011

Sound Plus Vision - April & May 2011

Sound Plus Vision - April & May 2011Sound Plus Vision - April & May 2011
English | PDF | 30 Mb | 88 Pages
Genre: E-Learning
FileServe FileSonic links

SOUND Plus VISION provides readers with authoritative information on the entertainment technologies and products that will impact their lives. Features offer accessible information for the enthusiast and novice on home theater, audio, video and multimedia products, with a comprehensive annual Buyers Guide. Sound Plus Vision offers advice on choosing components and integrating audio and video into home theater systems, as well as offering movie and music news and reviews..


Download :
http://www.fileserve.com/file/NcnW7pp/Sound_Vision_Apr_May_2011.pdf

Read More..

Saturday, April 2, 2011

Basic Human Embryology: Temple University School of Medicine

Basic Human Embryology: Temple University School of MedicineBasic Human Embryology: Temple University School of Medicine - 2010 H264

English | MP4 | H264 215 kbps 25 fps | 720 x 576 | | 391 MB

Genre: elearning

01 - Early Embryology

02 - Vertebrate body plan
03 - Limb Development

04 - development of muscle and nerve

05 - Cardiovascular Embryology

06 - Cardiovascular Embryology II

07 - Respiratory development

08 - GI Development

09 - Development of the Kidney

10 - Head and Neck I

11 - Head and Neck development

12 - Reproductive system final

ScreenShots:

Home: http://sevno.org/

Download :
http://www.filesonic.vn/file/181545771

Read More..

Design by Free blogger template | Edited by Free eBooks