Last.fm Tool
This application will generate Sociomap of you and your friends on Last.fm.
Note that this is just a BETA version.
You can create only one Sociomap per one Last.fm username.
The Sociomapping process might take up to few minutes so be patient.
There is a limit of 30 friends in one Sociomap.
You are free to put the results on your last.fm profile or web page.
|
Case study |
Sociomapping®
Sociomaps are not only about music. In fact, Sociomaps are mostly used
in organizations for improvement of team performance.
There is also extensive reserach carried out around Sociomapping.
If you are interested in utilization of sociomapping in business or
academic field, feel free to contact us.
more about Sociomapping |
Recent Sociomaps:
created by Redliner_cz
if (calendars.length != null && calendars.length > 0) {
calendars.each( function(cal) {
if (cal != null) {
var now = new Date();
cal['obj'] = new CalendarPopup(cal['name']+'_id');
now.setDate(now.getDate()-1);
if (cal['fromToday'])
{
cal['obj'].addDisabledDates(null,formatDate(now, 'yyyy-MM-dd'));
}
cal['obj'].setCssPrefix('date-');
cal['obj'].setWeekStartDay(1);
cal['obj'].setMonthNames(
cal['months'][0]
,cal['months'][1]
,cal['months'][2]
,cal['months'][3]
,cal['months'][4]
,cal['months'][5]
,cal['months'][6]
,cal['months'][7]
,cal['months'][8]
,cal['months'][9]
,cal['months'][10]
,cal['months'][11]
);
cal['obj'].setDayHeaders(
cal['days'][0]
,cal['days'][1]
,cal['days'][2]
,cal['days'][3]
,cal['days'][4]
,cal['days'][5]
,cal['days'][6]
);
cal['obj'].setTodayText(cal['today']);
var a = $(cal['name']+'_anchor');
var inp = $E('input[name='+cal['name']+']');
a.addEvent('click', function(e) {
e = new Event(e).stop();
if (cal['obj'] != null) {
cal['obj'].select(inp, cal['name']+'_anchor', 'dd. MM. yyyy');
}
});
}
});
}