How to avoid building a walled garden? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T08:23:23Zhttp://stackoverflow.com/feeds/question/794081http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/794081/how-to-avoid-building-a-walled-garden5How to avoid building a walled garden?Stewart Johnson2009-04-27T15:34:56Z2009-04-27T15:46:41Z
<p>Some friends and I have had an idea for a website and have started working on it. It will rely on people contributing to a shared knowledgebase, and people will also be able to create personal profiles with reasonable amounts of data. We intend people should be able to leverage their content on other sites (e.g.: flickr, youtube) when building their profile on our site.</p>
<p>It occurred to us that we want to be good internet citizens, and make our website accessible and useful for people regardless of whether they have an account or not. We also want to make sure that any data people contribute to our site is not 'locked in' and is available to other sites appropriately.</p>
<p>Are there any specific practices we should follow, and similarly ones we should avoid?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/794081/how-to-avoid-building-a-walled-garden/794105#7941054Answer by Ryan Brunner for How to avoid building a walled garden?Ryan Brunner2009-04-27T15:40:00Z2009-04-27T15:40:00Z<p>You should look into attaching a particular license to the content on your site. For example, StackOverflow uses a <a href="http://creativecommons.org/licenses/by-sa/2.5/" rel="nofollow">Creative Commons</a> Attribution-Share-Alike license for all content provided. Depending on what restrictions you want placed on usage of your sites content, you should investigate something similar.</p>
http://stackoverflow.com/questions/794081/how-to-avoid-building-a-walled-garden/794108#7941084Answer by Randolpho for How to avoid building a walled garden?Randolpho2009-04-27T15:41:23Z2009-04-27T15:41:23Z<p>I would suggest that you follow the example of this very site.</p>
<p>Use OpenID for non-anonymous accounts/login, but allow anonymous posting. </p>
http://stackoverflow.com/questions/794081/how-to-avoid-building-a-walled-garden/794127#7941274Answer by Brian Campbell for How to avoid building a walled garden?Brian Campbell2009-04-27T15:46:41Z2009-04-27T15:46:41Z<p>You can use <a href="http://openid.net/" rel="nofollow">OpenID</a> for authentication. I'd recommend giving options to export your data in open standards, if such standards exist for the sort of data you're dealing with. For instance, if you have any sort of news or events feeds, then provide <a href="http://en.wikipedia.org/wiki/RSS%5F%28file%5Fformat%29" rel="nofollow">RSS</a> feeds for those. If standards don't exist for the data you're working with, then provide a good way for your customers to get it in a reasonable format; preferably a <a href="http://en.wikipedia.org/wiki/Representational%5FState%5FTransfer" rel="nofollow">REST</a> style API with data in a reasonable serialization like <a href="http://en.wikipedia.org/wiki/XML" rel="nofollow">XML</a> or <a href="http://www.json.org/" rel="nofollow">JSON</a>.</p>