GLBasic forum

Main forum => Off Topic => Topic started by: Hemlos on 2012-Oct-16

Title: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-16
Edx.org Harvard, MIT, and Berkley team up for new wave of education!

http://www.edx.org/ (http://www.edx.org/)

Hi gang! Great stuff here!

     Edx.org is a new system of education designed by MiT, and Harvard. Im writting up a review due to being HIGHLY impressed with what is offered from this new style of education system. This year they began thier new education project, which i have been following all year and now am participating in. This system is designed for researching how to better teach, and how to better understand how people learn. I will give a quick review of my experience at Edx.org, with the classes i am participating in, later in this review.

      The University of Texas System joins Harvard, MIT and UC Berkeley in not-for-profit online learning collaborative. Berkley and University of Texas has recently jumped on board, and i suspect there will be other universities joining thier list in the years to come. These universities have opened thier campus to the public, and are offering a limited list of free courses in computer Science and other stuff. This is a new style of education, where you can be part of the class and become interactive with thier classes, offers;  lectures, homework, quizes, exams, walkthroughs, shorts, the works! At the end of any class you take, they will be offering for free(for now), a certificate of completion assuming you make the grade.

     You as a member, a student of Edx.org can register for any of these courses, at no obligation, and may freely register/unregister from any one of them as well. Furthermore, you do not have to do any homework, quizes, exams to in order to participate in the course, and you may study along with all the lectures at your own pace. However, if you want that certificate of completion, you must do the work. There is also an option to do a proctored exam to prove (to employers and the world) you actually have the know-how, though this is probably very limited by geographics.

Here is a list of all the classes offered at this time:



Ok, i have registered for all 4 computer courses and now i will do a very brief review of my experience with them.





That is my review.
In short, i must say, that this new system of education is very personally rewarding, simply AWESOME!!!
i highly recommend any of these courses to everyone, college grads and otherwise!

Back to class!
-Neil

PS. If you sign up too, post a message here in this thread, and perhaps we can help each other out!
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: mentalthink on 2012-Oct-16
hi Hemlos, a lot of thanks for this... I think I go to make the programming and perhaps the Electronics circuits... I´m not sure if finally I will do... but this it´s very interesting... Thanks a lot!!!  :booze: :booze:
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-16
 :booze:

Welcome aboard!
I highly recommend these:
6.00x   - Introduction to Computer Science and Programming
CS50x  - Introduction to Computer Science I

At this point they already started, but im sure anyone can catch-up easily.
I am enrolled in those two currently, in hopes to complete them for a certificate in the end.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: mentalthink on 2012-Oct-16
I go to communicate this courses in a Spaninsh Forum, about Retro-Computing... they make Computers, and a lot of things whit old- 8 Bits Computers.-- Perhaps someone are interestes...

Thanks Again!!!  :good:
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: AmazingJas on 2012-Oct-16
I am completing the Harvard and MIT computer science subjects. I have been coding for years but never realized how much fundamental stuff I didn't know. The MIT course learning curve got a bit steep this week (took me a while to get my head around recursive bisection searches). The syntax of python also takes some getting used to, but the principles are pretty sound.

Would like to do the AI course next semester if I can.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: r0ber7 on 2012-Oct-16
This is awesome. Thanks for sharing!
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-17
Quote from: AmazingJas on 2012-Oct-16
I am completing the Harvard and MIT computer science subjects. I have been coding for years but never realized how much fundamental stuff I didn't know. The MIT course learning curve got a bit steep this week (took me a while to get my head around recursive bisection searches). The syntax of python also takes some getting used to, but the principles are pretty sound.

Would like to do the AI course next semester if I can.

Cool stuff. My brain melted when trying to comprehend the recursive towers of hanoi today. Hopefully we dont need to do something like that on the finals.  However, I put a project for that TOH in the beta section for GLBasic, converting it was easy. Computation is pretty thorough in the mit 6.00x, im really learning alot from it...and i expect to be able to get finish it. I like Eric, he is a great teacher.

In the Ai course they use python to make a pacman game....the math in that course is a mind smasher...you better know trig or calculus. I got stumped when i hit depth-first search algorithms for making pacman find the lonely dot. You have to be familiar with LIFO and FIFO stacks too. They list the prerequisits, if you dont know what each one is, dont expect to complete the class. The reason i cant finish the work is because im still new to python, but i also realize i will need to brush up on my math before i try it again. The best part of the ai course at berkley is you can just skip it all and absorb the lectures, afterall its free. Gernot made a findpath algorithm which is based on the A* search method, they lecture on that too.

Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: r0ber7 on 2012-Oct-17
I just finished the first assignment for Harvard's Computer Science 50. So far it's pretty basic, I hope they will go deeper soon. But glancing at the subjects of the coming weeks, I suspect they will.  :good: I'm particularly interested in the lectures on webdesign, since I develop those for money. :P
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Slydog on 2012-Oct-17
Amazing, all this for free?  And no obligations?
Those courses don't sound enticing enough yet, but if they offered something in graphics, either OpenGL, or even 3d modeling, PhotoShop, etc I may be interested.  I suck at graphics and would love to learn some techniques for an artistically untalented person to create some simple, yet 'good looking' game graphics.

