Hello!

What is the greatest website you have ever seen, which shows using of Web 2.0 features?

Can you give me your tips?

Thanks!

Wojtek

Dani AI

Generated

In response to 's question about the "greatest" Web 2.0 site, the thread collected a few showcase examples and a useful note about bandwidth from . A single flashy demo is less helpful long-term than a short, practical framework for judging Web 2.0: features that improve contribution, make data useful and portable, and keep the service usable on real networks.

  • Contribution and curation: easy creation, clear moderation, and mechanisms that surface good content (votes, filters, editorial tools).
  • API and exportability: a documented API and a way to export personal data prevent lock-in.
  • Progressive enhancement and accessibility: server-rendered HTML, meaningful semantics, and a usable no-JS fallback.
  • Performance and low-bandwidth modes: small assets, compression, lazy loading, and a text-only or minimal UI option for slow connections.
  • Social and reputation systems: follow/share/comment flows plus anti-abuse controls.
  • Real-time where it matters: live updates with graceful fallbacks to polling.
  • Discoverability and structure: tags, search, and human-readable permalinks.
  • Governance and privacy: transparent rules, reporting paths, and clear data policies.

A tiny, practical pattern for graceful enhancement (keeps content visible without JavaScript; upgrades when JS is available):

<!-- server renders a usable list -->
<ul id="items">
  <li>Server item 1</li>
  <li>Server item 2</li>
</ul>

<script>
fetch('/api/items')
  .then(r=>r.json())
  .then(data=>{
    document.getElementById('items').innerHTML =
      data.map(i=>'<li>'+i.title+'</li>').join('');
  })
  .catch(function(){/* keep server-rendered list */});
</script>

's comment about visual data-mashups and 's point about lab-style realtime experiments illustrate different strengths; 's pointer to showcases is a good source of inspiration. The most enduring "best" Web 2.0 sites combine real user benefit, exportable data, and graceful performance for all network conditions.

Recommended Answers

All 4 Replies

Hello!

What is the greatest website you have ever seen, which shows using of Web 2.0 features?

Can you give me your tips?

Thanks!

Wojtek

Yahoo pipes takes some beating.

digg.com under the labs section here they have a real time news casting system, its great just try afew of them out and ull see how good the system is.

For one and some condition, many off ppl in Indonesia(my country) have a problem with web 2.0. I like it, but its only for highly bandwith internet connection as the sample like http://tiddlywiki.com/, http://www.2advanced.com/ , and my fave is http://www.leoburnett.ca/
thats all, and its very along passion started from here as my blog, LMAO...


regards,
Umat

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.