So, I'm a JavaScript developer (mainly), and I've been using Stack Overflow for a bit now. I keep finding myself needing to use http://jsfiddle.net/ (or similar) in order provide demos in my answers. jsFiddle is great; however, I was wondering if Stack Overflow has any plans to create its own (slightly-more-permanent) code playground for its users?

jsFiddle seems incredibly simple to make, and more often than not the code I find posted in my answers is demo-ready (that is, its real code that doesn't contain place-holders). One way I can imagine implementing this is with a "run this" button which takes the codeblocks from within a post, tries to execute them, and then opens the results in an overlay (or a new window).

link|improve this question
1  
What about non-JS code? Also, I think this has already been suggested in another post... – Maxim Zaslavsky May 13 '10 at 2:08
It's a good point. But over time, I think we'll see services like jsFiddle for Flash (ActionScript), Silverlight (.NET languages), and possibly x86 code (code.google.com/p/nativeclient)? – Adam May 14 '10 at 22:30
there is that service for Flash (wonderfl.net/about) – Corey Sep 9 '10 at 16:55
3  
Just came here to suggest this myself; you beat me to it by about 9 months. :] – Nathan Taylor Jan 25 '11 at 16:58
Since it is possible for these sites to succumb to linkrot, this should be implemented. Could only be for javascript at start, then could expand. This is not subject to linkrot because as long as the Exchange is up theoretically the fiddle is up (and vise versa). Also we can make it so these StackFiddles could be oneboxed in chat and many other goodies that we cannot do with other fiddle sites. – amanaP lanaC A nalP A naM A Dec 6 '11 at 16:42
I just wanted to say that I have a deep desire to see super tight integration with jsFiddle and stackoverflow! – Gourneau Dec 10 '11 at 4:56
1  
You may want to check out [this nifty userscript[(meta.stackoverflow.com/a/99598/178438). Once installed, you can run JS code in marked code blocks :) – Tim ManishEarth May 18 at 8:18
I need a C++Fiddle, can anybody make that? – Mr Lister May 18 at 8:59
@MrLister ideone.com ? – Bart 2 days ago
feedback

4 Answers

jsFiddle is my project. Is there anything what could be done to make jsFiddle work better with stackOverflow?

link|improve this answer
17  
You made it? Great website, btw. – George Edison May 16 '10 at 1:12
2  
Yes, great site indeed. Hmm, not sure. The main reason I'm asking for this is because while I'm worried about jsF's longevity. I can think of one thing you guys could do though: under the share dropdown, provide a third string for posting to SO, perhaps: "**HTML**\n\n" + html + "\n\n**CSS**\n\n" + css + "\n\n**JS**\n\n" + js, where html, css, and js are the code strings with tabs prepended to each line (so that they become codeblocks in SO). As you can see, this is usually end up doing by hand: stackoverflow.com/questions/2807599/…. – Adam May 16 '10 at 15:51
6  
JSFiddle is brilliant, thanks for providing this great service! – Pekka Oct 24 '10 at 20:35
I would suggest including an API so that stackoverflow can access the fiddles and store them locally. This way, there is no inherent fear that the links will disappear, and render some answers useless in due time. On StackOverflow I just got reprimanded for including a fiddle for a simple solution without providing the code snippet in my answer. I see how fiddle links are beneficial in short term, but in the long run this could be an issue. – DSKVR Jan 2 '11 at 7:46
2  
I've started to write API - it's "unwriteable" - MooTools is using it for demos (doc.jsfiddle.net/api/post.html), but their use case is different. There is always an ability to create a fiddle and download the code from it (add /show_css/ to get CSS part of the fiddle). It's undocummented, but I think it wont change with the beta version ... – zalun Jan 10 '11 at 10:38
1  
go go go jsFiddle man!!! :-) – xanatos Sep 5 '11 at 5:14
3  
The main issue I have is speed during peak periods. The response time is just so lagy because everyone uses the thing. I know someone managed to contact you regarding donations but they were declined. I'd love to help you guys get more servers so we don't have to deal with the lag, and I'm sure the people who use your site would as well. – Incognito Dec 6 '11 at 16:51
1  
The other issue is auto-loading of fiddles that crash the browser or at least the tab. we should have a URL-hack like adding a /norun or something so we can look at the code. – Incognito Dec 6 '11 at 16:52
@user147116 are you still here to answer questions? – amanaP lanaC A nalP A naM A Dec 12 '11 at 18:13
1  
@Incognito That already exists. just add /embedded to the end. Example: jsfiddle.net/maniator/K3wCM/embedded – amanaP lanaC A nalP A naM A Dec 12 '11 at 18:15
peak time is inddeed problematic - I'm working mostly on beta, but I'm pretty close to add more servers to jsfiddle (it wasn't designed to be scalable...) – zalun Dec 20 '11 at 8:56
I've just added the second server yesteday, this should get rid of the ugly 502. I need still to tweak mysql configuration. – zalun Jan 11 at 16:19
@zalun, here's another vote for finding some way to ensure that jsfiddles remain as long as the SO answers that point to them. Thanks for your fantastic service. – Jonathan M Feb 14 at 17:47
How has this not been baked into SO yet? I remember reading this months ago. It should be their #1 priority. – Switz Mar 4 at 13:55
1  
I really want jsFiddle integration with SO – Gourneau Mar 29 at 21:36
show 2 more comments
feedback

Maybe SO could include stripped-down jsFiddle pages in iframes if it sees a link to jsFiddle posted, or host its own installation. In any event, this would be a great addition, because I find myself wanting to promote jsFiddle every time I see someone posting sample code.

link|improve this answer
feedback

I would like something like an embedded JSFiddle Frame that can be enabled for questions tagged with JavaScript. Basically, you shouldn't need to click on a link to go and see the wonders of JSFiddle, they should be presented on Stackoverflow itself.

link|improve this answer
feedback

Maybe Meta Stack Overflow is the best place for this discussion, and please forgive me if the discussion is already taking place there. After all, this question's been up here for a long time already.

Total integration of jsFiddle into Stack Overflow would be wonderful of course. I can't disagree with that.

However, maybe something simpler hosted directly in Stack Overflow pages would prove even more useful? Perhaps something conceptually similar to what you see in Eloquent JavaScript would work. For stand-alone JavaScript code, that's a ready-made solution. For more complex questions and answers that require CSS, HTML, other libraries, etc, a solution hosted directly within Stack Overflow is still preferable to integrating with a third-party project to host code upon which Stack Overflow questions and answers depend.

link|improve this answer
feedback

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged