I like this a lot. I would love to be able to code in the same online terminal with someone (I'm teaching someone Python right now and she's overseas), but I know collaborative editing is a whole different beast. I may even shoot it over to some professors in case they want to use it. It's better than taking a few minutes to boot up IDLE and can get people coding on the first day without having to teach them about th…
Glad to hear it. The one thing you can do with your friend overseas is share sessions (check out the share button in the upper right hand corner). Let us know if you have any other suggestions!
Show HN: Codecademy Labs, the easiest way to write, run, and share code online
11–20 of 23 posts
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#12Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#13Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#14Quick question: Did you use the http://repl.it editor? Just wondering because it looks really similar.
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#15Quick question: Did you use the http://repl.it editor? Just wondering because it looks really similar.
repl.it co-creator here. Yes its powered by the repl.it open-source project but more features will be built on top of it and would be integrated with other codecademy products. I just joined codecademy and I'm particularly excited about how much it would help advance repl.it as an open source project.
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#16Quick question: Did you use the http://repl.it editor? Just wondering because it looks really similar.
repl.it co-creator here. Yes its powered by the repl.it open-source project but more features will be built on top of it and would be integrated with other codecademy products. I just joined codecademy and I'm particularly excited about how much it would help advance repl.it as an open source project.
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#17Earlier quoted context omitted.
repl.it co-creator here. Yes its powered by the repl.it open-source project but more features will be built on top of it and would be integrated with other codecademy products. I just joined codecademy and I'm particularly excited about how much it would help advance repl.it as an open source project.
that is very impressive stuff. I wonder if there is a way to load own classes and files, e.g. "require 'my_class'".
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#18It's definitely a neat idea, but as a Python and JavaScript coder, I don't know how much I would actually use it. For Python, my code tends to rely heavily on modules that aren't found in the Python standard library, which is limited when you're using a REPL that only has vanilla Python. For JavaScript, code that I show tends to be more oriented to DOM manipulation rather than the console, so maybe that could be some…
IMHO one should use http://jsfiddle.net/ or similar sites to learn javascript.
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#19It's definitely a neat idea, but as a Python and JavaScript coder, I don't know how much I would actually use it. For Python, my code tends to rely heavily on modules that aren't found in the Python standard library, which is limited when you're using a REPL that only has vanilla Python. For JavaScript, code that I show tends to be more oriented to DOM manipulation rather than the console, so maybe that could be some…
You can't even do an alert in that javascript console... IMHO one should use http://jsfiddle.net/ or similar sites to learn javascript.
There is an added security value in that, were you can be sure that code shared by someone else won't crash your browser.
We'll be releasing courses and tools soon that aims at teaching JavaScript and the DOM where you can go crazy with alerts ;)
You could use console.log, console.time, console.read etc.
[1]: http://en.wikipedia.org/wiki/Read%E2%80%93eval%E2%80%93print...
Re: Show HN: Codecademy Labs, the easiest way to write, run, and share code online
#20 while True:
print "foreverrrrr"
Of course it looped quite persistently, and then proceeded to ignore my ctrl+c's. Any chance you could catch those to kill a runaway program?