Is there a fully online IDE for testing out simple algorithms - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T04:11:31Zhttp://stackoverflow.com/feeds/question/985698http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms2Is there a fully online IDE for testing out simple algorithmsedzillion2009-06-12T08:58:11Z2009-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#9857150Answer by Ron for Is there a fully online IDE for testing out simple algorithmsRon2009-06-12T09:00:59Z2009-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#9857181Answer by johnswamps for Is there a fully online IDE for testing out simple algorithmsjohnswamps2009-06-12T09:01:12Z2009-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#9857284Answer by Andre Miller for Is there a fully online IDE for testing out simple algorithmsAndre Miller2009-06-12T09:03:30Z2009-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.
>>> total=0
>>> for a in range(32,288):
... total = total + str(a).count('6')
...
>>> total
56
</code></pre>
http://stackoverflow.com/questions/985698/is-there-a-fully-online-ide-for-testing-out-simple-algorithms/985729#9857290Answer by Paul Bullough for Is there a fully online IDE for testing out simple algorithmsPaul Bullough2009-06-12T09:03:43Z2009-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#9857310Answer by Robert Munteanu for Is there a fully online IDE for testing out simple algorithmsRobert Munteanu2009-06-12T09:04:27Z2009-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#9857350Answer by Robin Day for Is there a fully online IDE for testing out simple algorithmsRobin Day2009-06-12T09:04:58Z2009-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#9857373Answer by Patrick McDonald for Is there a fully online IDE for testing out simple algorithmsPatrick McDonald2009-06-12T09:04:58Z2009-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#9877061Answer by Niki for Is there a fully online IDE for testing out simple algorithmsNiki2009-06-12T16:38:40Z2009-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>