Is there a fully online IDE for testing out simple algorithms - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T04:11:31Z http://stackoverflow.com/feeds/question/985698 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms 2 Is there a fully online IDE for testing out simple algorithms edzillion 2009-06-12T08:58:11Z 2009-06-12T16:38:40Z <p>I was watching one of those incredibly retarded tv quiz money scams last night as I was reading reddit and they posed the question:</p> <blockquote> <p>if you wrote down all the numbers between 32 to 287 how may times would you write down the number 6?</p> </blockquote> <p>So I did some quick maths in my head (there are 11 sixes in each 100, there are two hundreds in between the two numbers and then there are six more = 22 + 6 = 28). The first caller rings up and says 28. </p> <p>I am not great at maths in my head but I could think of a pretty easy for loop that would figure it out, but there is no way I was going to go through the hassle of installing an IDE on my home machine just to write five lines of code. My question:</p> <p><strong>Is there a website where I can write simple algorithms like this and compile them and get results all in-browser without having to install any crap or jump through any hoops?</strong></p> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985715#985715 0 Answer by Ron for Is there a fully online IDE for testing out simple algorithms Ron 2009-06-12T09:00:59Z 2009-06-12T09:00:59Z <p>There's an online "live demo" for the LUA language here: <a href="http://www.lua.org/demo.html" rel="nofollow">http://www.lua.org/demo.html</a></p> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985718#985718 1 Answer by johnswamps for Is there a fully online IDE for testing out simple algorithms johnswamps 2009-06-12T09:01:12Z 2009-06-12T09:01:12Z <p>This answer is going to be language specific. For the best answer, javascript would work well. Since it already runs in the browser, writing an interpreter that runs in the browser is a piece of cake. Just google for "javascript interpreter" and you'll get a bunch of hits.</p> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985728#985728 4 Answer by Andre Miller for Is there a fully online IDE for testing out simple algorithms Andre Miller 2009-06-12T09:03:30Z 2009-06-12T09:20:25Z <p>There is also web based interpreters for Python:</p> <p><a href="http://try-python.mired.org/" rel="nofollow">http://try-python.mired.org/</a></p> <p>And for Ruby:</p> <p><a href="http://tryruby.hobix.com/" rel="nofollow">http://tryruby.hobix.com/</a></p> <p>Example for the Python online interpreter:</p> <pre><code>Python 2.5.2 (r252:60911, May 29 2008, 09:50:36) [C] on sunos5 Type "help", "copyright", "credits", or "license" for more information. &gt;&gt;&gt; total=0 &gt;&gt;&gt; for a in range(32,288): ... total = total + str(a).count('6') ... &gt;&gt;&gt; total 56 </code></pre> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985729#985729 0 Answer by Paul Bullough for Is there a fully online IDE for testing out simple algorithms Paul Bullough 2009-06-12T09:03:43Z 2009-06-12T09:03:43Z <p>There is an online Ruby interpreter at: <a href="http://tryruby.hobix.com/" rel="nofollow">http://tryruby.hobix.com/</a></p> <p>It has a pretty good tutorial too to help you learn Ruby as you go.</p> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985731#985731 0 Answer by Robert Munteanu for Is there a fully online IDE for testing out simple algorithms Robert Munteanu 2009-06-12T09:04:27Z 2009-06-12T09:04:27Z <p>If you can write the algorithms in Javascript, use <a href="https://bespin.mozilla.com/" rel="nofollow">Project Bespin</a>.</p> <blockquote> <p>Bespin is a Mozilla Labs experiment that proposes an open, extensible web-based framework for code editing that aims to increase developer productivity, enable compelling user experiences, and promote the use of open standards. </p> </blockquote> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985735#985735 0 Answer by Robin Day for Is there a fully online IDE for testing out simple algorithms Robin Day 2009-06-12T09:04:58Z 2009-06-12T09:04:58Z <p>There's a whole bunch of BASIC emulators!</p> <p><a href="http://www.vavasour.ca/jeff/level1/simulator.html" rel="nofollow">http://www.vavasour.ca/jeff/level1/simulator.html</a></p> <p>Great for some instant</p> <pre><code>10 PRINT "HELLO" 20 GOTO 10 </code></pre> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985737#985737 3 Answer by Patrick McDonald for Is there a fully online IDE for testing out simple algorithms Patrick McDonald 2009-06-12T09:04:58Z 2009-06-12T09:13:44Z <p>A quick google found <a href="http://www.coderun.com/" rel="nofollow">http://www.coderun.com/</a>. It apparently supports .NET, PHP and AJAX.</p> <p>EDIT: </p> <p>Supports IE7 and Firefox (i.e. none of the browsers installed on my current machine)</p> http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/987706#987706 1 Answer by Niki for Is there a fully online IDE for testing out simple algorithms Niki 2009-06-12T16:38:40Z 2009-06-12T16:38:40Z <p><a href="http://codepad.org/" rel="nofollow">Code Pad</a> supports a lot of programming languages, is free and doesn't require registration.</p>