Skip to main content

Customized Online Learning Dangerous as it is Necessary

The recent uprise in Online Learning Platform like Pluralsight, Coursera has raised some important questions over traditional learning system and also on traditional examination systems.
The fact that online learning courses are derived from what users need and not what should be actually taught has also raised serious concerns about what is finally going inside the heads of professionals.

Traditional system while teaching any subject also includes major things that might never be used in real life but still is important to actual context of that particular subject. The syllabus goes through the hands of experts before finally reaching the learners. Online education / Videos have completely disrupted this system and now only what is needed is taught leaving out all the motivational factors and context of the subject that brings glamour and other related attributes to the identity of the subject.

So yes while system has to evolve to teach students more than C++ in today's world but also the roots of the system lies in not only getting the work done but also getting it done in lowest cost possible and in the maximum efficiency possible.

On the other hand demand based learning has proved itself in the era of market demands. The demand generates the need for specialized and low time consuming courses. Courses free from routine restrictions. Popularity of these courses can be a starting point in blowing the education bubble as predicted my many industry experts.

Comments

Popular posts from this blog

Problem with Google visualization API- DataTable

One of the most widely charting API is the Google visualization API . Which enables the developers to create charts using javascript at runtime by supplying the data in a particular format. I had to use this API with ASP.Net. So the major problem in front of me was how to transfer the data in my database to the client side JavaScript. Which I could solve by using .ashx pages. I created my own class for transforming .Net DataTable to a JSON string. The final problem that I faced was that when I transferred the JSON string to the client side using Jquery AJAX method though it was parsing the JSON correctly. The Google DataTable was being formed correctly the final AnnonatedTimeline I was trying to make with that JSON data was showing errors. So to debug I created a Google DataTable manually and converted it into JSON using the method it provides. The JSON string that was given out by Google’s very own DataTable and my JSON string were exact match still, still mine was showing ...

Its a Dynamic(javascript) world

I thought we are living in a world which looked like this ||(or) mayb this http://www.ihatejavascript.com/ .. LOL being a web developer i was working with javascript and also at the same time i always preferred to work with something else... Silverlight, Flash mayb.. till recently.. i actually saw what JAVASCRIPT is || has become in the time i worked on ASP.Net MVC. Javascript evolved from a dynamic sort of functional language that was differently implemented by nearly every browser(and yes that was for you IE6 ) and every one hated him and i thought it still is that ulgy thing. till i just stumbled upon THIS This is an old video.. someone was just trying to bring the Javascript to server side. so now same developer /*Who a Javascript developer?*/ can work on both the sides.. client as well as web. and thought that things like these shouldn't be allowed on internet maybe because its a hour long video and now has around 233,492 views just consider the am...

Data manipulation in azure development storage by using web services – workaround

While developing the Azure project this was the biggest problem I came across and being just a newcomer in this area I could not solve it. So I figured a way around that worked perfectly well and then I used it to finally make a working project. Nearly all the solutions I came across in the different portals were about the same problem without the development storage anywhere in question but for the people who first need to make a working solution in the development storage using anything like the VS2010 there was no help nowhere. The problem was that while accessing data which was stored in a blob in cloud storage through a web service by a Silverlight client. It gives an impression to the storage of the cloud that this is being done by cross site scripting (this is what I got from all the different sources I read) and because this was not allowed the cloud project (webrole in my case) was blocking the request and was returning nothing in return. So this solution that I figured out i...