Technically, the first module for my degree course will start 1 October.  But that’s a Saturday.  Who starts anything on a Saturday?  Heck, even weekends start Friday night.

So there are realistically two other dates which combine for a ‘soft start’ to the module, ahead of the 1 October hard start.  These dates are the Module Website Live/Open date, and the date materials are received.  One might think that this would be one or two days after the Materials Despatch date, but often materials seem to be received the day before this date, so who knows.

The website open date for TU100 this year is 6 September, and the Materials Despatch date is 9 September.  Since that’s a Friday, I expect that the materials will probably show up the following Tuesday.  So I’m going to call the Soft Start date for TU100 this year 13 September.  We’ll call that three weeks away.

So what’s happened lately, and what’s going to happen?

Yesterday, our Introduction Forums opened.  They’re rather hard to find, though.  The site they’re on is called “Student Support Forums” allegedly under the Student Planner.  But I can’t actually find a link to the Student Planner anywhere.  That’s one of the major flaws of the OU: They keep coming up with great new ideas, but they don’t remove all the old ideas, so it’s kind of like trying to find your way through a really old London hotel that’s been cobbled together from a few other buildings.  You can’t necessarily get to the next room by walking in a straight line.  It may require you to go back up the hall, take a lift down, over a hallway, take a half flight of stairs to a mezzanine, and then swing across a chasm to the room.

Anyway, don’t lose your link, or you’ll never find your way back to the Student Support Forums.  I think it’s because they’ve opened them before opening our website.

The Introduction Forums have been positively flooded.  There’s several dozen posts already for Computing & IT, and only the Psychology forum comes close to the same number.  And the Psychology intro forum looks like someone’s kicked over an ant hill.  There’s hundreds of conversations all over the place, so I don’t know if it’s lots of different people talking, or the same three creating a new thread every time they have a new thought.  I suspect the former, however, as I’ve read that Psychology had the largest intake of new students every year.

This kicked off a new spate of new Facebook groups. I think that’s really a good thing, though.  Because if each of these groups has a slightly different flavour, it’s going to be easier to find one that works for me and my specific needs.

It also brought up a topic which had been brought up a few times in the past couple of weeks: Sense.  Once again, Sense is the customised version of Scratch developed specifically for TU100.  Our Introduction Forum moderator sort of warned everybody that they’d damage their brains if they downloaded Scratch, and that they’d be risking eternal damnation if they downloaded Sense from the OU before the Official Grand High Link from the Module Website opened.

Which is rubbish.  Download Sense and play with it.  It’s not as good as modern Scratch, but it’s fun.  If you want a more useful language that’s still exactly as simple, download Scratch or use the cloud version.  Heck, download Scratch 1.4, which is nearly identical to Sense except for TU100 specific things.  If you want to know what to do with Sense, search for tutorials on Scratch 1.4.  Or, y’know, wait for the soft start.

Course Title: CS002x Programming in Scratch
Provider: Harvey Mudd College via edX
Price: Free
Level: Introductory (suited to children)
Effort: 6 hours per week for 6 weeks, commencing on a set date
Prerequisites: None
Completion awards: Verified Certificate for USD$49

About the course:
This is not at all a bad course.  It’s well-suited to children, or really just about any ability level.  The children do need to be able to understand a fair amount of logic.  It’s a bit much for my 6-year-old son, even though he enjoys using Scratch.  (His ability level is simply knowing that command blocks are instructions for sprites, and lists of command blocks can be strung together.)

The course is described as a computer science course, but I really can’t feel like that’s justified. It’s a tour of Scratch’s capabilities, but doesn’t often describe theory or reasons for much.  There is an excellent amount of work with iteration, however.  One brief section also compares Scratch to industry standard programming languages, to show how the learning can be applied outside the Scratch environment.

Aside from it using Scratch, there was no prior indication that it was aimed at children, which it really is.  As Open University’s TU100 uses Sense, an off-shoot of pre-1.4 Scratch, there’s no reason to believe that a computer science course which uses Scratch must be a de facto children’s course.  There were plenty of students across many abilities and ages, so the discussion forums were a bit uneven at best.

