Skip to main content

Informal web based learning

Would you like to engage in web based informal learning, rather than learning in a classroom? There are several advantages in doing so:

  • You can learn at your time, place, and pace
  • You can engage in more reflection, which will enable a better learning experience, more retention, and clearer perspectives
  • Statistics show that classroom based corporate training just does not work


There are several resources (free as well as paid) that will help you in your learning endevours. I will publish links to such learning resources constantly on this blog. Here's one to start with.

Sang Shin facilitates free online Java courses on his Java Passion website. It's really neat.

If you are curious about what informal learning is and why it is better than formal learning, you may also want to check out Jay Cross' blog, and this webpage



Notes: This text was originally posted on my earlier blog at http://www.adaptivelearningonline.net
Here are the comments from the original post

-----
COMMENT:
AUTHOR: Ramesh
URL:
DATE: 08/21/2006 08:56:54 PM
Nice information. Thanks a ton..Keep it up !!

COMMENT:
AUTHOR: Sachin More
EMAIL: sachin_more@omniscientweb.com
URL:
DATE: 08/23/2006 04:25:24 PM
No doubt informal learning is anytime better then formal!,

The only thing I felt is you should be very clear what you want to learn, and thats about it.

COMMENT:
AUTHOR: Parag
DATE: 08/23/2006 05:14:08 PM
Sachin,
That was a good observation. In a formal learning scenario you are lead by a coach, it is analogous to being in a school bus, where the route is fixed.
Informal learning on the other hand is like riding a bicycle. You are on your own. This gives tremendous power but also comes with a responsibility to take charge of your learning requirments.
It is very important to first make a plan, then identify resources, and then stick to the plan with discipline, unless there is a good reason to swerve.


COMMENT:
AUTHOR: A.K.Purandare
EMAIL:
URL:
DATE: 06/24/2007 01:11:23 PM
Dear Parag,
Your description brings out the fact that for the learners who are not matured enough(Say in a particular field) class room training may bring satisfaction.while for advanced learner there is no equivalent to on line learning .

COMMENT:
AUTHOR: Parag
DATE: 06/25/2007 05:30:44 AM
Hello,

For an advanced learner, someone who knows what they are looking for, self motivated and self led learning usually works out best. Online is good because it allows the the learner to connect with resources (information as well as mentors) online. This is a big advantage, since it makes collaboration very simple.

Someone who is not yet as mature, will need more hand holding and guidance, which usually happens best in the classroom ( if at all :-) )
--
Regards
Parag

Comments

Popular posts from this blog

Running your own one person company

Recently there was a post on PuneTech on mom's re-entering the IT work force after a break. Two of the biggest concerns mentioned were : Coping with vast advances (changes) in the IT landscape Balancing work and family responsibilities Since I have been running a one person company for a good amount of time, I suggested that as an option. In this post I will discuss various aspects of running a one person company. Advantages: You have full control of your time. You can choose to spend as much or as little time as you would like. There is also a good chance that you will be able to decide when you want to spend that time. You get to work on something that you enjoy doing. Tremendous work satisfaction. You have the option of working from home. Disadvantages: It can take a little while for the work to get set, so you may not be able to see revenues for some time. It takes a huge amount of discipline to work without a boss, and without deadlines. You will not get the benefits (insuranc...

Testing Groovy domain classes

If you are trying to test Grails domain class constraints by putting your unit test cases in the 'test/unit' directory, then your tests will fail because the domain objects will not have the 'valdate' method. This can be resolved in two ways: Place the test cases inside test/integration (which will slow things down) Use the method 'mockForConstraintsTests(Trail)' to create mock method in your domain class and continue writing your test cases in 'test/unit' What follows is some example code around this finding. I am working on a Groovy on Grails project for a website to help programmers keep up and refresh their skills. I started with some domain classes and then moved on to write some unit tests. When we create a Grails project using grails create-app , it creates several directories, one of which is a directory called 'test' for holding unit tests. This directory contains two directories, 'unit', and 'integration' for unit and ...

Planning a User Guide - Part 4/5 - Get Your Toolbox Together

Photo by  Fleur Treurniet  on  Unsplash In the previous post , I had discussed how to organize the team for creating your software's user manual. With the team ready, the next step is to select the tools. Working with the right technical writing tools is as important in technical writing as it is in building software. The right tools will help you be more organized, productive, and accurate in your work.  In software, we use an IDEs, testing tools, and version control tools to manage our work. In technical writing, at a bare minimum, we use a content authoring tool, an automated grammar checker, and visual tools to assist us in our work.  I'll discuss various tools that are available in the market, link to comparisons, and share my opinion to help you make the right choice. Help Authoring Tools A Help Authoring Tool (HAT) offers several features that go beyond simple word processing software for writing technical documents. HATs s...