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).

share|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
1  
there is that service for Flash (wonderfl.net/about) – Corey Sep 9 '10 at 16:55
5  
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
3  
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 :) – Manishearth May 18 '12 at 8:18
@MrLister ideone.com ? – Bart May 25 '12 at 10:10
+1 Let's bring sqlfiddle along too! (Yes I realise it would have significantly more overhead) – Ricardo Altamirano Jul 11 '12 at 3:36

5 Answers

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

share|improve this answer
30  
You made it? Great website, btw. – Nathan Osman May 16 '10 at 1:12
3  
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
14  
JSFiddle is brilliant, thanks for providing this great service! – Pekka 웃 Oct 24 '10 at 20:35
1  
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
2  
go go go jsFiddle man!!! :-) – xanatos Sep 5 '11 at 5:14
5  
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
5  
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
3  
@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 '12 at 16:19
2  
How has this not been baked into SO yet? I remember reading this months ago. It should be their #1 priority. – switz Mar 4 '12 at 13:55
2  
I really want jsFiddle integration with SO – Gourneau Mar 29 '12 at 21:36
1  
A fast and easy way to flag a license for the code, and a visible spot where the license is displayed. If you want to target the site for SO, put "Public domain/'free for all'" and "Creative Commons Attribution-ShareAlike" first in the list. – Emil Vikström Jun 20 '12 at 16:47
show 5 more comments

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.

share|improve this answer

I know this is an old thread, but I thought I would add an updated answer as I recently decided to implement a convention for embedding jsFiddles into Markdown posts (while remaining sanitized)

The convention I came up with was the following:

// render jsFiddle embed iframe with default options
$[http://jsfiddle.net/uzMPU/]

// render jsFiddle embed iframe with specific tabs
$[http://jsfiddle.net/uzMPU/][result,js,css]

In addition, following similar convention to links and images, referencing the link by id will also be valid:

// render jsFiddle embed iframe with default options
$[1]

// render jsFiddle embed iframe with specific tabs
$[1][result,js,css]

  [1]: http://jsfiddle.net/uzMPU/

This would result in the following iframes being rendered as the following:

<iframe src="http://jsfiddle.net/uzMPU/embedded/" allowfullscreen="allowfullscreen" frameborder="0"></iframe>

<iframe src="http://jsfiddle.net/uzMPU/embedded/result,js,css/" allowfullscreen="allowfullscreen" frameborder="0"></iframe>

(In reality, I have modified this slightly, and included a style tag: width: 100%; height: 300px; by default)

In addition to the $[] syntax, I have made it a requirement that the $[] be entirely on it's own line. As a result, writing the following:

This is an inline $[http://jsfiddle.net/uzMPU] fiddle looking link

will not result in an iframe being rendered.

I implemented this with some additions to MarkdownSharp (which is what stack uses to process the markdown AFAIK) and blogged about it in my post Extending Markdown/MarkdownSharp for jsFiddle embedding

I am definitely in the camp that this would be very helpful and nice for js/html/css tagged questions... Although I also think that there would be issues having too many "links as answers" essentially.

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

You must log in to answer this question.

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