The tour of Scratch begins with Scratch as the idealogical descendant of Logo incorporating a turtle graphics system.  This was bizarrely effective, because I was able to recall line-for-line programmes I wrote in Logo back in 1986 or ’87 after two weeks of lessons during elementary maths.  I reproduced it with just the addition of colour.

It winds past variables, iteration (as mentioned above), input, sprite-interaction, if-then-else logic, more iteration, functions, external calls, and even implies recursion with sprite clones.  Okay, for me, it took about 10 or 11 hours to get through everything but the final project, but that’s quite a list, and I can easily see it taking a young student a few weeks to get through that all.  But they will get through it all.  It’s all very logically laid out, it’s interesting, fun, and cool to keep them engaged, there are always lots of examples, and the progress made is a great confidence builder.

One confusing aspect is that the course has been adapted from some other curriculum, so it occasionally refers to weeks or other structures not present in the online, self-paced course.  It’s easy enough to ignore, but raises questions of how thoroughly prepared it is.

Two questions you might have for me are why did I take it, and what did I learn.

As stated, TU100 at the Open University, my first degree course module, uses Sense, which is based on Scratch.  Though I’ve played with Scratch before, and been impressed by it, I haven’t done anything in depth with it.  I was unaware of its true capabilities.  In a way, it’s a bit of a tragedy that I did that.

Scratch 1.6 is amazing.  It has functions, clones, lists, recursion … It’s great.  Sense, based on 1.4 or before, does not have clones, has no in-built stack for handling recursion data, and has to use calls for functions.  It appears as though it does have lists, in a custom solution.  I haven’t used it yet, so I’m still not sure.  I’m just lamenting that if I want to do recursion, I’ll have to use those lists to build my own stack.  Every. Single. Time.

And what did I learn?  Plenty!  One of my favourite moments was when I was polishing up my final project, and I wanted a custom score counter.  I searched the Internet for a Scratch solution, but couldn’t find anything that worked the way I wanted.  The closest I found was one which had a pre-set number of digits, with a separate sprite for each digit.  I realised that I could use recursion to call new clones of a single sprite to dynamically create as many digits as I wanted.

Another great moment is when I wanted to re-write a Rock-Paper-Scissors demo to include Rock-Paper-Scissors-Lizard-Spock.  The course wanted an If statement for each of the possible outcomes.  With Rock-Paper-Scissors, that’s just 6 possibilities.  With Spock and Lizard in the mix, it goes up to 15, and that’s already annoying.  So I diagrammed out the possibilities, saw a pattern, applied some modal maths, and realised there were really only three possible outcomes after said application.

So here are a couple of the things I created.  You can look inside any of the programmes to see how I did them, keeping in mind that I was learning as I went, so it’s not always the most logical way in the simpler programmes.

Jet Bike Steve: You Win Some, You Jetsam (Final project) WASD or arrow keys, up, W, or space to fire. 10 points per second survived, 10 points per star shot or collected, 25 points per bomb shot, and 50 points per guided-missile shot.

Derpa Deadfish (a game for my oldest boy)  You can go down, right, or left, but can only float up. Collect worms, avoid sharks (or turn them off), and use the safe-zone pad at the bottom.

Course Title: How to Code – Systematic Program Design
Provider: University of British Colombia via edX
Price: Free
Level: Introductory
Effort: 5 hours per week, 5 weeks per course, 3 courses – about 75 hours
Prerequisites: None
Completion awards: Verified Certificate for each of the three courses (USD$49 or $50, depending on which link you click on), automatically awarded XSeries Certificate if all three Verified Certificates are awarded

About the course:
Go.  Sign up now.  I don’t care if you hate computers or have been programming professionally for years.  This is an amazing series and getting through the course is highly rewarding.

There’s a lot to say about this series.  For one thing, the level of effort required is very real.  It took me three or four weeks to get through all three courses, and I was staying up late for hours on end.  And I’m considering working through it all again so that I retain it longer.

Beyond that, let’s start with the concept.  The SPD course introduces the idea of designing a computer programme as an abstraction layer between the solution and the coding.  It’s a tool for producing a template for a solution which is orthogonal to the language being used.  And it’s genius.

