So, I've been thinking of taking some online college classes about computer science and data warehousing and analysis and all of that. Does anyone know of a reputable source for lessons like these? All of the ones that I've found so far have mixed good and bad reviews, so I'm not sure about them.
Thanks!
Results 1 to 25 of 25
Thread: Best online classes?
- 11 Dec. 2012 02:39pm #1
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 660.00
Best online classes?
- 11 Dec. 2012 08:49pm #2
CodeAcademy ?
- 11 Dec. 2012 09:02pm #3
I've actually taken a course a while ago on Computer Science at udacity.com
Pretty solid courses. Not too extensive and it has pretty comprehensive and intuitive lessons.
Had about another handful documented away on my computer but I don't have access to it at the moment.
- 13 Dec. 2012 12:37am #4
I think there was a data analysis related course I noticed on Coursera.
- 13 Dec. 2012 02:06am #5
- 13 Dec. 2012 06:39am #6
- 13 Dec. 2012 09:09pm #7
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 507.00
Haha, that was actually pretty clever.
Yeah, you're right, I've taken something on Corsera before and it was just a bit too complicated.
Sounds cool, I'll have to check it out, thanks.
Never heard of it, I'll have to look it up. Thanks though!
- 13 Dec. 2012 09:22pm #8
- 13 Dec. 2012 09:50pm #9
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 421.00
- 13 Dec. 2012 11:33pm #10
Try actually finishing them for a change. They'll help a lot.
- 13 Dec. 2012 11:53pm #11
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 325.00
- 13 Dec. 2012 11:57pm #12
- 14 Dec. 2012 02:05am #13
- 14 Dec. 2012 02:39am #14
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 1095.00
Lol they paid you to take the course? Why?
And yeah, they may be long and tedious, but they're supposed to be haha, they're supposed to teach you things.
I'm doing the CS101 course right now, and I find it extremely odd how they have an in-browser Python interpreter. Isn't that kind of a bad idea? Wouldn't you want to teach the student about the entire structure of a python program?
I guess it could be good if you're trying not to load too much stuff on the student, but it seems like they're leaving out crucial parts of programming
- 14 Dec. 2012 02:52am #15
Lol, am I missing something? An embedded interpreter isn't leaving out anything. I also fail to see how it's a bad idea provided the virtual machine the code is being assessed on is properly secured.
It's actually 100x times more convenient than writing code and submitting it to an online party. One of my favorite parts about the courses actually.
- 14 Dec. 2012 02:56am #16
- 14 Dec. 2012 03:00am #17
- 14 Dec. 2012 08:15am #18
- 14 Dec. 2012 05:48pm #19
I don't think you understand the context in which these words were used in mean.*
I think you think you do, but you don't.
Just sayin'.
Obnoxious - Adjective
Extremely unpleasant.
*Your joke being unpleasant is self-explanatory. It involved anal. AKA you're homosexual.
Irreverent - Adjective
Showing a lack of respect for people or things that are generally taken seriously.
*This was a more or less "serious" topic. Also Isonyx was being serious. Your joke was cheeky and lackluster.
Inapplicable - Adjective
Not relevant or appropriate: "the details are inapplicable to other designs".
Synonyms
unsuitable
*It was not suitable, relevant, or appropriate. For obvious reasons. It was irrelevant to Isonyx's post and pretty much to the subject matter at hand. At the least you could have not quoted Isonyx when you made the joke.
---
Moreover, I'm not you GAME. I don't use words I don't understand to seem intellectual. Those were the first words I could think of at the top of my head that described your "clever" joke. Nevertheless though, I commend your pun. It was just a bit out of place.Last edited by The Unintelligible; 14 Dec. 2012 at 05:51pm.
- 14 Dec. 2012 06:20pm #20
I'm glad you looked them up, so now you know.
It was irrelevant to Isonyx's post and pretty much to the subject matter at hand. At the least you could have not quoted Isonyx when you made the joke.
- 14 Dec. 2012 06:26pm #21
Because "data analysis" is not exclusively his post. It's been said in this thread. "data warehousing and analysis" is in the OP.
It seriously would have been better off standalone, but even then it still sucks. I mean I suppose it's technically valid regardless, just still obnoxious, irreverent and inapplicable.
In all fairness though, I'm pretty much nitpicking so feel free to ignore all this. Just refrain from making crude sucky jokes brah.Last edited by The Unintelligible; 14 Dec. 2012 at 06:32pm.
- 14 Dec. 2012 07:32pm #22
- 14 Dec. 2012 07:55pm #23
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 787.00
Hmm, I see what you mean I guess. It's a lot more convenient I agree, but I just kind of saw it like learning java by only putting
Code:System.out.println("Hello");
Code:class Hello { public static void main(String[] args) { System.out.println("Hello"); } }
- 14 Dec. 2012 08:48pm #24
Those things aren't required in Java or C++. That's just skeleton code. They both can run independent of that context.
Though it is standard practice to typically start a Java program in a class and a C++ program in the main(). Just not imperative. I'm sure the further you go along the road it'll teach you these things anyway.
- 14 Dec. 2012 09:50pm #25
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 559.00
Oh yeah, I see what you mean, and probably. Right now I'm doing the Introduction to Computer Science class that teaches you how to make a web crawler/search engine using python. Pretty interesting so far, and I've been meaning to learn python so I might as well start now.