Earlier quoted context omitted.
Nope, not a road block for me. By the time you get to that point, the user has already got a taste of the fruit; it's decision time. I registered. I love this. Keep doing what you're doing, expand the library in a few months and contact foundations like Rockefeller for financial support if you need it. Kudos! I'm excited.
awesome. we're adding the option to skip registering but we hope most people do what you do.
Show HN: Codecademy.com, the easiest way to learn to code
121–130 of 239 posts
Re: Show HN: Codecademy.com, the easiest way to learn to code
#122This is definitely genius. Even for programmers the service could be very valuable in learning new languages. I love my O'Reilly books, but I would throw all of them away in a heartbeat if the content was wrapped up in an interactive console like this.
Re: Show HN: Codecademy.com, the easiest way to learn to code
#123Earlier quoted context omitted.
Nope, not a road block for me. By the time you get to that point, the user has already got a taste of the fruit; it's decision time. I registered. I love this. Keep doing what you're doing, expand the library in a few months and contact foundations like Rockefeller for financial support if you need it. Kudos! I'm excited.
awesome. we're adding the option to skip registering but we hope most people do what you do.
Re: Show HN: Codecademy.com, the easiest way to learn to code
#124Re: Show HN: Codecademy.com, the easiest way to learn to code
#125Earlier quoted context omitted.
awesome. we're adding the option to skip registering but we hope most people do what you do.
good idea, but just a thought - why not have registration go through the terminal as well? It seems you're only collecting email and password - why not just prompt for that without interrupting the flow of the lessons?
Re: Show HN: Codecademy.com, the easiest way to learn to code
#126I've been a longtime member @ HN, but I haven't been a developer. In fact, my only HN submission has been one asking how to learn to code ( http://news.ycombinator.com/item?id=820741 ). We decided to solve the problem by making a simple, interactive way to get started with Codecademy. We'd love your feedback. If you're interested in helping us to get more courses up (on any topic!), please send us an email at HN (at)…
this must be why you have such a unique empathy for the user. you've truly put yourself in the user's shoes instead of lecturing. its obvious something is great when you instantly think why the hell hasn't everything been like this all along.
Re: Show HN: Codecademy.com, the easiest way to learn to code
#127I've been a longtime member @ HN, but I haven't been a developer. In fact, my only HN submission has been one asking how to learn to code ( http://news.ycombinator.com/item?id=820741 ). We decided to solve the problem by making a simple, interactive way to get started with Codecademy. We'd love your feedback. If you're interested in helping us to get more courses up (on any topic!), please send us an email at HN (at)…
Any advice on starting something if you're not a developer, or how you gathered the resources to do it with your limited knowledge? I'm not a developer but I just started doing LPTHW, I'd love to create something of my own but I was never good at making something from 'nothing'.
Re: Show HN: Codecademy.com, the easiest way to learn to code
#128Just FYI, since I assume it doesn't come up in the lessons, your REPL doesn't like objects that self-reference, even though it isn't trying to print them out. > o = {} > o.o = o ==> [object Object] ERROR: Maximum call stack size exceeded This isn't totally unusual; `window` has several self-references, for example, and hangs for several seconds.
@zds inspect.js should fix this issue, which was written by the Node people to inspect objects in the terminal and take care of circular references. I edited it to make it work on the web https://github.com/amasad/jsrepl/blob/master/util/inspect.js Just pass all results from eval to the inspect function and you'll get a nice pretty printed output!
Re: Show HN: Codecademy.com, the easiest way to learn to code
#129Absolutely wonderful. This is the successor to TryRuby I always hoped someone would build.
Re: Show HN: Codecademy.com, the easiest way to learn to code
#130Overall, an amazing website!