SPD takes this method from the How To Design Programs book, by Matthias Felleisen, Robert Bruce Findler, Matthew Flatt, and Shriram Krishnamurthi.  It focuses on data-driven programme design, which was a new concept for me.  You define data, which informs what can be done with it, which influences function design, and so on.  By the end of the course, there were still experienced code-jockeys decrying the lack of well-named variables, without realising that when you’ve clearly defined your data and what it can and can not represent, it’s irrelevant. You can’t possibly be confused what “variable c” means when you’ve stated that the only valid data type for variable c is degrees Celsius.  If you’re an old hand at programming and haven’t used data-driven programme design before, it’s worth a look to evaluate why you do things the way you do them.

It uses its own beginner language that isn’t outrageously useful outside educational context.  It is Turing complete, but it’s a bit of a pain to use in real situations.  Its environment is also quite slow.  The reasons for not using a commercially viable language are discussed early on, and I wholeheartedly embrace those reasons.

By the end of the first course, you’re already designing your own programmes using the data-driven model. It was around this point that I realised the beauty of defining the data and describing functions based on it.  If data X has properties Y and Z, then I can write functions for X that read and/or modify Y and Z, either by itself, or in relation to other data.  It dove-tails beautifully with object-oriented programming, but the course doesn’t cover application of its high-level theories to low-level techniques with other languages.  (However, the ProgramByDesign project is also working on How to Design Classes which features at least a subset of Java.)

Professor Gregor Kiczales is one of the best technical instructors I’ve ever seen, and I used to do that professionally.  His focus is on getting the programme design right, so that the code can flow naturally from that design.

It is an amazing foundation for how to approach programming design.  Playing with Scratch, I didn’t imagine I could possibly apply the HtDP principles to such a strange and specific programming environment.  However, I ran into a few bumps so I broke out data definitions and templating, and solved the problems in minutes. (Note: Never underestimate the power of testing well-chosen and well-defined examples.)

Anyway.  Just sign up.  Sure, it’s 50 to 80 hours out of your life, but it re-introduces you to the digital world in a way which will undoubtedly increase your comfort with it.

I’ve done a lot of MOOCs in the last few weeks.  The vast majority of them rate “Meh” on the scale from “Ack!” to “HOLYCANIBITZ!”  At the two extremes, I feel like I should say a bit more about them, but here are a bunch of the Meh courses that are so forgettable that I don’t have much to comment on.

Course Title: English: Skills for Learning
Provider: The Open University via OpenLearn
Price: Free
Level: Introductory
Effort: Self-paced, 24 hours, estimated 8 weeks
Prerequisites: None
Completion awards: Statement of Participation, Open Badge

About the course:
This was a fair mix of instruction and practical exercises.  The information in this course is a very small subset of the information in The Good Study Guide, which I’ve previously mentioned.  The actual time on the course for me (taking the practical exercises very seriously) was about 6 hours.  If I didn’t have the Good Study Guide, it may have been a nice reference before beginning higher education.

 

Course title: Information Security
Provider: The Open University via OpenLearn
Price: Free
Level: Advanced
Effort: Self-paced, 10 hours
Prerequisites: None
Completion awards: Statement of Participation

About the course:
This course is listed as an advanced course, but I can’t for the life of me figure out how. Really, this could have been a much shorter MOOC than its realistic 90 minutes (most of which was spent choosing and listening to a podcast): CIA stands for Confidentiality, Integrity, and Accessibility, and listen to information security podcasts.  Job done.

 

Course Title: Good Brain, Bad Brain: Basics
Provider: University of Birmingham via FutureLearn
Price: Free
Level: Introductory
Effort: 9 hours over 3 weeks, commencing on set date
Prerequisites: None
Completion awards: Certificate of Achievement + Transcript (£59 + shipping) for completing 90% of course content, attempting all tests, with score of 70%, or Statement of Participation (£39 + shipping) for completing 50% of course content and attempting all tests

About the course:
Well, as the title of the course implies, this is very basic.  But it’s also very good.  It’s a concise and informative description of many of the functions and attributes of the brain.  And while very interesting, I don’t think my heart would be in it to complete the three-part series this course is a part of.  Also, I don’t think I could take it listening to those pronunciations and reading those spelling choices again.  It felt like every scientific word was deliberately pronounced wrong and spelled the least usual way.

 

