Liveblogging from PHPCamp

I am sitting here in a talk on OpenSocial by Pravin Nirmal. After small bashing of Facebook, he has begun doing a demo, yes, a live demo! This is what you’d expect in the congregation of geeks in the neo-Silicon Valley of India, Pune. We have a sizable participation from Mumbai, Ahmadnagar.

Update: The speaker has hosted his presentation and the demo programs on his site.

It is using opensocial-0.7. He has hosted it on http://sandbox.orkut.com. Here’s the code:

<?xml version=”1.0″ encoding=”UTF-8″?>
<Module>
<ModulePrefs title=”PHPCamp – List Friends”>
<Require feature=”opensocial-0.7″/>
</ModulePrefs>
<Content type=”html”>
<![CDATA[

<link rel="stylesheet" type="text/css" href="http://www.myphpdunia.com/gmap/main.css" />

<script type="text/javascript">
gadgets.util.registerOnLoadHandler(init);

function init() {
var req = opensocial.newDataRequest();
var opt_params = {};
opt_params[opensocial.DataRequest.PeopleRequestFields.MAX] = 20;
req.add(req.newFetchPeopleRequest(‘OWNER_FRIENDS’,opt_params), ‘ownerFriends’);
req.send(onLoadFriends);
}

function onLoadFriends(data) {
var ownerFriends = data.get(‘ownerFriends’).getData();
var html=”";
html=’<ul>’;
ownerFriends.each(function(person) {
var friend_thumbnail=person.getField(opensocial.Person.Field.THUMBNAIL_URL);
html +=’<li>’ + person.getDisplayName() + ‘<img src=”‘+friend_thumbnail+’”> </li>’;

});
html +=’</ul>’;

document.getElementById(‘friends’).innerHTML = html;
}

</script>
<div id=’main’>
Your friends: <div id=’friends’></div>
</div>
]]>
</Content>
</Module>

About prasoonk

My childhood has been spent in the Bokaro Steel City of south Bihar, now Jharkhand. I studied computer science and engineering in IIT Kanpur. For job I moved to the land of opportunity United States. Was there in the bay area through the internet revolution of mid to late nineties. Admiring the beautiful coastline of California among other things. I moved east coast to the New York after the turn of the millenium working in a brokerage startup. I went through a lot of cultural awakening in myself spending hours at museums, diagramming on the shores of Hudson. Afterwards, I am back to India for the past few years. Working in the internet startup, enjoying the city life, internet surfing are my past times.

Posted on September 20, 2008, in India, PHPCamp, phpcamppune08, Technology. Bookmark the permalink. 5 Comments.

  1. This reminds me of the Yahoo organized event “Big Thinkers” that i attended month back was taken up by “Duncan Watts”….he is like the man right now to lead the social networking initiative from Yahoo faternity.
    He didnt talk much on the code side but was pretty good on the science behind it ( the whole six degrees of separation and stuff) part..

  2. I be logging on to live blogging for sure.

  3. SO when this new php classes is on the work .

  1. Pingback: PuneTech » PHPCamp Pune - the biggest (un)conference in India

  2. Pingback: MyPHPDunia » Blog Archive

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.