JSFiddle - React, Tailwind, and code Playground

by Mathias Bynens

HTML

<pre>Loading…</pre>
<script src="http://fronteers.nl/congres/2011/attendees.json?callback=lolwat"></script>

JavaScript

// https://gist.github.com/1031788

function lolwat(data) {
    var belgians = data.fronteers2011.andAllTheirOtherData.filter(function(attendee) {
        return attendee.country == 'BE';
    }).map(function(attendee) {
        return attendee.name + (attendee.twitter ? ' (@' + attendee.twitter + ')' : '');
    }),
    title = belgians.length + ' Belgian #fronteers11 attendees:';
    document.querySelector('pre').innerHTML = [title, Array(title.length + 1).join('=')].concat(belgians).join('\n');
}