Course Title: Introduction to Cyber Security
Provider: The Open University via FutureLearn
Price: Free
Level: Introductory
Effort: 24 hours over 8 weeks, commencing on set date
Prerequisites: None
Completion awards: Statement of Participation (£34 + shipping) for completing 50% of course content and attempting all tests

About the course:
This seems like it would be a good course for someone to start considering cyber-security. As these concepts are a part of my job, none of the information in it was new, and I completed the 8 week course in about three days, so maybe 10 hours or so. I like that this course doesn’t shy away from technical descriptions of digital encryption techniques, though it doesn’t describe any actual computational mechanism for any of the concepts. As it was most definitely not directed at me, I can only say that it seems good, and has all the points and more of the things I’d want to teach someone for a primer on the subject.

It needs to re-think its active learning portions, though.  Though this is an introductory course and is limited to digital information rather than general information, it’s far more useful to all learners than the “advanced” course on OpenLearn above.

Course Title: Learn to Code for Data Analysis
Provider: The Open University via FutureLearn
Price: Free
Level: Introductory
Effort: 12 to 20 hours over 4 weeks, commencing on set date
Prerequisites: None
Completion awards: Statement of Participation (£19 + shipping) for completing 50% of course content

About the course:

I wanted to get my feet wet with some structured programming instruction, since I’m entirely self-taught up to now. (Well, not entirely. There was that half semester in Mr. Barton’s Pascal class where I tried to hack into the school network instead of listening to him drone on about methods of averaging.)  I also wanted to start learning Python.  This course seemed like a good fit.

Data Science or coding for Data Analysis is all the rage in MOOCs right now.  I found courses all over the place teaching essentially the same skills with various programming languages. Or one from Microsoft still insisting that Excel was up to the task.

This course only touches on the barest beginning concepts in coding.  It uses pre-defined contexts for Object-Oriented Programming, but doesn’t really describe how they work aside from feeding you the formula, “If you type what I type, you’ll get the answer I get.”  The syntax it teaches is almost exclusive to the problem domain of data analysis, and it doesn’t teach much outside that syntax.

One nice thing about the course is that it’s tough. It’s not one of those courses that says it takes 4 weeks, but is actually over in about four hours.  The first two weeks took me two or three hours a piece.  The third week took me nearly five hours.  The last week was well in excess of five hours, and could possibly have been ten.  It was an absolute slog, but it was very informative.  Again, though, mostly in the realm of data science.

The course information page says that the effort required is 3 hours per week, but once you join the course it says 5 hours per week.  So keep your eyes open if you’re intending to take it.

It’s not horribly helpful on its own.  It does teach about Python, and gave me enough familiarity with it to decide that I’m not a fan of many of its shortcomings. If you do need to learn coding for data analysis, this course won’t be enough to be helpful.  If you need to learn coding for reasons other than data analysis, this course won’t be enough to be helpful.  So it’s just a taster of Python in this specific context.

One odd thing of note was that there was a great number of facilitators on the course from the Open University to assist students, but they weren’t the most polite. They were a bit aggressive with any student suggesting something would be easier a different way, or that there was a shortcoming in either method or resource.  But they were helpful to those on the course, and there were a lot of them, more support than I’ve ever seen on a MOOC.

A few weeks ago when I reviewed OpenLearn’s Succeed With Maths MOOCs, I said that there was a much better option out there.

Course Title: Various, depending on what you want to learn
Provider: Khan Academy
Price: Free
Level: Introductory, Intermediate, Advanced
Effort: Self-paced
Prerequisites: None
Completion awards: In-site badges

About the course:

Khan Academy says they’re not a MOOC.  They’re Massive in intake, Open in philosophy, Online by nature … So that just leaves Courses.  They say they’re not a MOOC since they don’t have structured, led courses with beginnings and ends.  But they do have courses.  In fact, they have several different flavours of courses.  They have subjects, missions, skills, and … well, some kind of skill grouping that isn’t explicitly defined.  It’s in the vein of a cMOOC, rather than an xMOOC.

You just drop in, and drop out, and study what you need to study.  I’m not sure if the instruction is really as fantastic as I think it is, or if it’s just presented in a way that my unique brain makeup interprets and absorbs well, but it’s fantastic for me.