The AI course *sounds* interesting, but the maths scare me!  I haven't done calculus for 25 years!  It is a topic I would love to already know, but don't want to invest the efforts in learning it! ha.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-17
Incredible...ive come to a point in the lectures where an array can store elements as function calls.
Arrays of funtions, embedded as arrays inside of indices within an array, just mind blowingly amazing.

array = [[abs,fact,pow,sqr,f1,f300],12345.00]
the output would be an array of elements where all those functions are applied to 12345.00!!
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-17
Quote from: Slydog on 2012-Oct-17
Amazing, all this for free?  And no obligations?
None


QuoteThose courses don't sound enticing enough yet, but if they offered something in graphics, either OpenGL, or even 3d modeling, PhotoShop, etc I may be interested. 

I suck at graphics and would love to learn some techniques for an artistically untalented person to create some simple, yet 'good looking' game graphics.

Me too, im in that boat also. Maybe someone in the forums can direct us to a good resource?

Quote
The AI course *sounds* interesting, but the maths scare me!

You really need to know python at an expert level, so far, this seems most important.
Iim still a noob there in python. but the theories of Ai are all in lectures, and i am attempting to abosorb it all....free.
Sign up, watch the lectures, free free free

Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: AmazingJas on 2012-Oct-18
If u get through the AI module, feel free to make a complete list of the concepts one would need to know before really attempting it...then I'll have some homework.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: AmazingJas on 2012-Oct-18
I wish I'd completed a bit of a refresher on math before beginning the MITx course...Took me ages to work out the polynomial exercises this week because it's been 25 years since I last looked at one. Onto hangman now though...should be more familiar territory.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-18
Quote from: AmazingJas on 2012-Oct-18
I wish I'd completed a bit of a refresher on math before beginning the MITx course...Took me ages to work out the polynomial exercises this week because it's been 25 years since I last looked at one. Onto hangman now though...should be more familiar territory.

Ugh, i just finished pset03.q2, took about an hour to work out 7 lines of code.   :doubt:

Onto newtons method and hangman today.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Oct-18
Hey slydog,

I think the Edx gods answered your prayers....Berkley just today has added a graphics course!

Interestingly enough, i think most of the lectures are already posted on Youtube(CS184 Channel) (http://www.youtube.com/user/raviramamoorthi?feature=results_main)

Note: its free, anyone can sign up and try to earn a certificate from berkley at this link: http://www.edx.org (http://www.edx.org)



Quote
CS184.1x teaches the Foundations of Computer Graphics

ABOUT THIS COURSE

CS184.1x teaches the Foundations of Computer Graphics. Students will make images of 3D scenes in real-time, and with offline raytracing. This course runs for 6 weeks and consists of four segments. Each segment includes an individual programming assignment:
Overview and Basic Math (Homework 0: 10% of grade)
Transformations (Homework 1: 20% of grade)
OpenGL and Lighting (Homework 2: 35% of grade)
Raytracing (Homework 3: 35% of grade)
This term, students who earn a total score of 50% or greater will have passed the course and may obtain a free honor code certificate from BerkeleyX.


PREREQUISITES

Solid C/C++ programming background (Java is ok too; you will pick up C++).
Access to a relatively up-to-date computer (Windows, Mac OSX or Linux)
Solid high school mathematics; a review of the relevant linear algebra is included in the first segment.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Wampus on 2012-Oct-18
Been looking through the website a little. Looks very awesome. Thanks. Am interested in this.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Nov-03
I am taking the cs50x from harvard, and finished the first project.
The project is designed with scratch, an object oriented program designer.
Here is a link to my project, a game i made "Airhockey".

http://scratch.mit.edu/projects/NMSilver/2881060
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: AmazingJas on 2012-Nov-04
Scratch is pretty neat, I made a simple asteroids game with guided missiles http://scratch.mit.edu/projects/amazingjas/2849060 . The only problem is it is very difficult to generate new instances of objects, but the addon/update called BYOB takes care of this I think.  Nice how all your projects are playable in a browser.

I have pulled the pin on the MIT course. Too confusing for me. It takes me too long to work out what they are asking you to do, and my lack of math really hinders my attempts.  The Harvard course is much more interesting, approachable, clear and enjoyable so I'll keep that one going.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2012-Nov-04
Quote from: AmazingJas on 2012-Nov-04
Nice how all your projects are playable in a browser.
Yeah that is really cool, ill prolly keep improving my project when i get any time.

Quote
I have pulled the pin on the MIT course.

Aww that sux...the complexity is kinda confusing, but the rest is pretty easy.
I got a 81% on my midterm...not great, but it showed me where i need to study afterall.

If you look into the sillybus, youll notice there are less math intense sections to come (apparently).
I noticed a few important lectures coming up nea rthe end, which is directly relating to Ai(same methods are expected for you to know as prerequisit in the Ai berkley course).
Seems to me, this 6.00x is a great precursor to the ai class.
Im going to stick with this and perhaps ill do better in the ai course next time around, as i have stopped doing the work in the ai course, because i dont meet the prerequisits.
Title: Re: Edx.org Harvard, MIT, and Berkley team up for new wave of education!
Post by: Hemlos on 2014-Sep-01
Edx added Linux too...with no deadline for completion to get a certificate.
Im halfway through the linux course now, its very good, and very informative.