In junior high school, I had a teacher who held me back from the next year’s advanced maths class, because while I’d performed well in exams, I didn’t do any of the coursework. Then in high school another teacher noticed that the rest of the class asked me to re-teach what he’d finished lecturing about every day.  His response was to force be back up into advanced maths the following year.  The result was that I skipped trigonometry entirely.

I’ve struggled through with trigonometric functions, having taught myself a few of the rules, and then using the basic blocks I knew to struggle through more advanced issues, by combining those blocks with each other or with basic algebra.  But I’ve always felt like there was a huge gap in my learning because of this, and I’ve been a little ashamed of my skills in mathematics because of that gap.  I had tried multiple books over the years to fill that gap, but didn’t really feel like it got me anywhere.

Khan Academy filled that gap within 12 days.  In fact, what it did is show me in elegant, logical steps that were effortless to take in, that I’d gotten it right all along.  But now I don’t have to re-work and re-invent trigonometry each time I tackle it; they’ve made the knowledge much more accessible to me.

My five-year-old son was very excited to watch my progress, and see the badges I was getting, and how my avatar was growing.  He asked me to set him up an account, too.  I did, thinking he’d just log on, have a look, and log off.  Joke’s on me.

He goes on for about an hour a day, just to play.  By play, I mean take quizzes, work through practice questions, watch videos on new maths concepts … An hour a day.  And what has he learned?

He started out doing addition within the 1-20 range, and subtracting numbers in the 1-10 range.  He has now mastered two-digit addition and subtraction, is working on three-digit, can read an analog clock with or without numbers, can read information from bar graphs and solve story problems using two bar graphs, is better at understanding the operand required from story problems than I am, and is starting on geometric principles meant for 7 to 9 year olds.  In eight days.

He advanced so much, that his school literally started sending home worksheets for the next year’s maths.  Which is something that they said at the beginning of the year that they would not do under any circumstances.  (We had called for a meeting with his teacher and the head of English Learning for his school to discuss advanced reading for him, and it was stated then that their maths curriculum was designed in such a way that they would never allow students to use maths resources from advanced years. Which upset us, but didn’t think would become an actual issue.)

In addition to maths, you can study programming, history, music, economics … A lot of things. It is an amazing self-education tool and well worth any time invested in it.

This review will be a four-in-one.  It’s only fair to review them all together, since I took them all together in less than the time it normally takes for a single MOOC.

Course Title: Learning Online: Learning and Collaborating, Reflecting and Sharing, Managing Your Identity, and Searching and Researching
Provider: University of Leeds via FutureLearn
Price: Free
Level: Introductory
Effort: 3 hours over 2 weeks each, commencing on set date
Prerequisites: None
Completion awards: Certificate of Achievement (£39 + shipping) for completing 90% of course content and 70% on test scores, or Statement of Participation (£19 + shipping) for completing 50% of course content

About the course:

At the beginning of each of these courses, they beg people to keep in mind that the content is directed at 16 to 19 year old students still in compulsory education, on their way into University.  Since the entirety of the second course, Reflecting and Sharing, is devoted to telling students how to use social media, I somehow doubt the veracity of that claim.  The last thing a teenager needs to learn is how to use social media.

There is nearly no information in any of the four modules. The majority of chapters declare that they will teach something, then tell you to visit a website and look at help files, and then claim that they just taught you something.  I didn’t find anything in the combined courses that would be helpful to a teenager or anybody else learning online, but it did offer sage advice to use netiquette generally on the Internet.  But that’s just good advice.

Perhaps the worst aspect of the courses is that they want to crowd-source some collaborative experiences, but they just kind of throw the students in and hope one of them will be first.  The problem is that it then asks the students to evaluate what’s been done so far, when there is no so far.  It’s an empty sheet.  They should have seeded the activity with some starter data to get the ball rolling.

Most of the modules are simply bereft of content, but the third course, Managing Your Identity, has information in it about managing an online image that I simply disagree with.  In fact, all four courses make suggestions like using personal Facebook and Twitter accounts for scholastic and professional endeavours.

The only useful thing I got out of all four of the combined courses was that it motivated me to find Animaker. This is a great cloud app which allows you to create an animated video with all kinds of effects.  During the Reflecting and Sharing course, it was suggested that making and sharing videos of what you’ve learned is helpful.  Note that it didn’t suggest in what way it could possibly be helpful, it just said that it was.  It then told everybody to make a video about a few questions relating to Shakespeare.

Even though I viewed the assignment as pointless, I decided to join in.  (‘Join in’ is perhaps a misnomer, as I’m thus far the only person who’s done it.)  I feel like I should extend my best effort on these MOOCs even if I don’t see the value in it, or any particular step.  I’m glad I did.  While I still can’t imagine it will in any way come up in the course of studying a degree, I had a lot of fun making it, it turned out way better than I thought it might, and it was simple.  Once the course finishes for everybody else, I’ll scrub my personal details from it (despite the suggestions from the Managing Your Identity course), and link it below.

The total time for all four courses combined was about 7 hours, including learning how to create a video on my own.  The total amount of information I got out of the course was … Well, clearly not all Russell Group universities are alike.


2016/07/18 Edit: The course is over, so I’ve scrubbed personal details from the video presentation I did … Sort of.  Anyway, here’s the finished product:

shakespearevideo

Even more pre-study studying!  This MOOC was the first I took on FutureLearn, an endeavour of the Open University which, so far, has been far superior to OpenLearn for me.  I have since taken a further two MOOCs there, and I’ve got at least six more in the pipe-line to finish before my course begins in October.

Course Title: Begin Robotics
Provider: University of Reading via FutureLearn
Price: Free
Level: Introductory
Effort: 12 hours over 4 weeks, commencing on set date
Prerequisites: None
Completion awards: Certificate of Achievement (£49 + shipping) for completing 90% of course content, or Statement of Participation (£39 + shipping) for completing 50% of course content

About the course:
This was my first foray into FutureLearn, and it was a great experience.

FutureLearn has all students start together on a course, but they can then progress at their own rate.  You can access all weeks’ content on the first day, and the course remains open for reference after the last day.  But by starting together, there’s a community of others along the way, with each article, discussion, video, or other step accompanied by its own forum thread. If you’re struggling with something, there’s probably someone else who is, too, and collaboration is available.  (This being about robotics, I spent most of my time sharing links to interesting solutions to challenges encountered in cybernetics.)

The first week of Begin Robotics introduced the glossary of terms used, a brief robotics timeline, and robotics simulations.  This last one captured the attention of most of the students.  A variety of robotics simulations have been programmed by the Reading team to allow you to interact with a virtual robot’s programming to test changes and observe results. The interactive nature of it was great for focusing learning, and the community of students comparing results helped even further.

The second week introduced sensors and actuators, for cybernetic observing and affecting the world around it.  Robotic ‘anatomy’ was a topic of discussion, now that sensors and actuators could give such discussion context.  More simulations followed, of course focused on utilising sensor information.

The third week was about robot-human interaction.  This included haptics, interface, psychology, and more.  The fourth week was about robotic learning, and artificial life.

The best thing about this course was its pacing, combined with its multi-track learning.  A beginner could start this course, and feel that they’ve learned a lot by the end of the course, with each week being more challenging.  A serious hobbyist could likewise start this course and feel that they’ve learned a lot by the end of the course.  The two would have learned vastly different things, and never been bored.

For beginners, though, they’ll possibly be left a bit wanting at the end of the course, however, as there’s no big, “Here’s how to start,” moment for them.  It’s just a lot of great information to keep in mind once they do start.  For hobbyists, though, there are a lot of general ideas and specific solutions to some real challenges, and very much worth the time effort.

The real time effort, however, is nowhere near the estimated 12 hours.  It was closer to five or six, and I completed it in four days or so.  I keep going back, however, to participate in the online discussions, as they’re quite good.

As with the previous MOOC review, I had signed up to these courses to help prepare myself for university study.  When doing this, I’m hoping for useful content, but am willing to walk away with just reinforcing good study habits, as well.  These didn’t tick either box.

Course Title: Succeed with maths – Part 1, Succeed with maths – Part 2
Provider: The Open University via OpenLearn
Price: Free
Level: Introductory
Effort: Self-paced, 24 hours, estimated 8 weeks
Prerequisites: None
Completion awards: Statement of Participation, Open Badge

About the course:
I didn’t honestly get very far into the first course before I realised that this was an especially remedial maths course.  I hadn’t really expected the first one to be too much more involved, so I just took the quizzes to make certain I wasn’t going to be leaving a gap in my knowledge, and got through it.

The second course, though, I thought would at least have some kind of intermediary maths in it.  Instead, it advances to the level of reading graphs.

The problem with MOOCs like this is that anybody who is disciplined, organised, and educated enough to be able to learn from such a MOOC has already far outstripped the content of this MOOC.  This is to say that there is essentially a non-existent target group for this MOOC.  Here’s my Venn Diagram describing this:
Success with maths Target Students

[Source: My arse (2016)]

This makes it a useless course.  As a result, the content is useless, and it’s useless to use to develop study habits.

Thankfully, there ARE solutions out there.  One of the solutions is so fantastic that it’s shifted a portion of my study plan for my degree.  I’ll review this other solution at a later date.

As I stated in my last post, I’ve been using free MOOC resources to prepare for university-level learning.  I logically thought this free course would be a good place to start.  Here’s my review of it:

Course title: Taking Your First Steps Into Higher Education
Provider: The Open University via OpenLearn
Price: Free
Level: Introductory
Effort: Self-paced, 24 hours, estimated 8 weeks
Prerequisites: None
Completion awards: Statement of Participation, Open Badge

About the course:
This course draws material and inspiration from the Open University’s Access modules, Y031, Y032, and Y033 for content on Arts & Humanities, Social Sciences, and STEM subjects, respectively.  The full Access modules give a small and non-threatening taste of higher education study, to help you determine if it’s right for you.  This MOOC is, then, really a taster course for a taster module.  In theory, it’s meant to help you evaluate which of the general subject types you might like to study, and if you think you might enjoy (or be capable of) studying in higher education.

In reality, it comes off more like a commercial for the Open University, but one with its heart firmly in the right place.  It does do what it says it will do, but it’s a bit rhetorical in that it assumes and then insists that the answer is always that if you’re at all interested, then its right for you, and tries to convince you of this.  But this is only for higher education in general.  It’s a bit of a cheerleading exercise rather than an objective view giving both positive and negative views.

It does an excellent job of preparing those who have not studied at higher levels for a fundamental shift in learning philosophy, the change of focus from led instruction to self study.  It doesn’t do much for giving you tools for overcoming this shift, but does impress its importance.

The arts and humanities discussion was the most surprising for me.  I came into this module with a prejudice against the very nature of art history, evaluation, and appreciation. But within just a few short questions, Dr. John Butcher had shifted my world in response to art, particularly contemporary art. He had also done it in the section on poetry evaluation. I was able to access a poem I’d studied earlier and instantly recognise values in it I had never seen before, found an obvious meaning I’d never considered, and even uncovered additional subtext relative to modern philosophy that was shouting out for me to share my experiences with others.

The social studies sections were just the opposite.  Dr. Jonathan Hughes felt patronising and dismissive in his lecture. I wasn’t at all surprised to learn that he was the lead on the project for this MOOC, with its rhetorical approach and cheerleader enthusiasm. It’s a terrible shame, too, because I’m deeply passionate about social sciences, particularly social psychology and development.  But he would repeatedly invite discussion, only to then give the ‘right’ answer. At one point, he invited the student to compare their personal answers to his … Only to have his answers (and not even his exact answers, but a specific interpretation of them) be the basis for quiz questions later.  I found it quite insulting.

Finishing things up with reliable STEM subjects was a relief.  Dr. Laura Hills certainly knew how to lecture and prepare learning materials. Her approach quickly invited independent thought and provided the confidence (to me at least) that I felt the course should have been promoting all along.

Over all, I feel that the MOOC lacked substance of useful content unless you A) want to go to university, and B) don’t know if you’d rather take humanities, social sciences, or STEM subjects. Which should bring the total number of humans on this planet who would actually find the course useful to … Zero? Nobody wants to go to university without at least having an idea of what kind of studies they want to pursue. Sure, they might not be able to decide between two or three degrees, but to have no clue?  Whatever.

I do feel that I gained a lot of personal insight from this however, especially thanks to the amazing questions from Dr. Butcher.  It just wasn’t the insight I was expecting.  The warnings about the pitfalls of self study and few other revelations scattered throughout the sections are useful and appreciated, and will be remembered, but possibly not at the cost of the 10 real hours or so I spent with it.